Advertisement
lmoreira

Untitled

Jun 3rd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. input {
  2. beats {
  3. id => "apache"
  4. port => 5044
  5. }
  6. }
  7.  
  8. input {
  9. tcp {
  10. id => "sislog_tcp"
  11. type => "syslog"
  12. port => 5045
  13. }
  14. }
  15. input {
  16. udp {
  17. id => "sislog_udp"
  18. type => "syslog"
  19. port => 5046
  20. }
  21. }
  22. input {
  23. beats {
  24. id => "nginx"
  25. port => 5047
  26. }
  27. }
  28.  
  29. input {
  30. beats {
  31. id => "jboss"
  32. port => 5048
  33. }
  34. }
  35. output {
  36. elasticsearch {
  37. id => "elasticsearch"
  38. hosts => ["elasticsearch:9200"]
  39. #user => "elastic"
  40. #password => "changeme"
  41. }
  42. #stdout { codec => rubydebug }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement