summaryrefslogtreecommitdiffstats
path: root/python.d/README.md
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@tsaousis.gr>2017-05-17 02:53:59 +0300
committerGitHub <noreply@github.com>2017-05-17 02:53:59 +0300
commit102b6f388893e0c01c43b7102f3807331c538e53 (patch)
treed4113d492c3a0cfb4200833ed6563afd0f174546 /python.d/README.md
parent5fb2a5d7250ecb4dedf0d63ad5a75ecbb406b16c (diff)
parentf176175952dbe9c896a62eddb1a0d6dc7b044afd (diff)
Merge pull request #2182 from l2isbad/rabbitmq_plugin
Rabbitmq plugin
Diffstat (limited to 'python.d/README.md')
-rw-r--r--python.d/README.md54
1 files changed, 54 insertions, 0 deletions
diff --git a/python.d/README.md b/python.d/README.md
index 7daec41a56..d4486f68dc 100644
--- a/python.d/README.md
+++ b/python.d/README.md
@@ -1208,6 +1208,60 @@ When no configuration file is found, module tries to connect to TCP/IP socket: `
---
+# rabbitmq
+
+Module monitor rabbitmq performance and health metrics.
+
+Following charts are drawn:
+
+1. **Queued Messages**
+ * ready
+ * unacknowledged
+
+2. **Message Rates**
+ * ack
+ * redelivered
+ * deliver
+ * publish
+
+3. **Global Counts**
+ * channels
+ * consumers
+ * connections
+ * queues
+ * exchanges
+
+4. **File Descriptors**
+ * used descriptors
+
+5. **Socket Descriptors**
+ * used descriptors
+
+6. **Erlang processes**
+ * used processes
+
+7. **Memory**
+ * free memory in megabytes
+
+8. **Disk Space**
+ * free disk space in gigabytes
+
+### configuration
+
+```yaml
+socket:
+ name : 'local'
+ host : '127.0.0.1'
+ port : 15672
+ user : 'guest'
+ pass : 'guest'
+
+```
+
+When no configuration file is found, module tries to connect to: `localhost:15672`.
+
+---
+
# redis
Get INFO data from redis instance.