nytimes / collectd-rabbitmq

A collected plugin, written in python, to collect statistics from RabbitMQ.
https://collectd-rabbitmq.readthedocs.org/
Other
145 stars 79 forks source link

Feature/multiple endpoints #38

Closed YuriyIlyin closed 7 years ago

YuriyIlyin commented 8 years ago

Example:

LoadPlugin python

<Plugin python>
  LogTraces true
  Interactive false
  Import "collectd_rabbitmq.collectd_plugin"

  <Module "collectd_rabbitmq.collectd_plugin">
    VHostPrefix "prefix1"
    Username "guest"
    Password "guest"
    Realm "RabbitMQ Management"
    Host "localhost"
    Port "15672"
  </Module>

  <Module "collectd_rabbitmq.collectd_plugin">
    VHostPrefix "prefix2"
    Username "guest"
    Password "guest"
    Realm "RabbitMQ Management"
    Host "localhost"
    Port "15673"
  </Module>
</Plugin>
jimbydamonk commented 8 years ago

This looks good, I am going to get it up and running today to give it a more through testing than the unit tests cover.