Skip to content

Commit 173ea25

Browse files
committed
Merge pull request #140 from cburroughs/babbitty
Babbitty Rabbitty and her Cackling Queue
2 parents 59ed544 + 29413dd commit 173ea25

File tree

2 files changed

+297
-123
lines changed

2 files changed

+297
-123
lines changed

rabbit/conf.d/rabbitmq.pyconf

+16-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ modules {
1212
value = "localhost"
1313
}
1414

15+
# CSV of which type of stats to emit
16+
# * nodes: per broker details about mem, sockets, etc
17+
# * queues: per queue stats, may result in many metrics on brokers with many queues
18+
# * exchanges: per exchange in/out messages rates
19+
param stats {
20+
value = "nodes,queues,exchanges"
21+
}
22+
1523
param vhost {
1624
value = "/,vhost1,vhost2"
1725
}
@@ -32,7 +40,14 @@ modules {
3240
param zero_rates_when_idle {
3341
value = "True"
3442
}
35-
43+
# Where to log information from this module (syslog facility)
44+
param syslog_facility {
45+
value = "user"
46+
}
47+
# log level, WARNING is not expected to produce any output
48+
param log_level {
49+
value = "WARNING"
50+
}
3651
}
3752
}
3853

0 commit comments

Comments
 (0)