diff --git a/modules/monitoring/application/controllers/AlertsummaryController.php b/modules/monitoring/application/controllers/AlertsummaryController.php index d6e95b601..22329cd7a 100644 --- a/modules/monitoring/application/controllers/AlertsummaryController.php +++ b/modules/monitoring/application/controllers/AlertsummaryController.php @@ -61,7 +61,7 @@ class Monitoring_AlertsummaryController extends Controller array( 'host_name', 'host_display_name', - 'service', + 'service_description', 'service_display_name', 'notification_output', 'notification_contact', @@ -479,7 +479,7 @@ class Monitoring_AlertsummaryController extends Controller array( 'host_name', 'host_display_name', - 'service', + 'service_description', 'service_display_name', 'notification_output', 'notification_contact', diff --git a/modules/monitoring/application/controllers/ListController.php b/modules/monitoring/application/controllers/ListController.php index 64cec8a2c..ef0ee4db2 100644 --- a/modules/monitoring/application/controllers/ListController.php +++ b/modules/monitoring/application/controllers/ListController.php @@ -326,7 +326,7 @@ class Monitoring_ListController extends Controller $this->setAutorefreshInterval(15); $query = $this->backend->select()->from('notification', array( 'host_name', - 'service', + 'service_description', 'notification_output', 'notification_contact', 'notification_start_time', diff --git a/modules/monitoring/application/controllers/ShowController.php b/modules/monitoring/application/controllers/ShowController.php index 680ed719d..f89b70d07 100644 --- a/modules/monitoring/application/controllers/ShowController.php +++ b/modules/monitoring/application/controllers/ShowController.php @@ -157,7 +157,7 @@ class Monitoring_ShowController extends Controller $notifications = $this->backend->select()->from('notification', array( 'host_name', - 'service', + 'service_description', 'notification_output', 'notification_contact', 'notification_start_time', diff --git a/modules/monitoring/application/views/scripts/list/notifications.phtml b/modules/monitoring/application/views/scripts/list/notifications.phtml index b5d5adde1..b9fd7e309 100644 --- a/modules/monitoring/application/views/scripts/list/notifications.phtml +++ b/modules/monitoring/application/views/scripts/list/notifications.phtml @@ -24,7 +24,7 @@ use Icinga\Module\Monitoring\Object\Service;