From f14887f5c81a230651a741e131a654531a9311fa Mon Sep 17 00:00:00 2001 From: daftaupe Date: Thu, 22 Jun 2017 10:39:11 +0200 Subject: [PATCH] Fix plugin names due to category change --- plugins/tor/tor_ | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/tor/tor_ b/plugins/tor/tor_ index e75d8285c..decdbf19f 100755 --- a/plugins/tor/tor_ +++ b/plugins/tor/tor_ @@ -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',