1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-26 02:48:28 +00: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 pass
def conf(self): def conf(self):
graph = {'title': 'Observed bandwidth', graph = {'title': 'Tor observed bandwidth',
'args': '-l 0 --base 1000', 'args': '-l 0 --base 1000',
'vlabel': 'bytes/s', 'vlabel': 'bytes/s',
'category': 'network', 'category': 'network',
@ -219,7 +219,7 @@ class TorConnections(TorPlugin):
pass pass
def conf(self): def conf(self):
graph = {'title': 'Connections', graph = {'title': 'Tor connections',
'args': '-l 0 --base 1000', 'args': '-l 0 --base 1000',
'vlabel': 'connections', 'vlabel': 'connections',
'category': 'network', 'category': 'network',
@ -269,7 +269,7 @@ class TorCountries(TorPlugin):
def conf(self): def conf(self):
"""Configure plugin""" """Configure plugin"""
graph = {'title': 'Countries', graph = {'title': 'Tor countries',
'args': '-l 0 --base 1000', 'args': '-l 0 --base 1000',
'vlabel': 'countries', 'vlabel': 'countries',
'category': 'network', 'category': 'network',
@ -345,7 +345,7 @@ class TorDormant(TorPlugin):
pass pass
def conf(self): def conf(self):
graph = {'title': 'Dormant', graph = {'title': 'Tor dormant',
'args': '-l 0 --base 1000', 'args': '-l 0 --base 1000',
'vlabel': 'dormant', 'vlabel': 'dormant',
'category': 'network', 'category': 'network',
@ -373,7 +373,7 @@ class TorFlags(TorPlugin):
pass pass
def conf(self): def conf(self):
graph = {'title': 'Relay flags', graph = {'title': 'Tor relay flags',
'args': '-l 0 --base 1000', 'args': '-l 0 --base 1000',
'vlabel': 'flags', 'vlabel': 'flags',
'category': 'network', 'category': 'network',
@ -415,7 +415,7 @@ class TorRouters(TorPlugin):
pass pass
def conf(self): def conf(self):
graph = {'title': 'Routers', graph = {'title': 'Tor routers',
'args': '-l 0', 'args': '-l 0',
'vlabel': 'routers', 'vlabel': 'routers',
'category': 'network', 'category': 'network',
@ -453,7 +453,7 @@ class TorTraffic(TorPlugin):
pass pass
def conf(self): def conf(self):
graph = {'title': 'Traffic', graph = {'title': 'Tor traffic',
'args': '-l 0 --base 1024', 'args': '-l 0 --base 1024',
'vlabel': 'data', 'vlabel': 'data',
'category': 'network', 'category': 'network',