Guest User

Untitled

a guest
Aug 22nd, 2017
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. #======================= Winlogbeat specific options ==========================
  2.  
  3. # event_logs specifies a list of event logs to monitor as well as any
  4. # accompanying options. The YAML data type of event_logs is a list of
  5. # dictionaries.
  6. #
  7. # The supported keys are name (required), tags, fields, fields_under_root,
  8. # forwarded, ignore_older, level, event_id, provider, and include_xml. Please
  9. # visit the documentation for the complete details of each option.
  10. # https://go.es.io/WinlogbeatConfig
  11. winlogbeat.event_logs:
  12. # - name: Application
  13. # ignore_older: 72h
  14. - name: Security
  15. # - name: System
  16.  
  17. #================================ General =====================================
  18.  
  19. # The name of the shipper that publishes the network data. It can be used to group
  20. # all the transactions sent by a single shipper in the web interface.
  21. #name:
  22.  
  23. # The tags of the shipper are included in their own field with each
  24. # transaction published.
  25. #tags: ["service-X", "web-tier"]
  26.  
  27. # Optional fields that you can specify to add additional information to the
  28. # output.
  29. #fields:
  30. # env: staging
  31.  
  32. #================================ Outputs =====================================
  33.  
  34. # Configure what outputs to use when sending the data collected by the beat.
  35. # Multiple outputs may be used.
  36.  
  37. #-------------------------- Elasticsearch output ------------------------------
  38. output.elasticsearch:
  39. # Array of hosts to connect to.
  40. hosts: ["172.30.9.20:9200"]
  41. template.name: "winlogbeat"
  42. template.path: "winlogbeat.template.json"
  43. template.overwrite: false
  44.  
  45. # Optional protocol and basic auth credentials.
  46. #protocol: "https"
  47. #username: "elastic"
  48. #password: "changeme"
  49.  
  50. #----------------------------- Logstash output --------------------------------
  51. #output.logstash:
  52. # The Logstash hosts
  53. hosts: ["172.30.9.20:5044"]
  54.  
  55.  
  56. # Optional SSL. By default is off.
  57. # List of root certificates for HTTPS server verifications
  58. #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"]
  59.  
  60. # Certificate for SSL client authentication
  61. #ssl.certificate: "/etc/pki/client/cert.pem"
  62.  
  63. # Client Certificate Key
  64. #ssl.key: "/etc/pki/client/cert.key"
  65.  
  66. #================================ Logging =====================================
  67.  
  68. # Sets log level. The default log level is info.
  69. # Available log levels are: critical, error, warning, info, debug
  70. #logging.level: debug
  71.  
  72. # At debug level, you can selectively enable logging only for some components.
  73. # To enable all selectors use ["*"]. Examples of other selectors are "beat",
  74. # "publish", "service".
  75. #logging.selectors: ["*"]
Add Comment
Please, Sign In to add comment