1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-27 19:34:43 +00:00

plain old documentation

This commit is contained in:
Nils 2017-06-28 20:49:32 +02:00
parent 4f14867969
commit f117dddc11
2 changed files with 66 additions and 29 deletions

View file

@ -1,20 +1,38 @@
#!/usr/bin/env python
#
# etherscan_balance_
#
# Munin plugin to monitor your ethereum (ETH) balance.
# Account balance is queried via etherscan.io API (https://etherscan.io/apis).
#
# Author: Nils Knieling - https://github.com/Cyclenerd
# Licence: GPLv2
#
# USAGE
# etherscan_balance_<YOUR_PUBLIC_ETHEREUM_ADDRESS>
#
# EXAMPLE
# ln -s /usr/share/munin/plugins/etherscan_balance_ /etc/munin/plugins/etherscan_balance_0x3257bde8cf067ae6f1ddc0e4b140fe02e3c5e44f
#
"""
=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