Category: Nagios
-
NagiosTV for Nagios 4
NagiosTV is an alternate user interface (UI) for the Nagios open source monitoring system. This UI is designed to be viewed on a TV or on your desktop to quickly see if all your services are up or down. This is not meant to be a replacement for the Nagios web interface. This version adds…
-
Shut off Nagios Notifications
$ cat shh.sh #!/bin/sh now=`date +%s` commandfile=’/var/lib/nagios3/rw/nagios.cmd’ echo "[%lu] DISABLE_NOTIFICATIONS\n" $now > $commandfile Enabling notifications across the board is similar: $ cat enable-notifications.sh #!/bin/sh now=`date +%s` commandfile=’/var/lib/nagios3/rw/nagios.cmd’ echo "[%lu] ENABLE_NOTIFICATIONS\n" $now > $commandfile
-
NagiosTV 0.2
Watch one or more Nagios servers on a wall mounted TV (or your desktop) Here is a TV watching 5 Nagios servers at once:
-
How to prevent multple “CHECK_NRPE: Socket timeout after 10 seconds” alerts
In server monitoring with Nagios, nobody likes to get paged any more than necessary. This article will show you how to prevent multiple “CHECK_NRPE: Socket timeout after 10 seconds” alerts every time a host goes down. In this circumstance, I’m not trying to get NRPE working. I’m trying to shut it up when there is…