From 82914cf9a3794918d643909939fe7a0a00acdbe1 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Mon, 28 Sep 2015 14:54:49 +0200 Subject: [PATCH] monitoring: Don't select unncessary columns in the hosts overview --- .../application/controllers/ListController.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/modules/monitoring/application/controllers/ListController.php b/modules/monitoring/application/controllers/ListController.php index b4d126275..d404ee00b 100644 --- a/modules/monitoring/application/controllers/ListController.php +++ b/modules/monitoring/application/controllers/ListController.php @@ -58,8 +58,6 @@ class ListController extends Controller 'host_name', 'host_display_name', 'host_state' => $stateColumn, - 'host_address', - 'host_address6', 'host_acknowledged', 'host_output', 'host_attempt', @@ -67,15 +65,10 @@ class ListController extends Controller 'host_is_flapping', 'host_state_type', 'host_handled', - 'host_last_check', 'host_last_state_change' => $stateChangeColumn, 'host_notifications_enabled', - 'host_action_url', - 'host_notes_url', 'host_active_checks_enabled', - 'host_passive_checks_enabled', - 'host_current_check_attempt', - 'host_max_check_attempts' + 'host_passive_checks_enabled' ), $this->addColumns())); $this->applyRestriction('monitoring/filter/objects', $query); $this->filterQuery($query);