From 5afc54d973a5a9b8217ba23a9a2db767638130f1 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 12 Apr 2016 13:23:13 +0200 Subject: [PATCH] monitoring: Select instance_name in multi-select views Before, if all command transports are configured to filter for a specific instance, no command would have been sent to Icinga. --- modules/monitoring/application/controllers/HostsController.php | 3 ++- .../monitoring/application/controllers/ServicesController.php | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/monitoring/application/controllers/HostsController.php b/modules/monitoring/application/controllers/HostsController.php index 12017657c..17969df8d 100644 --- a/modules/monitoring/application/controllers/HostsController.php +++ b/modules/monitoring/application/controllers/HostsController.php @@ -49,7 +49,8 @@ class HostsController extends Controller 'host_obsessing', 'host_passive_checks_enabled', 'host_problem', - 'host_state' + 'host_state', + 'instance_name' )); $this->view->baseFilter = $this->hostList->getFilter(); $this->getTabs()->add( diff --git a/modules/monitoring/application/controllers/ServicesController.php b/modules/monitoring/application/controllers/ServicesController.php index 53312ae48..17e82124b 100644 --- a/modules/monitoring/application/controllers/ServicesController.php +++ b/modules/monitoring/application/controllers/ServicesController.php @@ -41,6 +41,7 @@ class ServicesController extends Controller 'host_name', 'host_problem', 'host_state', + 'instance_name', 'service_acknowledged', 'service_active_checks_enabled', 'service_description',