From c0e324fd46d4790da7997dd32383201716442474 Mon Sep 17 00:00:00 2001 From: ibering Date: Thu, 26 Oct 2023 17:09:04 +0200 Subject: [PATCH] Services index view: missing host status field 'is_hardstate' added --- src/Controller/ServicesController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Controller/ServicesController.php b/src/Controller/ServicesController.php index 5fa331b86f..2718a4c564 100644 --- a/src/Controller/ServicesController.php +++ b/src/Controller/ServicesController.php @@ -249,6 +249,7 @@ public function index() { $HoststatusFields = new HoststatusFields($this->DbBackend); $HoststatusFields ->currentState() + ->isHardstate() ->isFlapping() ->lastStateChange() ->lastHardStateChange();