Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_postqueue.sh
Current Version
1.0.2
Last Release Date
2010-04-16
Compatible With
- Nagios 1.x
- Nagios 2.x
- Nagios 3.x
Owner
License
GPL
Hits
101650
Files:
File | Description |
---|---|
check_postqueue.sh | check_postqueue.sh |
Features:
- check length of Postfix queue
- specify limits for WARNING and CRITICAL
- specify address to count
- exclude something from taking it into account
Example usage: ./check_postqueue.sh -w 50 -c 100 -f '!MAILER-DAEMON'
- check length of Postfix queue
- specify limits for WARNING and CRITICAL
- specify address to count
- exclude something from taking it into account
Example usage: ./check_postqueue.sh -w 50 -c 100 -f '!MAILER-DAEMON'
Reviews (4)
Hi all,
This plugin works perfectly. Why not including the perf data posted in the previous reviews?
Regards,
Luismi
This plugin works perfectly. Why not including the perf data posted in the previous reviews?
Regards,
Luismi
bytom.molin, July 26, 2012
Change the last rows to this to get queue statistics:
queue=`getQueue`
LABEL="| mail_queue=$queue;$warning;$critical;0;"
if [ "$queue" -ge "$critical" ]; then
echo "CRITICAL - $queue $LABEL"
exit 2
elif [ "$queue" -ge "$warning" ]; then
echo "WARNING - $queue $LABEL"
exit 1
else
echo "OK - $queue $LABEL"
exit 0
fi
queue=`getQueue`
LABEL="| mail_queue=$queue;$warning;$critical;0;"
if [ "$queue" -ge "$critical" ]; then
echo "CRITICAL - $queue $LABEL"
exit 2
elif [ "$queue" -ge "$warning" ]; then
echo "WARNING - $queue $LABEL"
exit 1
else
echo "OK - $queue $LABEL"
exit 0
fi
Hi,
here is my diff for graphing... Maybe the package can be updated?
112,113d111
ret=1
119c119,120
stat="OK"
> ret=0
120a122,125
>
> echo "POSTQUEUE $stat - Number of queued messages: $queue |queue_size=$queue;$warning;$critical;0"
>
> exit $ret
here is my diff for graphing... Maybe the package can be updated?
112,113d111
ret=1
119c119,120
stat="OK"
> ret=0
120a122,125
>
> echo "POSTQUEUE $stat - Number of queued messages: $queue |queue_size=$queue;$warning;$critical;0"
>
> exit $ret
My modification of check_postqueue.sh adds:
* possible to pass config_dir to postqueue
* queue size output usable for graphs
* possible to pass config_dir to postqueue
* queue size output usable for graphs
Owner's reply
Can we see these modifications?