1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 18:38:30 +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,19 +1,38 @@
#!/usr/bin/env python #!/usr/bin/env python
# """
# ethermine_hashrate_ =head1 NAME
#
# Munin plugin to monitor your ethermine.org hashrate. ethermine_hashrate_ - Munin plugin to monitor your ethermine.org hashrate (MH/s)
#
# Author: Nils Knieling - https://github.com/Cyclenerd =head1 CONFIGURATION
# Licence: GPLv2
# ethermine_hashrate_<YOUR_PUBLIC_ETHEREUM_ADDRESS>_<YOUR_RIG_NAME>
# USAGE
# ethermine_hashrate_<YOUR_PUBLIC_ETHEREUM_ADDRESS>_<YOUR_RIG_NAME> =head1 SYNOPSIS
#
# EXAMPLE ln -s /usr/share/munin/plugins/ethermine_hashrate_ \
# ln -s /usr/share/munin/plugins/ethermine_hashrate_ /etc/munin/plugins/ethermine_hashrate_3257bde8cf067ae6f1ddc0e4b140fe02e3c5e44f_mine /etc/munin/plugins/ethermine_hashrate_3257bde8cf067ae6f1ddc0e4b140fe02e3c5e44f_mine
#
=head1 DESCRIPTION
This plugin shows the ethermine.org mining pool hashrate (MH/s) of a given ethereum address and rig name.
Hashrate is queried via ethermine.org API L<https://ethermine.org>.
=head1 VERSION
0.0.1
=head1 AUTHOR
L<Nils Knieling|https://github.com/Cyclenerd>
=head1 LICENSE
GPLv2
=cut
"""
from __future__ import print_function from __future__ import print_function

View file

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