grafana / carbon-relay-ng

Fast carbon relay+aggregator with admin interfaces for making changes online - production ready
Other
468 stars 151 forks source link

AMQP input - more queue settings #163

Open mgrzybek opened 7 years ago

mgrzybek commented 7 years ago

The Python implementation of carbon-relay uses random queue names to consume messages. This can be a problem when:

Three parameters should be added to the [amqp] section of the configuration file: durable = true # default is false msg_ack = true # default is false queue_name = "carbon-relay" # default is empty

Any absent parameter could let the daemon use the classic python carbon-relay behavior.

Dieterbe commented 7 years ago

@mgrzybek would you be interested in contributing this? cc @jnjackins

mgrzybek commented 7 years ago

@Dieterbe I am not a golang devoloper but I can give it a try. These changes are minor.