mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-28 04:36:06 -04:00
CheckStatistics: Fix incorrect check interval detection
This commit is contained in:
parent
a7e76f6f44
commit
ab2485332a
1 changed files with 1 additions and 1 deletions
|
|
@ -337,7 +337,7 @@ SVG;
|
|||
return $this->object->check_interval;
|
||||
}
|
||||
|
||||
$delay = ($this->object->state->execution_time + $this->object->state->latency) / 1000 + 5;
|
||||
$delay = ($this->object->state->execution_time + $this->object->state->latency / 1000) + 5;
|
||||
$interval = $this->object->state->next_check->getTimestamp()
|
||||
- $this->object->state->last_update->getTimestamp();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue