Build precise queries to find exactly what you need
Press ESC to close
Your review has been submitted and is pending approval.
The script returns the length of Postfix queue by parsing output of postqueue.
Current Version
1.0.2
Last Release Date
2010-04-16
Owner
Silver Salonen
License
GPL
Compatible With
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'
Hi all, This plugin works perfectly. Why not including the perf data posted in the previous reviews? Regards, Luismi
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
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
My modification of check_postqueue.sh adds: * possible to pass config_dir to postqueue * queue size output usable for graphs
Can we see these modifications?
You must be logged in to submit a review.
To:
From: