1822356 Members
5370 Online
109642 Solutions
New Discussion юеВ

Printer monitoring tool

 
nandam
Frequent Advisor

Printer monitoring tool

Hi can y ou please give me printer monitoring tool. we have around 147 HP Printerd we have to monitor printer qu... and printer states.

Thanks
Nandam
4 REPLIES 4
Jonathan Fife
Honored Contributor

Re: Printer monitoring tool

The only 'tools' I use are different versions of the lpstat command --

lpstat -p | grep disabled
lpstat -o | grep -v bytes

etc...

'man lpstat' and look at the different arguments.
Decay is inherent in all compounded things. Strive on with diligence
Rick Garland
Honored Contributor

Re: Printer monitoring tool

What kind of monitoring are you looking for?
Lots of ideas for monitoring.

Attached is 1 idea for monitoring. Will check the print queues for print jobs that are over a specified age.

The attached script is looking for jobs over 6 hrs old. You can change to whatever you like. Do check the email address. Change to your's.

Make whatever changes you like.



Rick Garland
Honored Contributor

Re: Printer monitoring tool

What occurred to me as I was posting this, depending on the types of printers you could snmpwalk for specific values to get such items as "out of paper", "offline" "paper jam", etc.

The Web JetAdmin product can provide this and more. Integrates with HPSIM.

Again, depends on the printer types

Geoff Wild
Honored Contributor

Re: Printer monitoring tool

Here's a script I use called lpst:


#!/bin/sh
#
# check printer status
# Geoff Wild

if [ $# -lt 1 -o \( $# -gt 1 -a $# -lt 4 \) ]
then
echo "Usage:"
echo "lpst \"printer\""
echo "Example:"
echo "lpst W052"
exit 1
fi
echo " "
/usr/sbin/ping $1 -n 2
echo " "
lpstat -p$1 -v$1
echo " "
echo "Output Requests"
echo "-----------------------------------------------------------"
lpstat -o$1
echo " "
lpstat -r
echo " "

Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.