summaryrefslogtreecommitdiffstats
path: root/doc/stats_dabmux_multi.py
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-01-17 18:42:32 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-01-17 18:42:32 +0100
commite8d55df0c08992521b303b689338c48ddfa307ce (patch)
treeb78229c8f040aca3b4bf85ba2ea0b83e524437d7 /doc/stats_dabmux_multi.py
parentedb874717f758475d8fa1b433b71b601d1774e84 (diff)
downloaddabmux-e8d55df0c08992521b303b689338c48ddfa307ce.tar.gz
dabmux-e8d55df0c08992521b303b689338c48ddfa307ce.tar.bz2
dabmux-e8d55df0c08992521b303b689338c48ddfa307ce.zip
Make inputZMQ use the statistics, add munin script
Diffstat (limited to 'doc/stats_dabmux_multi.py')
-rwxr-xr-xdoc/stats_dabmux_multi.py116
1 files changed, 116 insertions, 0 deletions
diff --git a/doc/stats_dabmux_multi.py b/doc/stats_dabmux_multi.py
new file mode 100755
index 0000000..bd6b9b1
--- /dev/null
+++ b/doc/stats_dabmux_multi.py
@@ -0,0 +1,116 @@
+#!/usr/bin/env python2
+#
+# present statistics from dabmux Stats Server
+# to munin
+
+import sys
+import json
+import socket
+
+config_template_top = """
+multigraph zmq_inbuf
+graph_title {title}
+graph_order high low underruns overruns
+graph_args --base 1000
+graph_vlabel max/min buffer size bytes during last ${{graph_period}}
+graph_category dabmux
+graph_info This graph shows the high and low buffer sizes for ZMQ inputs
+
+high.info Max buffer size
+high.label Bytes
+high.min 0
+low.info Min buffer size
+low.label Bytes
+low.min 0
+underruns.info Number of underruns
+underruns.label Occurrencies
+underruns.min 0
+overruns.info Number of overruns
+overruns.label Occurrencies
+overruns.min 0
+
+"""
+
+config_template_individual = """
+multigraph zmq_inbuf.id_{ident}
+
+graph_title Contribution {ident} buffer
+graph_order high low
+graph_args --base 1000
+graph_vlabel max/min buffer size bytes during last ${{graph_period}}
+graph_category dabmux
+graph_info This graph shows the high and low buffer sizes for the {ident} ZMQ input
+
+high.info Max buffer size
+high.label Bytes
+high.min 0
+high.warning 1:
+low.info Min buffer size
+low.label Bytes
+low.min 0
+low.warning 1:
+underruns.info Number of underruns
+underruns.label Occurrencies
+underruns.min 0
+underruns.warning 1:
+overruns.info Number of overruns
+overruns.label Occurrencies
+overruns.min 0
+overruns.warning 1:
+"""
+
+#TODO enable
+#if not os.environ.get("MUNIN_CAP_MULTIGRAPH"):
+# print("This needs munin version 1.4 at least")
+# sys.exit(1)
+
+def connect():
+ """Create a connection to the dabmux stats server
+
+ returns: the socket"""
+
+ sock = socket.socket()
+ sock.connect(("localhost", 12720))
+
+ version = json.loads(sock.recv(256))
+
+ if not version['service'].startswith("CRC-DabMux"):
+ sys.stderr.write("Wrong version\n")
+ sys.exit(1)
+
+ return sock
+
+def get_id_from_uri(uri):
+ proto, _, port = uri.partition('://*:')
+ return "zmq-" + proto + "-" + port
+
+if len(sys.argv) == 1:
+ sock = connect()
+ sock.send("values\n")
+ values = json.loads(sock.recv(256))['values']
+
+ munin_values = ""
+ for ident in values:
+ v = values[ident]['inputstat']
+ munin_values += "multigraph zmq_inbuf.id_{ident}\n".format(ident=get_id_from_uri(ident))
+ munin_values += "high.value {}\n".format(v['max_fill'])
+ munin_values += "low.value {}\n".format(v['min_fill'])
+ munin_values += "underruns.value {}\n".format(v['num_underruns'])
+ munin_values += "overruns.value {}\n".format(v['num_overruns'])
+
+ print(munin_values)
+
+elif len(sys.argv) == 2 and sys.argv[1] == "config":
+ sock = connect()
+
+ sock.send("config\n")
+
+ config = json.loads(sock.recv(256))
+
+ munin_config = config_template_top.format(title="dabmux ZMQ input buffers")
+
+ for conf in config['config']:
+ munin_config += config_template_individual.format(ident=get_id_from_uri(conf))
+
+ print(munin_config)
+