1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
#!/usr/bin/env python2
#
# present statistics from dabmux Stats Server and ZeroMQ RC
# to munin. Expects Stats server on port 12720 and ZeroMQ RC
# on port 12722.
#
# Copy this to /etc/munin/plugins/stats_dabmux_munin
# and make it executable (chmod +x)
import sys
import json
import zmq
import os
import re
config_top = """
multigraph clocktai_expiry
graph_title Time to expiry for TAI bulletin
graph_order expiry
graph_args --base 1000
graph_vlabel Number of seconds until expiry
graph_category dabmux
graph_info This graph shows the number of remaining seconds this bulletin is valid
expiry.info Seconds until expiry
expiry.label Seconds until expiry
expiry.min 0
expiry.warning {onemonth}:
""".format(onemonth=3600*24*30)
#default data type is GAUGE
config_template = """
multigraph buffers_{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 Max Buffer Bytes
high.min 0
high.warning 1:
low.info Min buffer size
low.label Min Buffer Bytes
low.min 0
low.warning 1:
multigraph over_underruns_{ident}
graph_title Contribution {ident} over/underruns
graph_order underruns overruns
graph_args --base 1000 --logarithmic
graph_vlabel number of underruns/overruns during last ${{graph_period}}
graph_category dabmux
graph_info This graph shows the number of under/overruns for the {ident} ZMQ input
underruns.info Number of underruns
underruns.label Number of underruns
underruns.min 0
underruns.warning 0:0
underruns.type COUNTER
overruns.info Number of overruns
overruns.label Number of overruns
overruns.min 0
overruns.warning 0:0
overruns.type COUNTER
multigraph audio_levels_{ident}
graph_title Contribution {ident} audio level (peak)
graph_order left left_slow right right_slow
graph_args --base 1000
graph_vlabel peak audio level during last ${{graph_period}}
graph_category encoders
graph_info This graph shows the audio level and peak of both channels of the {ident} ZMQ input
left.info Left channel audio level
left.label Left level
left.min -90
left.max 0
left.warning -40:0
left.critical -80:0
left_slow.info Left channel audio peak over last 5 minutes
left_slow.label Left peak
left_slow.min -90
left_slow.max 0
left_slow.warning -40:0
left_slow.critical -80:0
right.info Right channel audio level
right.label Right level
right.min -90
right.max 0
right.warning -40:0
right.critical -80:0
right_slow.info Right channel audio peak over last 5 minutes
right_slow.label Right peak
right_slow.min -90
right_slow.max 0
right_slow.warning -40:0
right_slow.critical -80:0
multigraph state_{ident}
graph_title State of contribution {ident}
graph_order state
graph_args --base 1000 --lower-limit 0 --upper-limit 5
graph_vlabel Current state of the input
graph_category dabmux
graph_info This graph shows the state for the {ident} ZMQ input
state.info Input state
state.label 0 Unknown, 1 NoData, 2 Unstable, 3 Silent, 4 Streaming
state.warning 4:4
state.critical 2:4
"""
ctx = zmq.Context()
class RCException(Exception):
pass
def do_transaction(command, sock):
"""To a send + receive transaction, quit whole program on timeout"""
sock.send(command)
poller = zmq.Poller()
poller.register(sock, zmq.POLLIN)
socks = dict(poller.poll(1000))
if socks:
if socks.get(sock) == zmq.POLLIN:
return sock.recv()
sys.stderr.write("Could not receive data for command '{}'\n".format(command))
sys.exit(1)
def do_multipart_transaction(message_parts, sock):
"""To a send + receive transaction, quit whole program on timeout"""
if isinstance(message_parts, str):
sys.stderr.write("do_transaction expects a list!\n");
sys.exit(1)
for i, part in enumerate(message_parts):
if i == len(message_parts) - 1:
f = 0
else:
f = zmq.SNDMORE
sock.send(part, flags=f)
poller = zmq.Poller()
poller.register(sock, zmq.POLLIN)
socks = dict(poller.poll(1000))
if socks:
if socks.get(sock) == zmq.POLLIN:
rxpackets = sock.recv_multipart()
return rxpackets
raise RCException("Could not receive data for command '{}'\n".format(
message_parts))
def get_rc_value(module, name, sock):
try:
parts = do_multipart_transaction([b"get", module.encode(), name.encode()],
sock)
if len(parts) != 1:
sys.stderr.write("Received unexpected multipart message {}\n".format(
parts))
sys.exit(1)
return parts[0].decode()
except RCException as e:
print("get {} {} fail: {}".format(module, name, e))
return ""
def connect_to_stats():
"""Create a connection to the dabmux stats server
returns: the socket"""
sock = zmq.Socket(ctx, zmq.REQ)
sock.set(zmq.LINGER, 5)
sock.connect("tcp://localhost:12720")
version = json.loads(do_transaction("info", sock))
if not version['service'].startswith("ODR-DabMux"):
sys.stderr.write("Wrong version\n")
sys.exit(1)
return sock
def connect_to_rc():
"""Create a connection to the dabmux RC
returns: the socket"""
sock = zmq.Socket(ctx, zmq.REQ)
sock.set(zmq.LINGER, 5)
sock.connect("tcp://localhost:12722")
try:
ping_answer = do_multipart_transaction([b"ping"], sock)
if not ping_answer == [b"ok"]:
sys.stderr.write("Wrong answer to ping\n")
sys.exit(1)
except RCException as e:
print("connect failed because: {}".format(e))
sys.exit(1)
return sock
def handle_re(graph_name, re, rc_value, group_number=1):
match = re.search(rc_value)
if match:
return "{}.value {}\n".format(graph_name, match.group(group_number))
else:
return "{}.value U\n".format(graph_name)
if len(sys.argv) == 1:
munin_values = ""
sock_rc = connect_to_rc()
clocktai_expiry = get_rc_value("clocktai", "expiry", sock_rc)
re_clocktai_expiry = re.compile(r"(\d+)", re.X)
munin_values += "multigraph clocktai_expiry\n"
munin_values += handle_re("expiry", re_clocktai_expiry, clocktai_expiry)
sock_stats = connect_to_stats()
values = json.loads(do_transaction("values", sock_stats))['values']
for ident in values:
v = values[ident]['inputstat']
ident_ = ident.replace('-', '_')
munin_values += "multigraph buffers_{ident}\n".format(ident=ident_)
munin_values += "high.value {}\n".format(v['max_fill'])
munin_values += "low.value {}\n".format(v['min_fill'])
munin_values += "multigraph over_underruns_{ident}\n".format(ident=ident_)
munin_values += "underruns.value {}\n".format(v['num_underruns'])
munin_values += "overruns.value {}\n".format(v['num_overruns'])
munin_values += "multigraph audio_levels_{ident}\n".format(ident=ident_)
munin_values += "left.value {}\n".format(v['peak_left'])
munin_values += "right.value {}\n".format(v['peak_right'])
if 'peak_left_slow' in v:
# If ODR-DabMux is v2.0.0-3 or older, it doesn't export the slow peaks
munin_values += "left_slow.value {}\n".format(v['peak_left_slow'])
munin_values += "right_slow.value {}\n".format(v['peak_right_slow'])
if 'state' in v:
# If ODR-DabMux is v1.3.1-3 or older, it doesn't export state
re_state = re.compile(r"\w+ \((\d+)\)")
match = re_state.match(v['state'])
if match:
munin_values += "multigraph state_{ident}\n".format(ident=ident_)
munin_values += "state.value {}\n".format(match.group(1))
else:
sys.stderr.write("Cannot parse state '{}'\n".format(v['state']))
print(munin_values)
elif len(sys.argv) == 2 and sys.argv[1] == "config":
sock_stats = connect_to_stats()
config = json.loads(do_transaction("config", sock_stats))
munin_config = config_top
for conf in config['config']:
munin_config += config_template.format(ident=conf.replace('-', '_'))
print(munin_config)
else:
sys.stderr.write("Invalid command line arguments")
sys.exit(1)
|