2017-06-27 19:06:01 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
#
|
|
|
|
# ethermine_
|
|
|
|
#
|
|
|
|
# Munin plugin to monitor your ethermine.org hashrate.
|
|
|
|
#
|
|
|
|
# Author: Nils Knieling - https://github.com/Cyclenerd
|
|
|
|
# Licence: GPLv2
|
|
|
|
#
|
|
|
|
# USAGE
|
|
|
|
# ethermine_<YOUR_PUBLIC_ETHEREUM_ADDRESS>_<YOUR_RIG_NAME>
|
|
|
|
#
|
|
|
|
# EXAMPLE
|
|
|
|
# ln -s /usr/share/munin/plugins/ethermine_ /etc/munin/plugins/ethermine_3257bde8cf067ae6f1ddc0e4b140fe02e3c5e44f_mine
|
|
|
|
#
|
|
|
|
|
2017-06-27 21:35:36 +02:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2017-06-27 21:21:41 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import urllib2
|
|
|
|
import socket
|
|
|
|
import json
|
2017-06-27 19:06:01 +02:00
|
|
|
|
|
|
|
command = ''
|
|
|
|
if len(sys.argv) > 1:
|
|
|
|
command = sys.argv[1]
|
|
|
|
|
|
|
|
try:
|
2017-06-27 21:53:50 +02:00
|
|
|
eth_address, miner = sys.argv[0].split("_")[1:]
|
2017-06-27 21:35:36 +02:00
|
|
|
except ValueError:
|
|
|
|
print("The filename of this plugin (or its symlink) should follow this pattern: "
|
|
|
|
"'<YOUR_PUBLIC_ETHEREUM_ADDRESS>_<YOUR_RIG_NAME>'", file=sys.stderr)
|
2017-06-27 21:53:50 +02:00
|
|
|
sys.exit(9)
|
2017-06-27 19:06:01 +02:00
|
|
|
|
|
|
|
if command == 'config':
|
2017-06-27 21:53:50 +02:00
|
|
|
print("graph_title Ethermine {}".format(eth_address))
|
|
|
|
print("graph_info Ethermine Hashrate {}/{}".format(eth_address, miner))
|
2017-06-27 21:35:36 +02:00
|
|
|
print("graph_vlabel Ethermine Hashrate")
|
|
|
|
print("graph_category htc")
|
2017-06-27 21:53:50 +02:00
|
|
|
print("{}_{}.warning 20:".format(eth_address, miner));
|
|
|
|
print("{}_{}.critical 10:".format(eth_address, miner));
|
|
|
|
print("{}_{}.label MH/s:".format(eth_address, miner));
|
2017-06-27 19:06:01 +02:00
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
|
2017-06-27 21:53:50 +02:00
|
|
|
ethermine_api_url = 'https://ethermine.org/api/miner_new/' + eth_address
|
2017-06-27 19:06:01 +02:00
|
|
|
|
2017-06-27 21:53:50 +02:00
|
|
|
mining_req = urllib2.Request(ethermine_api_url)
|
2017-06-27 19:06:01 +02:00
|
|
|
mining_req.add_header('User-Agent', 'Mozilla/5.0')
|
|
|
|
|
|
|
|
try:
|
2017-06-27 21:35:36 +02:00
|
|
|
mining_stats_raw = urllib2.urlopen(mining_req, timeout=1.5 )
|
|
|
|
except IOError as exc:
|
|
|
|
print("Failed to request ethermine.org API: {}".format(exc), file=sys.stderr)
|
2017-06-27 19:06:01 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
mining_stats = json.load(mining_stats_raw)
|
2017-06-27 21:35:36 +02:00
|
|
|
except ValueError:
|
|
|
|
print("Failed to parse JSON responce.", file=sys.stderr);
|
2017-06-27 19:06:01 +02:00
|
|
|
sys.exit(9)
|
|
|
|
|
|
|
|
workers = mining_stats['workers']
|
|
|
|
|
|
|
|
# ethermine.org sometimes has caching errors. You can see data from other miner. Always check your rig name.
|
|
|
|
for worker in workers:
|
2017-06-27 21:53:50 +02:00
|
|
|
if workers[worker]['worker'] == miner:
|
2017-06-27 19:06:01 +02:00
|
|
|
hash_rate = workers[worker]['hashrate']
|
|
|
|
hash_rate = hash_rate.replace(" MH/s", "")
|
2017-06-27 21:53:50 +02:00
|
|
|
print("{}_{}.value %s".format(eth_address, miner, hash_rate));
|