1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 18:38:30 +00:00
Munin-Contrib/plugins/ethereum/etherscan_balance_
2017-06-28 20:49:32 +02:00

90 lines
2.2 KiB
Python
Executable file

#!/usr/bin/env python
"""
=head1 NAME
etherscan_balance_ - Munin plugin to monitor your ethereum (ETH) balance
=head1 CONFIGURATION
etherscan_balance_<YOUR_PUBLIC_ETHEREUM_ADDRESS>
=head1 SYNOPSIS
ln -s /usr/share/munin/plugins/etherscan_balance_ \
/etc/munin/plugins/etherscan_balance_0x3257bde8cf067ae6f1ddc0e4b140fe02e3c5e44f
=head1 DESCRIPTION
This plugin shows the balance (ETH) of a given ethereum address.
Account balance is queried via etherscan.io API L<https://etherscan.io/apis>.
=head1 VERSION
0.0.1
=head1 AUTHOR
L<Nils Knieling|https://github.com/Cyclenerd>
=head1 LICENSE
GPLv2
=cut
"""
from __future__ import print_function
import os
import sys
import urllib2
import socket
import json
command = ''
if len(sys.argv) > 1:
command = sys.argv[1]
api_action, eth_address = sys.argv[0].split("_")[1:]
if not eth_address:
print("The filename of this plugin (or its symlink) should follow this pattern: "
"'etherscan_balance_<YOUR_PUBLIC_ETHEREUM_ADDRESS>'", file=sys.stderr)
sys.exit(9)
if command == 'config':
print("graph_title ETH {}".format(eth_address))
print("graph_title Ethereum Address {}".format(eth_address))
print("graph_info Ethereum Account Balance for Address {}".format(eth_address))
print("graph_title Ethereum Balance")
print("graph_title htc")
print("{}.label ETH".format(eth_address))
sys.exit(0)
ethercan_balance_api_url = 'https://api.etherscan.io/api?module=account&action=balance&tag=latest&address=' + eth_address
etherscan_req = urllib2.Request(ethercan_balance_api_url)
# User-Agent to bypass Cloudflare
etherscan_req.add_header('User-Agent', 'Etherscan Munin Plugin/1.0')
try:
etherscan_balance_raw = urllib2.urlopen(etherscan_req, timeout=1.5 )
except IOError as exc:
print("Failed to request etherscan.io API: {}".format(exc), file=sys.stderr)
try:
etherscan_balance = json.load(etherscan_balance_raw)
except ValueError:
print("Failed to parse JSON responce.", file=sys.stderr);
sys.exit(9)
try:
float(etherscan_balance['result'])
except:
print("JSON result error!", file=sys.stderr);
sys.exit(9)
eth = float(etherscan_balance['result']) / 1000000000000000000
print("{}.value {:.2f}".format(eth_address, eth));