1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-28 11:54:52 +00:00

Reduce number of categories, use more generic terms

This commit is contained in:
Gabriele Pohl 2014-09-06 22:28:53 +02:00
parent 0743e6e5fb
commit e3899a30d8
44 changed files with 66 additions and 66 deletions

View file

@ -89,7 +89,7 @@ try:
print "graph_title Icecast client listening duration"
print "graph_args --base 1000 -l 0"
print "graph_scale no"
print "graph_category Icecast"
print "graph_category streaming"
print "graph_vlabel minutes"
print "avg.label average listening duration"
print "mdn.label median listening duration"
@ -97,14 +97,14 @@ try:
print "graph_title Icecast source uptime"
print "graph_args --base 1000 -l 0"
print "graph_scale no"
print "graph_category Icecast"
print "graph_category streaming"
print "graph_vlabel hours"
for s in sources:
print "%s.label source %s" % (s["mount"].strip("/").replace(".","_").replace("-","_"), s["mount"])
elif plugin_name == "icecast_traffic":
print "graph_title Icecast outgoing traffic"
print "graph_args --base 1024 -l 0"
print "graph_category Icecast"
print "graph_category streaming"
print "graph_vlabel bytes / second"
is_first = True
for s in sources:
@ -121,7 +121,7 @@ try:
print "graph_title Icecast listeners count"
print "graph_args --base 1000 -l 0"
print "graph_scale no"
print "graph_category Icecast"
print "graph_category streaming"
print "graph_vlabel listeners"
is_first = True
for s in sources: