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

This commit is contained in:
dipohl 2017-02-22 04:04:04 +01:00
parent a3c2338b1f
commit 84c28707eb
20 changed files with 22 additions and 26 deletions

View file

@ -91,14 +91,14 @@ def doConfig(plugin_name):
print "graph_title ArangoDB current connections"
print "graph_args --base 1000 -l 0"
print "graph_vlabel connections"
print "graph_category ArangoDB"
print "graph_category db"
print "connections.label connections"
elif plugin_name == 'arangodb_time_total':
print "graph_title ArangoDB total time"
print "graph_args --base 1000 -l 0"
print "graph_vlabel seconds"
print "graph_category ArangoDB"
print "graph_category db"
print "total.label total"
print "connection.label connection"
print "request.label request"
@ -108,7 +108,7 @@ def doConfig(plugin_name):
print "graph_title ArangoDB total bytes"
print "graph_args --base 1024"
print "graph_vlabel total bytes received (-) / sent (+)"
print "graph_category ArangoDB"
print "graph_category db"
print "graph_order received sent"
print "received.graph no"
print "received.draw LINE2"