How Can I stop the email notifications. I am setting up a new server and getting tons of notifications. Wants to disable them for time being.
How Can I stop the email notifications. I am setting up a new server and getting tons of notifications. Wants to disable them for time being.
Click on "Process Info" in the left nav pane, and then "Disable Notifications", then "Commit".
in nagios.cfg, set enable_notifications=0 and restart nagios
You can also do it at a contact level, by disabling notifications for your Nagios contact. E.g.:
The other way to skin this cat is to use the host_notification_options and service_notification_options in the contact definition. Set them to
n
(none).You can also do this via NAGIOS's
command_file
named pipe, if you have that defined. The advantages of doing it this way are it's internal to NAGIOS, it can be programmed fromat
orcron
rather than requiring interaction with a web browser, and it doesn't require changing any of the config files.To disable notifications (on CentOS6 EPEL NAGIOS - other distributions may have the command_file configured elsewhere):
and to re-enable it later:
Set both:
to never instead of 24x7
You can also stop your mail server (
service postfix stop
) on the Nagios server, if you are relaying through the mail server on localhost where Nagios is installed. Then you can dopostsuper -d ALL
to delete all mails sitting inmailq
.