Advertisement
Guest User

Untitled

a guest
Apr 12th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. input {
  2. beats {
  3. port => 5044
  4. }
  5. }
  6.  
  7. # The filter part of this file is commented out to indicate that it is
  8. # optional.
  9. # filter {
  10. #
  11. # }
  12.  
  13. # output { stdout {} }
  14.  
  15.  
  16. output {
  17. elasticsearch {
  18. hosts => "172.19.32.154:9200"
  19. user => kibana
  20. password => kibana
  21. manage_template => false
  22. index => "%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
  23. document_type => "%{[@metadata][type]}"
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement