2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

Fix plugin names due to category change

This commit is contained in:
daftaupe 2017-06-22 10:39:11 +02:00
parent 8732576473
commit f14887f5c8

View File

@ -181,7 +181,7 @@ class TorBandwidth(TorPlugin):
pass
def conf(self):
graph = {'title': 'Observed bandwidth',
graph = {'title': 'Tor observed bandwidth',
'args': '-l 0 --base 1000',
'vlabel': 'bytes/s',
'category': 'network',
@ -219,7 +219,7 @@ class TorConnections(TorPlugin):
pass
def conf(self):
graph = {'title': 'Connections',
graph = {'title': 'Tor connections',
'args': '-l 0 --base 1000',
'vlabel': 'connections',
'category': 'network',
@ -269,7 +269,7 @@ class TorCountries(TorPlugin):
def conf(self):
"""Configure plugin"""
graph = {'title': 'Countries',
graph = {'title': 'Tor countries',
'args': '-l 0 --base 1000',
'vlabel': 'countries',
'category': 'network',
@ -345,7 +345,7 @@ class TorDormant(TorPlugin):
pass
def conf(self):
graph = {'title': 'Dormant',
graph = {'title': 'Tor dormant',
'args': '-l 0 --base 1000',
'vlabel': 'dormant',
'category': 'network',
@ -373,7 +373,7 @@ class TorFlags(TorPlugin):
pass
def conf(self):
graph = {'title': 'Relay flags',
graph = {'title': 'Tor relay flags',
'args': '-l 0 --base 1000',
'vlabel': 'flags',
'category': 'network',
@ -415,7 +415,7 @@ class TorRouters(TorPlugin):
pass
def conf(self):
graph = {'title': 'Routers',
graph = {'title': 'Tor routers',
'args': '-l 0',
'vlabel': 'routers',
'category': 'network',
@ -453,7 +453,7 @@ class TorTraffic(TorPlugin):
pass
def conf(self):
graph = {'title': 'Traffic',
graph = {'title': 'Tor traffic',
'args': '-l 0 --base 1024',
'vlabel': 'data',
'category': 'network',