Advertisement
Guest User

Untitled

a guest
Apr 16th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. input {
  2. beats {
  3. port => 5044
  4. }
  5. }
  6.  
  7. output {
  8. stdout { codec => rubydebug }
  9. elasticsearch {
  10. hosts => "localhost:9200"
  11. user => elastic
  12. password => changeme
  13. manage_template => false
  14. index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
  15. document_type => "%{[@metadata][type]}"
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement