summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0d0886a)
raw | patch | inline | side by side (parent: 0d0886a)
author | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 24 Jun 2014 14:43:18 +0000 (16:43 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 24 Jun 2014 14:58:34 +0000 (16:58 +0200) |
src/collectd.conf.pod | patch | blob | history |
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index a14a8f68b0a42c029b83ec4340ba3960b4517400..0a0724f11a2c18370dd73af6e1060a78570c6936 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
Exchange "amq.fanout"
# ExchangeType "fanout"
# Queue "queue_name"
+ # QueueDurable false
+ # QueueAutoDelete true
# RoutingKey "collectd.#"
</Subscribe>
</Plugin>
=item B<Queue> I<Queue> (Subscribe only)
-Configures the I<queue> name to subscribe to. If no queue name was configures
+Configures the I<queue> name to subscribe to. If no queue name was configured
explicitly, a unique queue name will be created by the broker.
+=item B<QueueDurable> B<true>|B<false> (Subscribe only)
+
+Defines if the I<queue> 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<Persistent> option on the
+publish side.
+
+=item B<QueueAutoDelete> B<true>|B<false> (Subscribe only)
+
+Defines if the I<queue> subscribed to will be deleted once the last consumer
+unsubscribes. Defaults to "true".
+
=item B<RoutingKey> I<Key>
In I<Publish> blocks, this configures the routing key to set on all outgoing