1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Category Tree: Reduce number of categories

mogilefs -> fs (mogilefs)
moodle -> cms (moodle)
openvz -> virtualization (openvz)
wowza -> streaming (wowza)
varnish -> webserver (varnish)
xbnbt -> torrent (xbnbt)
This commit is contained in:
dipohl 2017-02-23 15:31:40 +01:00
parent 3ad41d6a4a
commit eaf6c2d7ce
19 changed files with 28 additions and 28 deletions

View file

@ -137,7 +137,7 @@ try:
print ("graph_title Wowza clients listening duration")
print ("graph_args --base 1000 -l 0")
print ("graph_scale no")
print ("graph_category Wowza")
print ("graph_category streaming")
print ("graph_vlabel minutes")
print ("avg.label average listening duration")
print ("mdn.label median listening duration")
@ -146,7 +146,7 @@ try:
print ("graph_title Wowza listeners count by vhosts")
print ("graph_args --base 1000 -l 0")
print ("graph_scale no")
print ("graph_category Wowza")
print ("graph_category streaming")
print ("graph_vlabel listeners")
is_first = True
for vh in vhosts:
@ -162,7 +162,7 @@ try:
print ("graph_title Wowza clients listening duration by vhosts")
print ("graph_args --base 1000 -l 0")
print ("graph_scale no")
print ("graph_category Wowza")
print ("graph_category streaming")
print ("graph_vlabel minutes")
for vh in vhosts:
vname = vh["Name"].strip("/").replace(".","_").replace("-","_")
@ -173,7 +173,7 @@ try:
print ("graph_title Wowza vhosts uptime")
print ("graph_args --base 1000 -l 0")
print ("graph_scale no")
print ("graph_category Wowza")
print ("graph_category streaming")
print ("graph_vlabel hours")
for vh in vhosts:
vname = vh["Name"].strip("/").replace(".","_").replace("-","_")
@ -183,7 +183,7 @@ try:
print ("graph_title Wowza listeners count by apps")
print ("graph_args --base 1000 -l 0")
print ("graph_scale no")
print ("graph_category Wowza")
print ("graph_category streaming")
print ("graph_vlabel listeners")
is_first = True
for vh in vhosts:
@ -201,7 +201,7 @@ try:
print ("graph_title Wowza clients listening duration by apps")
print ("graph_args --base 1000 -l 0")
print ("graph_scale no")
print ("graph_category Wowza")
print ("graph_category streaming")
print ("graph_vlabel minutes")
for vh in vhosts:
vname = vh["Name"].strip("/").replace(".","_").replace("-","_")
@ -214,7 +214,7 @@ try:
print ("graph_title Wowza apps uptime")
print ("graph_args --base 1000 -l 0")
print ("graph_scale no")
print ("graph_category Wowza")
print ("graph_category streaming")
print ("graph_vlabel hours")
for vh in vhosts:
vname = vh["Name"].strip("/").replace(".","_").replace("-","_")
@ -226,7 +226,7 @@ try:
print ("graph_title Wowza listeners count")
print ("graph_args --base 1000 -l 0")
print ("graph_scale no")
print ("graph_category Wowza")
print ("graph_category streaming")
print ("graph_vlabel listeners")
print ("wowza_listeners.label Total Listeners")
print ("wowza_listeners.draw AREA")