Advertisement
mrahman

Untitled

Apr 4th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. init_config:
  2.  
  3. instances:
  4. # for every instance a 'rabbitmq_api_url' must be provided, pointing to the api
  5. # url of the RabbitMQ Managment Plugin (http://www.rabbitmq.com/management.html)
  6. # optional: 'rabbitmq_user' (default: guest) and 'rabbitmq_pass' (default: guest)
  7. - rabbitmq_api_url: http://localhost:15672/api/
  8. rabbitmq_user: datadog
  9. rabbitmq_pass: Dz3wcovB
  10. # Use the `nodes` or `nodes_regexes` parameters to specify the nodes you'd like to
  11. # collect metrics on (up to 100 nodes).
  12. # If you have less than 100 nodes, you don't have to set this parameter,
  13. # the metrics will be collected on all the nodes by default.
  14. #
  15. # nodes:
  16. # - rabbit@localhost
  17. # - rabbit2@domain
  18. # nodes_regexes:
  19. # - bla.*
  20.  
  21. # Use the `queues` or `queues_regexes` parameters to specify the queues you'd like to
  22. # collect metrics on (up to 200 queues).
  23. # If you have less than 200 queues, you don't have to set this parameter,
  24. # the metrics will be collected on all the queues by default.
  25. # If you have set up vhosts, set the queue names as `vhost_name/queue_name`.
  26. #
  27. queues:
  28. - DeadLetterQueue
  29. - NewCustomerOrder
  30. - email.queue
  31. - aliveness-test
  32. # queues_regexes:
  33. # - thisqueue-.*
  34. # - another_\d+queue
  35.  
  36. # Service checks:
  37. # By default a list of all vhosts is fetched and each one will be checked
  38. # using the aliveness API. If you prefer only certain vhosts to be monitored
  39. # with service checks then you can list the vhosts you care about.
  40. #
  41. # vhosts:
  42. # - vhost1
  43. # - vhost2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement