mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-24 09:57:09 +00:00
Initial version
This commit is contained in:
parent
c371409ee5
commit
8ec655372a
1 changed files with 22 additions and 0 deletions
22
plugins/other/dell_5310n_health_
Executable file
22
plugins/other/dell_5310n_health_
Executable file
|
@ -0,0 +1,22 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# dell_5310n_health_ munin grabber script
|
||||
# 2008.07 by steve@kosada.com
|
||||
|
||||
destination=`basename $0 | sed 's/^dell_5310n_health_//g'`
|
||||
|
||||
tmpWeb=/tmp/`basename $0`
|
||||
wget -q -O $tmpWeb http://$destination/cgi-bin/dynamic/PrinterStatus.html
|
||||
|
||||
if [ "$1" = "config" ]; then
|
||||
echo "graph_title dell 5310n health: $destination"
|
||||
echo 'graph_vlabel count'
|
||||
echo 'graph_args --lower-limit 0'
|
||||
echo 'graph_category printer'
|
||||
|
||||
echo "toner.label Toner (percent)"
|
||||
else
|
||||
echo toner.value `grep '>Black\ Toner' $tmpWeb | perl -p -e 's/^.+>Black\ Toner[^0-9]+([0-9]+)\%<.+$/$1/'`
|
||||
fi
|
||||
|
||||
rm $tmpWeb
|
Loading…
Add table
Add a link
Reference in a new issue