mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Update slush_hashrate_
Moved from filename to env parameter for the api key. This way the api key is no longer displayed as the chart name
This commit is contained in:
parent
84866ca679
commit
3bf0c91b92
@ -1,34 +1,37 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# based on https://github.com/pdbrown/munin-custom/blob/master/plugins/hashrate
|
# based on https://github.com/pdbrown/munin-custom/blob/master/plugins/hashrate
|
||||||
# improved by @deveth0 (donation to 1GzHgp9hsDRsf96MnVk2oo6EG1VmWP9jGs :) )
|
# improved by @deveth0 (donation to 1GzHgp9hsDRsf96MnVk2oo6EG1VmWP9jGs :) )
|
||||||
# usage: link to slush_hashrate_YOURAPIKEY
|
# usage: set your api key in node-config, eg
|
||||||
import sys
|
# [slush_*]
|
||||||
import urllib2
|
# env.apikey foobar
|
||||||
import json
|
import sys
|
||||||
|
import urllib2
|
||||||
SLUSH_URL = 'https://mining.bitcoin.cz/accounts/profile/json/'
|
import json
|
||||||
API_KEY = sys.argv[0][(sys.argv[0].rfind('_')+1):]
|
import os
|
||||||
SLUSH_STATS = SLUSH_URL + API_KEY
|
|
||||||
|
SLUSH_URL = 'https://mining.bitcoin.cz/accounts/profile/json/'
|
||||||
mining_stats_raw = urllib2.urlopen(SLUSH_STATS)
|
API_KEY = os.getenv('apikey')
|
||||||
mining_stats = json.load(mining_stats_raw)
|
SLUSH_STATS = SLUSH_URL + API_KEY
|
||||||
workers = mining_stats['workers']
|
|
||||||
|
mining_stats_raw = urllib2.urlopen(SLUSH_STATS)
|
||||||
command = ''
|
mining_stats = json.load(mining_stats_raw)
|
||||||
if len(sys.argv) > 1:
|
workers = mining_stats['workers']
|
||||||
command = sys.argv[1]
|
|
||||||
|
command = ''
|
||||||
if command == 'config':
|
if len(sys.argv) > 1:
|
||||||
print "graph_title Slush Hashrate"
|
command = sys.argv[1]
|
||||||
print "graph_args --upper-limit 3000 -l 0"
|
|
||||||
print "graph_vlabel MHash/s"
|
if command == 'config':
|
||||||
print "graph_category Bitcoin"
|
print "graph_title Slush Hashrate"
|
||||||
for worker in workers:
|
print "graph_args --upper-limit 3000 -l 0"
|
||||||
label = worker.replace(".","_")
|
print "graph_vlabel MHash/s"
|
||||||
print label + ".label " +label
|
print "graph_category Bitcoin"
|
||||||
sys.exit(0)
|
for worker in workers:
|
||||||
|
label = worker.replace(".","_")
|
||||||
for worker in workers:
|
print label + ".label " +label
|
||||||
hash_rate = workers[worker]['hashrate']
|
sys.exit(0)
|
||||||
label = worker.replace(".","_")
|
|
||||||
print label + ".value %d" % int(hash_rate)
|
for worker in workers:
|
||||||
|
hash_rate = workers[worker]['hashrate']
|
||||||
|
label = worker.replace(".","_")
|
||||||
|
print label + ".value %d" % int(hash_rate)
|
||||||
|
Loading…
Reference in New Issue
Block a user