Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

AIX Check Errpt - 2

Rating
1 vote
Favoured:
0
Hits
100820
Files:
FileDescription
check_errptthe script
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
Checks for new error reports using a shell script.
This script checks for new error reports since last time run and can be \"triggered\" by nagios. (wrap it in a ssh shell for security)

I use the following command definition:
$USER1$/check_by_ssh -t 25 -H $HOSTADDRESS$ -l admin -C \'$USER1$/check_errpt\'

For the service definition you don\'t want to configure any retry\'s since it check for new reports since last time run.
Max. Check Attempts=1
Reviews (1)
I had to make some changes, to make this work - if you try this modified version, please remember to delete the tmp files created previously by the script.

#!/bin/bash
# script that checks for new errpt
#
errptlast=/tmp/errptlast
errpttmp=/tmp/errpttmp
admin=root@localhost
#
# check if first run
errpt | egrep -v '^IDENTIFIER' > $errpttmp
if [ ! -f $errptlast ] ; then
# first run generate a timestamp - 1 hour to fake last run
#phour=$((`date +%H` - 2))
phour=$((`date +%k` - 2))
#date +%m%d$phour%M%y > $errptlast
date +%m%d%H%M%y > $errptlast
fi
lastts=`cat $errptlast`
count=`errpt -s "$lastts" | egrep -v '^IDENTIFIER' | wc -l`
exit1=$?
count=`echo $count`
countcrit=`errpt -s "$lastts" | egrep -v '^IDENTIFIER' | sed -n 's!.* \(P\) .*!\1!p' | wc -l`
exit2=$?
countcrit=`echo $countcrit`
if [ "$count" -ge 1 ] ; then
# determine level
errpt -A -D -s "$lastts" | mail -s "$count new error reports of which $countcrit critical on `hostname` since $lastts" $admin
#date +%m%d%H%M%y > $errptlast
date +%m%d%H%M%y > $errptlast
if [ "$countcrit" -ge 1 ] ; then
echo "$count new error reports of which $countcrit critical generated since $lastts"
exit 2
else
echo "$count New error reports generated since $lastts"
exit 1
fi
fi
if [ "$count" == 0 ] && [ "$countcrit" == 0 ] && [ "$exit1" == 0 ] && [ "$exit2" == 0 ] ; then
echo "No new Error Reports since $lastts"
exit 0
fi
echo "Errpt Check failed"
exit 3