1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-03 14:48:22 +00:00

plugin categories: other -> htc (crypto currencies)

This commit is contained in:
Lars Kruse 2018-03-28 04:31:16 +02:00
parent 9995f46c4a
commit 5a45d49760
7 changed files with 12 additions and 12 deletions

View file

@ -148,7 +148,7 @@ def write_config_worker():
print("graph_title Hashrate in Mh/s per worker ({0})".format(account_address))
print("graph_args --base 1000 -l 0")
print("graph_vlabel Mh/s")
print("graph_category other")
print("graph_category htc")
print("graph_scale no")
for val in worker_data:
@ -166,7 +166,7 @@ def write_config_worker():
print("graph_title Hashrate in Mh/s of worker {0}".format(worker_name))
print("graph_args --base 1000 -l 0")
print("graph_vlabel Mh/s")
print("graph_category other")
print("graph_category htc")
print("graph_scale no")
print("whashrate.label hashrate")
print("whashrate.type GAUGE")
@ -179,7 +179,7 @@ def write_config_worker():
print("graph_title Number of accepted shares ({0})".format(account_address))
print("graph_args --base 1000 -l 0")
print("graph_vlabel Shares per ${graph_period}")
print("graph_category other")
print("graph_category htc")
print("graph_scale no")
print("graph_period minute")
@ -198,7 +198,7 @@ def write_config_worker():
print("graph_title Number of accepted shares {0}".format(worker_name))
print("graph_args --base 1000 -l 0")
print("graph_vlabel Shares per ${graph_period}")
print("graph_category other")
print("graph_category htc")
print("graph_scale no")
print("graph_period minute")
print("wshares.label shares")
@ -247,7 +247,7 @@ def write_config():
params = GRAPH_TYPES[graph_type]
for item in params:
print("graph_title {0}".format(item["title"]))
print("graph_category other")
print("graph_category htc")
if "info" in item:
print("graph_info {0}".format(item["info"]))
if "scale" in item: