Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comment AMQP config examples #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions conf/carbon.conf.example
Original file line number Diff line number Diff line change
Expand Up @@ -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: <metric name> <metric value> <timestamp>
# Otherwise, metric name will be read from the message's routing-key and the
# message body will be expected as: <metric value> <timestamp>
# 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
Expand Down