Advertisement
Walkero0

filebeat.yml

Aug 12th, 2023
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. # Wazuh - Filebeat configuration file
  2. output.elasticsearch:
  3. hosts: ["127.0.0.1:9200"]
  4. protocol: https
  5. username: ${username}
  6. password: ${password}
  7. ssl.certificate_authorities:
  8. - /etc/filebeat/certs/root-ca.pem
  9. ssl.certificate: "/etc/filebeat/certs/filebeat.pem"
  10. ssl.key: "/etc/filebeat/certs/filebeat-key.pem"
  11. setup.template.json.enabled: true
  12. setup.template.json.path: '/etc/filebeat/wazuh-template.json'
  13. setup.template.json.name: 'wazuh'
  14. setup.ilm.overwrite: true
  15. setup.ilm.enabled: false
  16.  
  17. filebeat.modules:
  18. - module: wazuh
  19. alerts:
  20. enabled: true
  21. archives:
  22. enabled: false
  23.  
  24. logging.level: info
  25. logging.to_files: true
  26. logging.files:
  27. path: /var/log/filebeat
  28. name: filebeat
  29. keepfiles: 7
  30. permissions: 0644
  31.  
  32. logging.metrics.enabled: false
  33.  
  34. seccomp:
  35. default_action: allow
  36. syscalls:
  37. - action: allow
  38. names:
  39. - rseq
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement