monitoring: Increase time before a check result is marked as late

refs #8378
This commit is contained in:
Eric Lippmann 2015-09-07 11:12:25 +02:00
parent 9667445e47
commit a569b19153
2 changed files with 4 additions and 4 deletions

View File

@ -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',

View File

@ -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',