From a48cf873338cc13d9a9239fef5d9a1326a98c9a3 Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Sun, 2 Jul 2017 19:28:15 +0200 Subject: [PATCH] Change category of currency-related plugins from 'other' to 'htc' some categories were changed erroneously before: https://github.com/munin-monitoring/contrib/pull/855 --- plugins/currency/bitcoin/bitcoind_ | 2 +- plugins/currency/bitcoin/btcguild_hashrate_ | 2 +- plugins/currency/bitcoin/slush_hashrate_ | 2 +- plugins/currency/bitcoin/slush_reward_ | 2 +- plugins/currency/ethereum/ethermine_hashrate_ | 4 ++-- plugins/currency/ethereum/etherscan_balance_ | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/currency/bitcoin/bitcoind_ b/plugins/currency/bitcoin/bitcoind_ index bcb50aa0..5b5408dd 100755 --- a/plugins/currency/bitcoin/bitcoind_ +++ b/plugins/currency/bitcoin/bitcoind_ @@ -70,7 +70,7 @@ def main(): return if command == 'config': - print 'graph_category other' + print 'graph_category htc' print 'graph_title Bitcoin %s' % labels[0] print 'graph_vlabel %s' % labels[1] for label in line_labels: diff --git a/plugins/currency/bitcoin/btcguild_hashrate_ b/plugins/currency/bitcoin/btcguild_hashrate_ index 33d72d7e..25e9f2a0 100755 --- a/plugins/currency/bitcoin/btcguild_hashrate_ +++ b/plugins/currency/bitcoin/btcguild_hashrate_ @@ -28,7 +28,7 @@ if command == 'config': print "graph_title BTCGuild Hashrate" print "graph_args --upper-limit 3000 -l 0" print "graph_vlabel MHash/s" - print "graph_category other" + print "graph_category htc" for worker in workers: label = workers[worker]['worker_name'] print label + ".label " + label diff --git a/plugins/currency/bitcoin/slush_hashrate_ b/plugins/currency/bitcoin/slush_hashrate_ index 59533b19..b07493fc 100755 --- a/plugins/currency/bitcoin/slush_hashrate_ +++ b/plugins/currency/bitcoin/slush_hashrate_ @@ -25,7 +25,7 @@ if command == 'config': print "graph_title Slush Hashrate" print "graph_args --upper-limit 3000 -l 0" print "graph_vlabel MHash/s" - print "graph_category other" + print "graph_category htc" for worker in workers: label = worker.replace(".","_") print label + ".label " +label diff --git a/plugins/currency/bitcoin/slush_reward_ b/plugins/currency/bitcoin/slush_reward_ index 28629f97..2986ea00 100755 --- a/plugins/currency/bitcoin/slush_reward_ +++ b/plugins/currency/bitcoin/slush_reward_ @@ -24,7 +24,7 @@ if command == 'config': print "graph_title Slush Rewards" print "graph_args -l 0" print "graph_vlabel BTC" - print "graph_category other" + print "graph_category htc" print "unconfirmed_reward.label Unconfirmed Reward" print "estimated_reward.label Estimeated Reward" print "confirmed_reward.label Confirmed Reward" diff --git a/plugins/currency/ethereum/ethermine_hashrate_ b/plugins/currency/ethereum/ethermine_hashrate_ index ca0bc038..4b640409 100755 --- a/plugins/currency/ethereum/ethermine_hashrate_ +++ b/plugins/currency/ethereum/ethermine_hashrate_ @@ -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 other") + print("graph_category htc") 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)) \ No newline at end of file + print("ethermine_mhs_{}_{}.value {}".format(eth_address, miner, hash_rate)) diff --git a/plugins/currency/ethereum/etherscan_balance_ b/plugins/currency/ethereum/etherscan_balance_ index 2445b7f6..97671e00 100755 --- a/plugins/currency/ethereum/etherscan_balance_ +++ b/plugins/currency/ethereum/etherscan_balance_ @@ -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 other") + print("graph_category htc") print("wei_balance_{0}.cdef wei_balance_{0},1000000000000000000,/".format(eth_address)) print("wei_balance_{}.label ETH".format(eth_address)) sys.exit(0)