mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Initial version
This commit is contained in:
parent
0bf4041d95
commit
3c299b3d59
24
plugins/other/oki_c5500_pages_
Executable file
24
plugins/other/oki_c5500_pages_
Executable file
@ -0,0 +1,24 @@
|
||||
#!/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 printer'
|
||||
|
||||
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
|
Loading…
Reference in New Issue
Block a user