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

check_zimbra.pl

Rating
3 votes
Favoured:
1
Current Version
0.1
Last Release Date
2010-01-11
Compatible With
  • Nagios 3.x
Hits
107032
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!
perl script intended as wrapper around the 'zmcontrol status' command provided by zimbra
This perl script is just a wrapper around the 'zmcontrol status' provided by zimbra.

I use this to check the zimbra status from the nagios server with the ssh remote check.

To work with nagios user you need something like this in your /etc/sudoers file :
nagios ALL=(zimbra) NOPASSWD:/opt/zimbra/bin/zmcontrol

check_zimbra.pl -h
Usage: check_zimbra.pl [options]
-s
stopped service are ignored until some daemon is faulty
-S
stopped service give warning state if a service is faulty
-C
stopped service give critical if a service is faulty
-e service1,service2,..
list of excluded services from monitoring
-d
enable debug mode
-h
display usage information

If you have some idea about improvement please send me any suggestion.
Reviews (2)
byabakusp, September 4, 2014
This checks the output of "zmcontrol status", so it detects an error when zimbra already fails in some way. I't goot at what it does and here is a fix for the change in 8.5 version:

diff check_zmstatus.pl check_zmstatus.pl.old
45a46
> # parse every line exept the first
47,50c48,52
}
> }
I think there is a problem with the exit codes.
The exit status of a Nagios plugin should be 0=OK, 1=WARNING, 2=CRITICAL, or 3=UNKNOWN, but if the plugin is not run as zimbra user or if the zmcontrol executable is not found the exit code is 0 (OK).