- Repository
- Munin (2.0)
- Last change
- 2018-08-14
- Family
- contrib
- Language
- Shell
- License
- GPL-2.0-only
foldingathome_wu
Name
foldingathome_wu - Plugin to graph the number of working units submitted to folding@home
Configuration
No configuration
Authors
Unknown author
License
GPLv2
Bugs
Plugin has capabilities “autoconf”, but “autoconf” seems broken.
Magic Markers
#%# family=contrib
#!@@GOODSH@@
# -*- sh -*-
: <<EOF
=head1 NAME
foldingathome_wu - Plugin to graph the number of working units
submitted to folding@home
=head1 CONFIGURATION
No configuration
=head1 AUTHORS
Unknown author
=head1 LICENSE
GPLv2
=head1 BUGS
Plugin has capabilities "autoconf", but "autoconf" seems broken.
=head1 MAGIC MARKERS
#%# family=contrib
=cut
EOF
statefile=$MUNIN_PLUGSTATE/plugin-fah_wu.state
if [ "$1" = "config" ]; then
echo 'graph_title Folding@Home Working Units submited'
echo 'graph_args -l 0 --base 1000'
echo 'graph_vlabel WU done'
echo 'wu.label WU'
echo 'wu.type GAUGE'
exit 0
fi
wu=$(wget "http://vspx27.stanford.edu/cgi-bin/main.py?qtype=userpage&username=8d" -q -t 1 -T 5 -O - | grep -E -A 2 "<TD> WU</TD>" | grep "<b>" | sed 's/.*<b> \([0-9]*\) .*/\1/')
if [ -z "$wu" ]; then
if [ -f "$statefile" ]; then
echo "wu.value $(cat "$statefile")"
fi
else
echo "$wu" > "$statefile"
echo "wu.value $wu"
fi