From 4b05cdfde13983ecde65d1e7c055e489fbb45e95 Mon Sep 17 00:00:00 2001 From: Marc Fournier Date: Tue, 24 Jun 2014 16:43:18 +0200 Subject: [PATCH] document 2 new options added to amqp plugin --- src/collectd.conf.pod | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index a14a8f68..0a0724f1 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -506,6 +506,8 @@ possibly filtering or messages. Exchange "amq.fanout" # ExchangeType "fanout" # Queue "queue_name" + # QueueDurable false + # QueueAutoDelete true # RoutingKey "collectd.#" @@ -558,9 +560,23 @@ be bound to this exchange. =item B I (Subscribe only) -Configures the I name to subscribe to. If no queue name was configures +Configures the I name to subscribe to. If no queue name was configured explicitly, a unique queue name will be created by the broker. +=item B B|B (Subscribe only) + +Defines if the I subscribed to is durable (saved to persistent storage) +or transient (will disappear if the AMQP broker is restarted). Defaults to +"false". + +This option should be used in conjunction with the I option on the +publish side. + +=item B B|B (Subscribe only) + +Defines if the I subscribed to will be deleted once the last consumer +unsubscribes. Defaults to "true". + =item B I In I blocks, this configures the routing key to set on all outgoing -- 2.11.0