Home Directory Plugins Hardware Network Gear Cisco Ironport plugin with perfdata

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

Ironport plugin with perfdata

Rating
1 vote
Favoured:
0
Hits
96702
Files:
FileDescription
check_ironportupdated check_ironport with perfdata (2009-06-25)
Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
This is a script to check RAM, CPU, QUEUE, Work Queue, and Mail Rate and other important parameters on Ironport Appliances and it returns performance data for graphing the results.
This is an update to the plugin made by Claudio Saavedra and updated by Steven Geerts.

The only difference is that I modified the plugin to output performance data so results can be graphed using a graphing system
Reviews (1)
Hi,
Good plugin !!
I added the feature to get log_used gauge and also "rates" from status file.
The parameter should be rates_xxx where xxx is the rate you want to get.
I don't care about warning and critical, I need rates only for my graphs.

This is the result of the diff between your and my version.
109a110,112
> # delete EOL in XML key
> sed ':a;N;$!ba;s/\"\n/\"/g' ${STATUSFILE} > ${STATUSFILE}.tmp && mv ${STATUSFILE}.tmp ${STATUSFILE}
>
297,298c300,332
IPORTPAR=`grep log_used $STATUSFILE | cut -d\" -f 4`
> if [ $IPORTPAR -ge $PAR_WARN ]; then
> if [ $IPORTPAR -ge $PAR_CRIT ]; then
> exitstatus=${STATE_CRITICAL}
> echo "LOG DISK SPACE CRITICAL: $IPORTPAR%" "| RESULT=$IPORTPAR%;$PAR_WARN;$PAR_CRIT;"
> else
> exitstatus=${STATE_WARNING}
> echo "LOG DISK SPACE WARNING: $IPORTPAR%" "| RESULT=$IPORTPAR%;$PAR_WARN;$PAR_CRIT;"
> fi
> else
> exitstatus=${STATE_OK}
> echo "LOG DISK SPACE OK: $IPORTPAR%" "| RESULT=$IPORTPAR%;$PAR_WARN;$PAR_CRIT;"
> fi
> ;;
> rates_*)
> SEARCH=`echo -n $ARGS | cut -c 7-`
> IPORTPAR1=`grep $SEARCH $STATUSFILE | grep rate | cut -d\" -f 4`
> IPORTPAR5=`grep $SEARCH $STATUSFILE | grep rate | cut -d\" -f 6`
> IPORTPAR15=`grep $SEARCH $STATUSFILE | grep rate | cut -d\" -f 8`
> if [ "$IPORTPAR1" == "" ]; then
> exitstatus=${STATE_UNKNOWN}
> echo "Rate $SEARCH UNKNOWN : unable to get data from Ironport, check variable name"
> else
> # Return is always OK for rates !!
> exitstatus=${STATE_OK}
> echo "Rate $SEARCH returns:"
> echo "Last_1_Min = "$IPORTPAR1
> echo "Last_5_Min = "$IPORTPAR5
> echo "Last_15_Min = "$IPORTPAR15
> echo "| Last_1_min=$IPORTPAR1; Last_5_Min=$IPORTPAR5; Last_15_Min=$IPORTPAR15"
> fi
> ;;