Nagios Core 4.3.4 - retry_interval is getting ignored
Posted: Tue Jul 31, 2018 8:02 am
Hi,
I've configured retry_interval to check the host status every minute until host state becomes HARD. However nagios is only performing the checks at the check_interval period only.
Here is my Host Definition.
I am using NCPA passive checks and nagios core 4.3.4.
I've not changed interval_length which is set to 60, so not sure why checks are not getting carried out every mintue until state becomes HARD.
Thanks
I've configured retry_interval to check the host status every minute until host state becomes HARD. However nagios is only performing the checks at the check_interval period only.
Here is my Host Definition.
Code: Select all
define host {
name passive-host ; The name of this host template
active_checks_enabled 0 ; Active service checks are disabled
passive_checks_enabled 1 ; Passive service checks are enabled
flap_detection_enabled 1 ; Flap detection is enabled
check_freshness 1 ; Freshess checks are enabled
freshness_threshold 360 ; Set the fresshness threshold to 6 minutes
check_period 24x7 ; Send host notifications at any time
max_check_attempts 3 ; Re-check the service up to 3 times in order to determine its final (hard) state
check_interval 5 ; Check the service every 5 minutes under normal conditions
retry_interval 1 ; Re-check the service every minute until a hard state can be determined
contact_groups admins,view_only ; Notifications get sent out to everyone in the 'admins' group
check_command check-host-alive ; Default command to check remote hosts
notifications_enabled 0 ; Host notifications are disabled
notification_options d,u,r ; Send notifications about warning, unknown, critical, and recovery events
notification_interval 60 ; Re-notify about service problems every hour
notification_period 24x7 ; Notifications can be sent out at any time
register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE!
}
I am using NCPA passive checks and nagios core 4.3.4.
I've not changed interval_length which is set to 60, so not sure why checks are not getting carried out every mintue until state becomes HARD.
Thanks