2
0

graylog2.conf.xml 1.0 KB

123456789101112131415161718192021222324
  1. <configuration name="graylog2.conf" description="Graylog2 Logger">
  2. <!-- emerg - system is unusable -->
  3. <!-- alert - action must be taken immediately -->
  4. <!-- crit - critical conditions -->
  5. <!-- err - error conditions -->
  6. <!-- warning - warning conditions -->
  7. <!-- notice - normal, but significant, condition -->
  8. <!-- info - informational message -->
  9. <!-- debug - debug-level message -->
  10. <settings>
  11. <param name="server-host" value="192.168.0.69"/>
  12. <param name="server-port" value="12201"/>
  13. <param name="loglevel" value="warning"/>
  14. <!-- Uncomment if using logstash w/ gelf.rb -->
  15. <!--param name="send-uncompressed-header" value="true"/-->
  16. <!-- fields to add to every log associated w/ a session -->
  17. <fields>
  18. <!-- for example: channel variable "customer_account_number" will be the data source for the customer field in graylog2 -->
  19. <!--field name="customer" variable="customer_account_number"/-->
  20. </fields>
  21. </settings>
  22. </configuration>