Guest User

Untitled

a guest
Dec 19th, 2017
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. filter.conf
  2.  
  3. input {
  4. beats {
  5. host => "127.0.0.1"
  6. port => 5044
  7. }
  8. #file {path => "/tmp/*"}
  9. #stdin { }
  10. }
  11.  
  12. #filter {
  13. # json {
  14. # source => "message"
  15. # remove_field => ["message"]
  16. # }
  17. #
  18. # date {
  19. # #match => [ "EventTime", "yyyy-MM-dd HH:mm:ss" ]
  20. # match => ["date", "yyyyMMddHHmm"]
  21. # timezone => "America/New_York"
  22. # target => "@timestamp"
  23. # #timezone => "America/New_York"
  24. # }
  25. #}
  26.  
  27. output {
  28. elasticsearch {
  29. hosts => "localhost:9200"
  30. }
  31. stdout { codec => rubydebug }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment