File: foldingathome_rank.in

package info (click to toggle)
munin 2.0.76-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,068 kB
  • sloc: perl: 11,684; java: 1,924; sh: 1,632; makefile: 636; javascript: 365; python: 267
file content (35 lines) | stat: -rw-r--r-- 910 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!@@GOODSH@@
# -*- sh -*-
#
# Folding@Home Rank
#
# Parameters:
#
#   config   (required)
#   autoconf (optional - only used by munin-config)
#
# Magic markers (optional - used by munin-config and some installation
# scripts):
#%# family=contrib

statefile=$MUNIN_PLUGSTATE/plugin-fah_rank.state

if [ "$1" = "config" ]; then
    echo 'graph_title Folding@Home Rank'
    echo 'graph_args -l 0 --base 1000'
    echo 'graph_vlabel rank'
    echo 'rank.label rank'
    echo 'rank.type GAUGE'
    echo 'rank.max 12000'
    exit 0
fi

rank=$(wget "http://vspx27.stanford.edu/cgi-bin/main.py?qtype=userpage&username=8d" -q -t 1 -T 5 -O - | grep -E "<TD> <font size=3> <b> [0-9]* </b> of [0-9]* </font></TD>" | sed 's/.*<font size=3> <b> \([0-9]*\) .*/\1/')
if [ -z "$rank" ]; then
	if [ -f "$statefile" ]; then
		echo "rank.value $(cat "$statefile")"
	fi
else
	echo "$rank" >"$statefile"
	echo "rank.value $rank"
fi