We’d like to configure two different notification groups for check_nt_disk. The first group we’d like to receive 80% warning alerts and the second group we’d like to get 90% critical alerts. Currently we’re doing this by configuring two different checks of the same disk (see below) Is there a way to accomplish this with only one check?
define service{
use generic-service ; Name of service template to use
host_name %hostname%
service_description DISK_C Warning
is_volatile 0
check_period 24x7
max_check_attempts 4
normal_check_interval 15
retry_check_interval 3
contact_groups Testing-1
notification_options w,r
notification_interval 15
notification_period 24x7
check_command check_nt_disk!C!80!90
}
define service{
use generic-service ; Name of service template to use
host_name %hostname%
service_description DISK_C Critical
is_volatile 0
check_period 24x7
max_check_attempts 4
normal_check_interval 15
retry_check_interval 3
contact_groups Testing-2
notification_options c,r
notification_interval 15
notification_period 24x7
check_command check_nt_disk!C!80!90
}