diff --git a/plugins/other/toshiba_5520c_scan_ b/plugins/other/toshiba_5520c_scan_ new file mode 100755 index 00000000..829d0c55 --- /dev/null +++ b/plugins/other/toshiba_5520c_scan_ @@ -0,0 +1,28 @@ +#!/bin/bash +# +# toshiba_5520c_scan_ munin grabber script +# 2009.01 by steve@kosada.com + +destination=`basename $0 | sed 's/^toshiba_5520c_scan_//g'` + +if [ "$1" = "config" ]; then + echo "graph_title Toshiba 5520C: Pages Scanned" + echo 'graph_vlabel Pages' + echo 'graph_args --lower-limit 0' + echo 'graph_category printer' + + echo "scanFullColor.label Full Color" + echo "scanFullColor.draw AREA" + + echo "scanTwinColor.label Twin Color" + echo "scanTwinColor.draw STACK" + + echo "scanBlack.label Black" + echo "scanBlack.draw STACK" +else + infopage=`wget -q -O - http://$destination:8080/TopAccess/Counter/TotalCount/List.htm | dos2unix | perl -p -e 's/\n/ /m'` + + echo scanFullColor.value `echo $infopage | perl -p -e 's/^.+\Scan Counter\<\/B\>.+?\{Full\ Color[^}]+\,([0-9]+)\}.+$/$1/'` + echo scanTwinColor.value `echo $infopage | perl -p -e 's/^.+\Scan Counter\<\/B\>.+?\{Twin\ Color[^}]+\,([0-9]+)\}.+$/$1/'` + echo scanBlack.value `echo $infopage | perl -p -e 's/^.+\Scan Counter\<\/B\>.+?\{Black[^}]+\,([0-9]+)\}.+$/$1/'` +fi