tatdat171

LS Indexer

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