Tag Archives: nrpe

Nagios and Exim queue size

A simple script to check Exim queue size for Nagios NRPE: #!/bin/bash #arg1 = warning count #arg2 = critical count if [ -z “$1” ] || [ -z “$2” ] then         echo “Usage: ${0} warningcount criticalcount” else         if … Continue reading

Posted in Computer, Linux | Tagged , , , , | Leave a comment