It looks as if your templates are currently configured for 5 minutes in both the linux-server and generic-service templates. That's good.
However, the yavinenana host is configured for 30 minutes for it's notification_interval:
Code: Select all
define host{
use linux-server
host_name yavinenana
alias server
address yavinenana.yaroscloud.com
max_check_attempts 5
check_period 24x7
notification_interval 30
notification_period 24x7
check_command check_http
}
This will over-write the linux-server template's 5-minute setting. Effectively making the yavinenana host's notifications occur every ~30 minutes.
If you'd like this host to instead inherit the linux-server's 5-minute notification_interval setting, exclude notification_interval from your host object.