mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-24 09:57:09 +00:00
plain old documentation
This commit is contained in:
parent
4f14867969
commit
f117dddc11
2 changed files with 66 additions and 29 deletions
|
@ -1,19 +1,38 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
#
|
||||
# ethermine_hashrate_
|
||||
#
|
||||
# Munin plugin to monitor your ethermine.org hashrate.
|
||||
#
|
||||
# Author: Nils Knieling - https://github.com/Cyclenerd
|
||||
# Licence: GPLv2
|
||||
#
|
||||
# USAGE
|
||||
# ethermine_hashrate_<YOUR_PUBLIC_ETHEREUM_ADDRESS>_<YOUR_RIG_NAME>
|
||||
#
|
||||
# EXAMPLE
|
||||
# ln -s /usr/share/munin/plugins/ethermine_hashrate_ /etc/munin/plugins/ethermine_hashrate_3257bde8cf067ae6f1ddc0e4b140fe02e3c5e44f_mine
|
||||
#
|
||||
"""
|
||||
=head1 NAME
|
||||
|
||||
ethermine_hashrate_ - Munin plugin to monitor your ethermine.org hashrate (MH/s)
|
||||
|
||||
=head1 CONFIGURATION
|
||||
|
||||
ethermine_hashrate_<YOUR_PUBLIC_ETHEREUM_ADDRESS>_<YOUR_RIG_NAME>
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
ln -s /usr/share/munin/plugins/ethermine_hashrate_ \
|
||||
/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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue