Disable notifications
Posted: Wed Apr 15, 2020 3:34 am
Hello,
I have disabled notifications for service/host (notifications_enabled = 0), but nagios still sends. Below is the configuration that I applied:
How can I overcome this issue?
thank you.
I have disabled notifications for service/host (notifications_enabled = 0), but nagios still sends. Below is the configuration that I applied:
Code: Select all
define host {
host_name test.example.com
address test.example.com
notifications_enabled 0
use linux-server
check_command check_http_
register 1
}
define service{
use local-service ; Name of service template to use
host_name test.example.com
service_description TEST
notification_options w,u,c,r ; Send notifications about warning, unknown, critical, and recovery events
notification_interval 10 ; Re-notify about service problems every 10 minutes
check_command check_http_
notifications_enabled 0
}thank you.