From 2fbd179fa21019b4c58541c3562147608c3ce5ba Mon Sep 17 00:00:00 2001 From: deveth0 Date: Tue, 28 Jan 2014 23:41:42 +0100 Subject: [PATCH] Update slush_reward_ Moved from filename to env parameter to prevent the api-key displayed as graph name --- plugins/bitcoin/slush_reward_ | 71 ++++++++++++++++++----------------- 1 file changed, 37 insertions(+), 34 deletions(-) diff --git a/plugins/bitcoin/slush_reward_ b/plugins/bitcoin/slush_reward_ index 02bd104e..36c22cdd 100644 --- a/plugins/bitcoin/slush_reward_ +++ b/plugins/bitcoin/slush_reward_ @@ -1,34 +1,37 @@ -#!/usr/bin/python -# based on https://github.com/pdbrown/munin-custom/blob/master/plugins/hashrate -# improved by @deveth0 (donation to 1GzHgp9hsDRsf96MnVk2oo6EG1VmWP9jGs :) ) -# usage: link to slush_reward_YOURAPIKEY -import sys -import urllib2 -import json - -SLUSH_URL = 'https://mining.bitcoin.cz/accounts/profile/json/' -API_KEY = sys.argv[0][(sys.argv[0].rfind('_')+1):] -SLUSH_STATS = SLUSH_URL + API_KEY - -mining_stats_raw = urllib2.urlopen(SLUSH_STATS) -mining_stats = json.load(mining_stats_raw) - -command = '' -if len(sys.argv) > 1: - command = sys.argv[1] - -if command == 'config': - print "graph_title Slush Rewards" - print "graph_args -l 0" - print "graph_vlabel BTC" - print "graph_category Bitcoin" - print "unconfirmed_reward.label Unconfirmed Reward" - print "estimated_reward.label Estimeated Reward" - print "confirmed_reward.label Confirmed Reward" - print "send_threshold.label Send Threshold" - sys.exit(0) - -print "unconfirmed_reward.value " +mining_stats['unconfirmed_reward'] -print "estimated_reward.value " +mining_stats['estimated_reward'] -print "confirmed_reward.value " +mining_stats['confirmed_reward'] -print "send_threshold.value " +mining_stats['send_threshold'] +#!/usr/bin/python +# based on https://github.com/pdbrown/munin-custom/blob/master/plugins/hashrate +# improved by @deveth0 (donation to 1GzHgp9hsDRsf96MnVk2oo6EG1VmWP9jGs :) ) +# usage: set your api key in node-config, eg +# [slush_*] +# env.apikey foobar +import sys +import urllib2 +import json +import os + +SLUSH_URL = 'https://mining.bitcoin.cz/accounts/profile/json/' +API_KEY = os.getenv('apikey') +SLUSH_STATS = SLUSH_URL + API_KEY + +mining_stats_raw = urllib2.urlopen(SLUSH_STATS) +mining_stats = json.load(mining_stats_raw) + +command = '' +if len(sys.argv) > 1: + command = sys.argv[1] + +if command == 'config': + print "graph_title Slush Rewards" + print "graph_args -l 0" + print "graph_vlabel BTC" + print "graph_category Bitcoin" + print "unconfirmed_reward.label Unconfirmed Reward" + print "estimated_reward.label Estimeated Reward" + print "confirmed_reward.label Confirmed Reward" + print "send_threshold.label Send Threshold" + sys.exit(0) + +print "unconfirmed_reward.value " +mining_stats['unconfirmed_reward'] +print "estimated_reward.value " +mining_stats['estimated_reward'] +print "confirmed_reward.value " +mining_stats['confirmed_reward'] +print "send_threshold.value " +mining_stats['send_threshold']