Advertisement
Guest User

Untitled

a guest
Aug 8th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #output
  2. rabbitmq {
  3. exchange => "logstash-rabbitmq"
  4. exchange_type => "direct"
  5. key => "logstash-key"
  6. host => "x.x.x.x"
  7. workers => 12
  8. durable => true
  9. persistent => true
  10. }
  11.  
  12.  
  13. #input rabbitmq {
  14. host => "x.x.x.x"
  15. add_field => { "environment" => "production" }
  16. queue => "logstash-queue"
  17. durable => true
  18. key => "logstash-key"
  19. exchange => "logstash-rabbitmq"
  20. exclusive => false
  21. auto_delete => false
  22. threads => 3
  23. prefetch_count => 20
  24. port => 5672
  25. user => "guest"
  26. password => "guest"
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement