Advertisement
nullawhale

logstash.conf

Feb 2nd, 2020
2,999
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. input {
  2.     beats {
  3.     port => 5044
  4.     }
  5. }
  6.  
  7. ## Add your filters / logstash plugins configuration here
  8.  
  9. output {
  10.     elasticsearch {
  11.     hosts => ["elasticsearch:9200"]
  12.     user => "elastic"
  13.     password => "password"
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement