1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 10:28:36 +00:00

Revert "Change category of currency-related plugins from 'other' to 'htc'"

This reverts commit a48cf87333.

see the discussion:
 https://github.com/munin-monitoring/contrib/pull/855
(the term 'htc' is probably too unknown and not really suitable)
This commit is contained in:
Lars Kruse 2017-07-03 00:02:08 +02:00
parent a48cf87333
commit d6dcc5d379
6 changed files with 7 additions and 7 deletions

View file

@ -72,7 +72,7 @@ if command == 'config':
print("graph_title Ethermine {}".format(miner))
print("graph_info ethermine.org Mining Pool Hashrate for {}_{}".format(eth_address, miner))
print("graph_vlabel Ethermine Hashrate")
print("graph_category htc")
print("graph_category other")
print("ethermine_mhs_{}_{}.warning 20:".format(eth_address, miner))
print("ethermine_mhs_{}_{}.critical 10:".format(eth_address, miner))
print("ethermine_mhs_{}_{}.label MH/s:".format(eth_address, miner))
@ -111,4 +111,4 @@ for worker in workers:
if workers[worker]['worker'] == miner:
hash_rate = workers[worker]['hashrate']
hash_rate = hash_rate.replace(" MH/s", "")
print("ethermine_mhs_{}_{}.value {}".format(eth_address, miner, hash_rate))
print("ethermine_mhs_{}_{}.value {}".format(eth_address, miner, hash_rate))

View file

@ -81,7 +81,7 @@ if command == 'config':
print("graph_title Ether {}".format(eth_address))
print("graph_info Ethereum Account Balance for Address {}".format(eth_address))
print("graph_vlabel Ethereum Balance")
print("graph_category htc")
print("graph_category other")
print("wei_balance_{0}.cdef wei_balance_{0},1000000000000000000,/".format(eth_address))
print("wei_balance_{}.label ETH".format(eth_address))
sys.exit(0)