Advertisement
Guest User

ls-config

a guest
Jan 18th, 2016
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. input {
  2. rabbitmq {
  3. host => "10.1.6.245"
  4. queue => "logstash-queue"
  5. key => "logstash-key"
  6. exchange => "logstash-rabbitmq"
  7. threads => 120
  8. exclusive => false
  9. prefetch_count => 512
  10. vhost => "ELK"
  11. port => 5677
  12. user => "logstash"
  13. password => "*****"
  14. }
  15. }
  16. output {
  17. elasticsearch {
  18. hosts => ["10.1.6.242:9200", "10.1.6.243:9200", "10.1.6.241:9200"]
  19. user => "*****"
  20. password => "****"
  21. sniffing => true
  22. manage_template => false
  23. #index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
  24. #document_type => "%{[@metadata][type]}"
  25. index => "%{beatname}-%{+xxxx.ww}"
  26. document_type => "%{beattype}"
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement