Skip to content

Commit

Permalink
Fix plugin names due to category change
Browse files Browse the repository at this point in the history
  • Loading branch information
daftaupe committed Jun 22, 2017
1 parent 8732576 commit f14887f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions plugins/tor/tor_
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit f14887f

Please sign in to comment.