Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_ironport.pl
Current Version
1.0
Last Release Date
2013-01-10
Compatible With
- Nagios 3.x
Owner
Website
License
GPL
Hits
98958
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!
documentation can be found at http://check-ironport.urandom.at/cgi-bin/index.pl?menu=documentation
Reviews (2)
byhalfspawn, September 24, 2014
bugs noticed: check keySecondsUntilExpire returns alway ok (9999999> value).
Init $value to 9999999 at line #314 must be set inside the "if (grep" just bellow.
Best regard
Init $value to 9999999 at line #314 must be set inside the "if (grep" just bellow.
Best regard
good plugin.
bugs noticed:
around 342 line:
if ($o_category eq 'raidLastError')
{
if ($value eq 'No Errors')
should be
if ($o_category eq 'raidLastError')
{
if ($value eq 0)
since $value is a numeric, not a string.
bugs noticed:
around 342 line:
if ($o_category eq 'raidLastError')
{
if ($value eq 'No Errors')
should be
if ($o_category eq 'raidLastError')
{
if ($value eq 0)
since $value is a numeric, not a string.
Owner's reply
thanks for the report, I added the zero value to the check, since there are 3 possible values for 'everything is fine'
so: fixed in version 1.0