mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
25 lines
918 B
Bash
Executable File
25 lines
918 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# oki_c5500_pages_ munin grabber script
|
|
# 2008.03 by steve@kosada.com
|
|
|
|
destination=`basename $0 | sed 's/^oki_c5500_pages_//g'`
|
|
password='foo'
|
|
|
|
if [ "$1" = "config" ]; then
|
|
echo "graph_title oki c5500 pages: $destination"
|
|
echo 'graph_vlabel count'
|
|
echo 'graph_args --lower-limit 0'
|
|
echo 'graph_category printing'
|
|
|
|
echo "tray1.label Tray 1"
|
|
echo "tray2.label Tray 2"
|
|
echo "total.label Total"
|
|
else
|
|
infopage=`wget -q -O - http://root:$password@$destination/printer/printerinfo_top.htm | perl -p -e 's/\n/ /m'`
|
|
|
|
echo tray1.value `echo $infopage | perl -p -e 's/^.+Tray\ 1\ Page\ Count\:\ \<\/TD\>\<TD\ WIDTH\=\"94\"\>([0-9]+)\<.+$/$1/'`
|
|
echo tray2.value `echo $infopage | perl -p -e 's/^.+Tray\ 2\ Page\ Count\:\ \<\/TD\>\<TD\ WIDTH\=\"94\"\>([0-9]+)\<.+$/$1/'`
|
|
echo total.value `echo $infopage | perl -p -e 's/^.+Total\ Page\ Count\:\ \<\/TD\>\<TD\ WIDTH\=\"94\"\>([0-9]+)\<.+$/$1/'`
|
|
fi
|