mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 23:34:08 +02:00
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
|
hs.retry_check_interval
|
||||||
ELSE
|
ELSE
|
||||||
hs.normal_check_interval
|
hs.normal_check_interval
|
||||||
END * 60
|
END * 60 * 2
|
||||||
+ CEIL(hs.execution_time) * 2
|
+ CEIL(hs.execution_time)
|
||||||
END',
|
END',
|
||||||
'host_no_more_notifications' => 'hs.no_more_notifications',
|
'host_no_more_notifications' => 'hs.no_more_notifications',
|
||||||
'host_normal_check_interval' => 'hs.normal_check_interval',
|
'host_normal_check_interval' => 'hs.normal_check_interval',
|
||||||
|
@ -205,8 +205,8 @@ class ServicestatusQuery extends IdoQuery
|
|||||||
ss.retry_check_interval
|
ss.retry_check_interval
|
||||||
ELSE
|
ELSE
|
||||||
ss.normal_check_interval
|
ss.normal_check_interval
|
||||||
END * 60
|
END * 60 * 2
|
||||||
+ CEIL(ss.execution_time) * 2
|
+ CEIL(ss.execution_time)
|
||||||
END',
|
END',
|
||||||
'service_no_more_notifications' => 'ss.no_more_notifications',
|
'service_no_more_notifications' => 'ss.no_more_notifications',
|
||||||
'service_normal_check_interval' => 'ss.normal_check_interval',
|
'service_normal_check_interval' => 'ss.normal_check_interval',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user