From c25025d57ec72a31543c41e791560af302a838d1 Mon Sep 17 00:00:00 2001 From: Michael Leinartas Date: Sat, 21 Dec 2013 12:50:40 -0600 Subject: [PATCH] Comment AMQP configs --- conf/carbon.conf.example | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/conf/carbon.conf.example b/conf/carbon.conf.example index 1a53fa333..a37aece0d 100644 --- a/conf/carbon.conf.example +++ b/conf/carbon.conf.example @@ -139,14 +139,33 @@ WHISPER_AUTOFLUSH = False # useful for testing # AMQP_VERBOSE = False +# Hostname or IP of AMQP broker # AMQP_HOST = localhost + +# Port of AMQP broker # AMQP_PORT = 5672 + +# AMQP virtual host namespace # AMQP_VHOST = / + +# AMQP username # AMQP_USER = guest + +# AMQP password # AMQP_PASSWORD = guest + +# AMQP exchange name # AMQP_EXCHANGE = graphite + +# Set this to True to get metric name from the message body. In this case, +# messages will be of the form: +# Otherwise, metric name will be read from the message's routing-key and the +# message body will be expected as: # AMQP_METRIC_NAME_IN_BODY = False +# Path to custom amqp specification xml +# AMQP_SPEC = + # The manhole interface allows you to SSH into the carbon daemon # and get a python interpreter. BE CAREFUL WITH THIS! If you do # something like time.sleep() in the interpreter, the whole process