monitoring: Increase time before a check result is marked as late
refs #8378
This commit is contained in:
parent
9667445e47
commit
a569b19153
|
@ -88,8 +88,8 @@ class HoststatusQuery extends IdoQuery
|
|||
hs.retry_check_interval
|
||||
ELSE
|
||||
hs.normal_check_interval
|
||||
END * 60
|
||||
+ CEIL(hs.execution_time) * 2
|
||||
END * 60 * 2
|
||||
+ CEIL(hs.execution_time)
|
||||
END',
|
||||
'host_no_more_notifications' => 'hs.no_more_notifications',
|
||||
'host_normal_check_interval' => 'hs.normal_check_interval',
|
||||
|
|
|
@ -205,8 +205,8 @@ class ServicestatusQuery extends IdoQuery
|
|||
ss.retry_check_interval
|
||||
ELSE
|
||||
ss.normal_check_interval
|
||||
END * 60
|
||||
+ CEIL(ss.execution_time) * 2
|
||||
END * 60 * 2
|
||||
+ CEIL(ss.execution_time)
|
||||
END',
|
||||
'service_no_more_notifications' => 'ss.no_more_notifications',
|
||||
'service_normal_check_interval' => 'ss.normal_check_interval',
|
||||
|
|
Loading…
Reference in New Issue