Nagios SNMP Plugins

Nagios SNMP Plugins package contains two plugins to be used with Nagios.
Download

Nagios SNMP Plugins Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL
  • Price:
  • FREE
  • Publisher Name:
  • Henning P. Schmiedehausen
  • Publisher web site:
  • http://henning.schmiedehausen.org/eyewiki/Wiki.jsp?page=NagiosSnmpPlugins

Nagios SNMP Plugins Tags


Nagios SNMP Plugins Description

Nagios SNMP Plugins package contains two plugins to be used with Nagios. Nagios SNMP Plugins package contains two plugins to be used with Nagios. They should still work with NetSaint, but as this is now really ancient, I don't support Netsaint any longer. You also need the Net SNMP Daemon in a reasonable new version.· Nagios· Net-SNMPDWhat can these plugins do? NET-SNMP gives you an unique feature: It makes checks for running processes and/or disk size configurable in the SNMP daemon and queryable via SNMP. So you can do proc syslogdproc klogddisk / 5%disk /usr 10%in your snmpd.local.conf and have the snmp daemon check that you always have free space on your root and usr file system and that you have syslogd and klogd processes running. Querying this from a monitoring tool however, is very cumbersome. You need to check what disks are there, then query error status. These two plugins do all the work for you. Where do the plugins run? Well, on Linux. That's where I wrote them. They should compile on any other *x like Operating system, too. If you get them to compile, please let me know. I compiled and tested these plugins on · RedHat Linux 9 · Fedora Core 1,3-6 · RedHat Enterprise Linux 3-5 · CentOS 5 using various nagios versions between 1.2 and 2.9. Users reported success on various SuSE Linux and SLES versions. Compilation on *BSD seems to be possible if you have a GNU getline library.How do I build and install? Unpack the distribution. Run aclocalautoheaderautomake --add-missingautoconf./configuremakeor simply ./build.shYou should now have two binaries: check_snmp_disk and check_snmp_proc. Copy them into your Nagios plugins directory. How do I configure the plugins? Using Nagios there are two ways to configure the plugins: The old way: add the following two lines to your /etc/nagios/command.cfg: command=/usr/lib/nagios/plugins/check_snmp_disk -H $HOSTADDRESS$ -C $ARG1$command=/usr/lib/nagios/plugins/check_snmp_proc -H $HOSTADDRESS$ -C $ARG1$Replace /usr/lib/nagios/plugins/ with the directory where you copied the binaries! The new way: add the following lines to your /etc/nagios/checkcommands.cfg: # 'check_snmp_disk' command definitiondefine command { command_name check_snmp_disk command_line $USER1$/check_snmp_disk -H $ARG1$ -C $USER3$}# 'check_snmp_proc' command definitiondefine command { command_name check_snmp_proc command_line $USER1$/check_snmp_proc -H $ARG1$ -C $USER3$}The Community password should be defined in your resources.cfg config file. If you don't use $USER3$, adjust the definition above. How do I use the plugins? First, select something to check. You find a detailed description in man snmpd.conf(5). I, e.g. use (in /etc/snmpd/snmpd.local.conf under RedHat/Fedora): ## SNMP checked disks#disk / 5%disk /usr 5%disk /var 10%disk /boot 1%disk /mnt/disk0 10%## SNMP checked Processes#proc crondproc ntpdproc sshdproc syslogdproc klogdWhich assures that my disks do not fill up and that I have the most important processes running on my boxes.You need a configured snmpd with at least a read community configured.Now try your configuration: Run the disk plugin manually: check_snmp_disk -H host to check -C community It should report either Checked xxx disks. and a return code of 0 if everything is fine (xxx should be the number of disks configured in the snmp.local.conf file), or < diskname >: less than xxx% free (= yyy%) (devicename) and a return code of 2 if there is a problem (diskname and devicename depend on the disk, xxx is the threshold configured and yyy is the actual free space).The same testing can be done with the check_snmp_proc plugin. Now configure your monitor program to monitor a host (in hosts.cfg):The old way: service=DISK;0;24x7;3;5;1;admins;120;24x7;1;1;0;;check_snmp_disk!''community''service=PROC;0;24x7;3;5;1;admins;120;24x7;1;1;0;;check_snmp_proc!''community''where community is your read-community from above) and you are set. The ;0;24x7;3;5;1;admins;120;24x7;1;1;0;; parameters should be adjusted to match your configuration.The new way: # Service definitiondefine service { use generic-service host_name myhost service_description Disk Space check_command check_snmp_disk!myhost}# Service definitiondefine service { use generic-service host_name myhost service_description Running processes check_command check_snmp_proc!myhost}You should replace myhost with your host.What's New in This Release:· This release adds an '-l' option to list checked disks and processes in the output.


Nagios SNMP Plugins Related Software