diff --git a/modules/monitoring/application/controllers/HostsController.php b/modules/monitoring/application/controllers/HostsController.php
index 45eca1135..ac55ade9b 100644
--- a/modules/monitoring/application/controllers/HostsController.php
+++ b/modules/monitoring/application/controllers/HostsController.php
@@ -53,6 +53,7 @@ class Monitoring_HostsController extends Controller
protected function handleCommandForm(ObjectsCommandForm $form)
{
$this->hostList->setColumns(array(
+ 'host_icon_image',
'host_name',
'host_state',
'host_problem',
@@ -94,6 +95,7 @@ class Monitoring_HostsController extends Controller
->handleRequest();
$this->view->checkNowForm = $checkNowForm;
$this->hostList->setColumns(array(
+ 'host_icon_image',
'host_name',
'host_state',
'host_problem',
diff --git a/modules/monitoring/application/controllers/ServicesController.php b/modules/monitoring/application/controllers/ServicesController.php
index f4ee73cf5..ca9788ff2 100644
--- a/modules/monitoring/application/controllers/ServicesController.php
+++ b/modules/monitoring/application/controllers/ServicesController.php
@@ -55,6 +55,7 @@ class Monitoring_ServicesController extends Controller
'host_state',
'host_problem',
'host_handled',
+ 'service_icon_image',
'service_description',
'service_state',
'service_problem',
@@ -98,6 +99,7 @@ class Monitoring_ServicesController extends Controller
'host_state',
'host_problem',
'host_handled',
+ 'service_icon_image',
'service_output',
'service_description',
'service_state',
diff --git a/modules/monitoring/application/views/scripts/partials/host/object-header.phtml b/modules/monitoring/application/views/scripts/partials/host/object-header.phtml
index 0efedf328..127f492e6 100644
--- a/modules/monitoring/application/views/scripts/partials/host/object-header.phtml
+++ b/modules/monitoring/application/views/scripts/partials/host/object-header.phtml
@@ -9,6 +9,9 @@ use Icinga\Module\Monitoring\Object\Host;
= $this->prefixedTimeSince($object->host_last_state_change, true); ?>
+ host_icon_image && ! preg_match('/[\'"]/', $object->host_icon_image)): ?>
+ = $this->icon($this->resolveMacros($object->host_icon_image, $object)) ?>
+
= $this->escape($object->host_display_name); ?>
host_display_name !== $object->host_name): ?>
(= $this->escape($object->host_name); ?>)
diff --git a/modules/monitoring/application/views/scripts/partials/host/objects-header.phtml b/modules/monitoring/application/views/scripts/partials/host/objects-header.phtml
index d59479e07..b6856609c 100644
--- a/modules/monitoring/application/views/scripts/partials/host/objects-header.phtml
+++ b/modules/monitoring/application/views/scripts/partials/host/objects-header.phtml
@@ -18,6 +18,9 @@ $i = 0;
| = Host::getStateText($host->host_state, true); ?>
|
= implode(' ', $this->hostFlags($host)) ?>
+ host_icon_image && ! preg_match('/[\'"]/', $host->host_icon_image)): ?>
+ = $this->icon($this->resolveMacros($host->host_icon_image, $host)) ?>
+
= $this->escape($host->getName()); ?>
= $this->escape($host->host_output) ?>
|
diff --git a/modules/monitoring/application/views/scripts/partials/service/object-header.phtml b/modules/monitoring/application/views/scripts/partials/service/object-header.phtml
index 45111fe1e..b50aff9bc 100644
--- a/modules/monitoring/application/views/scripts/partials/service/object-header.phtml
+++ b/modules/monitoring/application/views/scripts/partials/service/object-header.phtml
@@ -10,7 +10,10 @@ use Icinga\Module\Monitoring\Object\Service;
= $this->prefixedTimeSince($object->host_last_state_change, true); ?>
- = $this->escape($object->host_display_name); ?>
+ host_icon_image && ! preg_match('/[\'"]/', $object->host_icon_image)): ?>
+ = $this->icon($this->resolveMacros($object->host_icon_image, $object)) ?>
+
+ = $this->escape($object->host_display_name); ?>
host_display_name !== $object->host_name): ?>
(= $this->escape($object->host_name); ?>)
@@ -27,10 +30,13 @@ use Icinga\Module\Monitoring\Object\Service;
= $this->prefixedTimeSince($object->service_last_state_change, true); ?>
|
+ service_icon_image && ! preg_match('/[\'"]/', $object->service_icon_image)): ?>
+ = $this->icon($this->resolveMacros($object->service_icon_image, $object)) ?>
+
= $this->translate('Service'); ?>: = $this->escape($object->service_display_name); ?>
- service_display_name !== $object->service_description): ?>
- (= $this->escape($object->service_description); ?>)
-
+ service_display_name !== $object->service_description): ?>
+ (= $this->escape($object->service_description); ?>)
+
= $this->render('partials/service/statusicons.phtml'); ?>
|
diff --git a/modules/monitoring/application/views/scripts/partials/service/objects-header.phtml b/modules/monitoring/application/views/scripts/partials/service/objects-header.phtml
index 0d3d4840d..fe1e4b16a 100644
--- a/modules/monitoring/application/views/scripts/partials/service/objects-header.phtml
+++ b/modules/monitoring/application/views/scripts/partials/service/objects-header.phtml
@@ -16,6 +16,9 @@ $i = 0;
= Service::getStateText($service->service_state, true); ?>
|
= implode(' ', $this->serviceFlags($service)) ?>
+ service_icon_image && ! preg_match('/[\'"]/', $service->service_icon_image)): ?>
+ = $this->icon($this->resolveMacros($service->service_icon_image, $service)) ?>
+
= $this->escape($service->getName()); ?>
= $this->translate('on') ?>
diff --git a/modules/monitoring/library/Monitoring/Object/Host.php b/modules/monitoring/library/Monitoring/Object/Host.php
index 342e78812..2c01fe0eb 100644
--- a/modules/monitoring/library/Monitoring/Object/Host.php
+++ b/modules/monitoring/library/Monitoring/Object/Host.php
@@ -89,6 +89,7 @@ class Host extends MonitoredObject
protected function getDataView()
{
$columns = array(
+ 'host_icon_image',
'host_acknowledged',
'host_action_url',
'host_active_checks_enabled',
diff --git a/modules/monitoring/library/Monitoring/Object/Service.php b/modules/monitoring/library/Monitoring/Object/Service.php
index 7c22ae57d..fec5de238 100644
--- a/modules/monitoring/library/Monitoring/Object/Service.php
+++ b/modules/monitoring/library/Monitoring/Object/Service.php
@@ -106,6 +106,7 @@ class Service extends MonitoredObject
protected function getDataView()
{
return $this->backend->select()->from('serviceStatus', array(
+ 'host_icon_image',
'host_acknowledged',
'host_active_checks_enabled',
'host_address',
@@ -118,6 +119,7 @@ class Service extends MonitoredObject
'host_notifications_enabled',
'host_passive_checks_enabled',
'host_state',
+ 'service_icon_image',
'service_acknowledged',
'service_action_url',
'service_active_checks_enabled',
|