diff --git a/modules/monitoring/application/controllers/ListController.php b/modules/monitoring/application/controllers/ListController.php index 8199db163..4ea9fddd5 100644 --- a/modules/monitoring/application/controllers/ListController.php +++ b/modules/monitoring/application/controllers/ListController.php @@ -111,7 +111,10 @@ class Monitoring_ListController extends ActionController 'host_unhandled_service_count', 'host_action_url', 'host_notes_url', - 'host_last_comment' + 'host_last_comment', + 'host_active_checks_enabled', + 'host_passive_checks_enabled' + ) )->getQuery(); $this->view->hosts = $query->paginate(); @@ -159,7 +162,9 @@ class Monitoring_ListController extends ActionController 'service_notifications_enabled', 'service_action_url', 'service_notes_url', - 'service_last_comment' + 'service_last_comment', + 'service_active_checks_enabled', + 'service_passive_checks_enabled' ) )->getQuery(); $this->view->services = $query->paginate(); diff --git a/modules/monitoring/application/controllers/ShowController.php b/modules/monitoring/application/controllers/ShowController.php index 688f211a1..e0d298fc8 100644 --- a/modules/monitoring/application/controllers/ShowController.php +++ b/modules/monitoring/application/controllers/ShowController.php @@ -86,6 +86,7 @@ class Monitoring_ShowController extends ActionController public function serviceAction() { $this->view->object->prefetch(); + $this->view->preserve = array(); } /** @@ -94,6 +95,7 @@ class Monitoring_ShowController extends ActionController public function hostAction() { $this->view->object->prefetch(); + $this->view->preserve = array(); } /** diff --git a/modules/monitoring/application/views/helpers/MonitoringProperties.php b/modules/monitoring/application/views/helpers/MonitoringProperties.php index e25f5fe2b..5c434240b 100644 --- a/modules/monitoring/application/views/helpers/MonitoringProperties.php +++ b/modules/monitoring/application/views/helpers/MonitoringProperties.php @@ -107,7 +107,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract * @param stdClass $object * @return string */ - private function buildAttempt(stdClass $object) + private function buildAttempt(AbstractObject $object) { return sprintf( '%s/%s (%s state)', @@ -132,7 +132,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract * @param stdClass $object * @return string */ - private function buildCheckType(stdClass $object) + private function buildCheckType(AbstractObject $object) { if ($object->passive_checks_enabled === '1' && $object->active_checks_enabled === '0') { return self::CHECK_PASSIVE; @@ -148,7 +148,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract * @param stdClass $object * @return string */ - private function buildLatency(stdClass $object) + private function buildLatency(AbstractObject $object) { $val = ''; if ($this->buildCheckType($object) === self::CHECK_PASSIVE) { @@ -171,7 +171,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract * @param stdClass $object * @return string */ - private function buildNextCheck(stdClass $object) + private function buildNextCheck(AbstractObject $object) { if ($this->buildCheckType($object) === self::CHECK_PASSIVE) { return self::VALUE_NA; @@ -185,7 +185,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract * @param stdClass $object * @return string */ - private function buildLastStateChange(stdClass $object) + private function buildLastStateChange(AbstractObject $object) { return strftime('%Y-%m-%d %H:%M:%S', $object->last_state_change); } @@ -195,7 +195,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract * @param stdClass $object * @return string */ - private function buildLastNotification(stdClass $object) + private function buildLastNotification(AbstractObject $object) { $val = ''; @@ -215,7 +215,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract * @param stdClass $object * @return string */ - private function buildFlapping(stdClass $object) + private function buildFlapping(AbstractObject $object) { $val = ''; @@ -235,7 +235,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract * @param stdClass $object * @return string */ - private function buildScheduledDowntime(stdClass $object) + private function buildScheduledDowntime(AbstractObject $object) { if ($object->in_downtime === '1') { return self::VALUE_YES; @@ -253,10 +253,9 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract public function monitoringProperties(AbstractObject $object) { $type = $this->getObjectType($object); - $object = $this->dropObjectType($object, $type); + //$object = $this->dropObjectType($object, $type); $out = array(); - foreach (self::$keys as $property => $label) { $label = sprintf($label, ucfirst($type)); if (is_callable(array(&$this, $property))) { @@ -269,7 +268,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract return $out; } - public function getNotificationType(stdClass $notification) + public function getNotificationType(AbstractObject $notification) { $reason = intval($notification->notification_reason); if (!isset(self::$notificationReasons[$reason])) { diff --git a/modules/monitoring/application/views/scripts/list/hosts.phtml b/modules/monitoring/application/views/scripts/list/hosts.phtml index 9229eba26..0d4481640 100644 --- a/modules/monitoring/application/views/scripts/list/hosts.phtml +++ b/modules/monitoring/application/views/scripts/list/hosts.phtml @@ -12,7 +12,7 @@ $viewHelper = $this->getHelper('MonitoringState');
Status | +Status | Host | Output | |||
---|---|---|---|---|---|---|
-
- host_icon_image) : ?>
+ host_icon_image) : ?>
+
|
-
-
- host_handled && $host->host_state > 0): ?>
-
- {{UNHANDLED_ICON}}
-
-
+ host_handled && $host->host_state > 0): ?>
+
+ {{UNHANDLED_ICON}}
+
+
- host_acknowledged && !$host->host_in_downtime): ?>
-
- {{ACKNOWLEDGED_ICON}}
-
-
+ host_acknowledged && !$host->host_in_downtime): ?>
+
+ {{ACKNOWLEDGED_ICON}}
+
+
- host_is_flapping): ?>
-
- {{FLAPPING_ICON}}
-
+ host_is_flapping): ?>
+
+ {{FLAPPING_ICON}}
+
+
+
+ host_notifications_enabled): ?>
+
+ {{NOTIFICATIONS_DISABLED_ICON}}
+
+
+
+ host_in_downtime): ?>
+
+ {{IN_DOWNTIME_ICON}}
+
+
+
+ host_active_checks_enabled): ?>
+ host_passive_checks_enabled): ?>
+
+ {{ACTIVE_PASSIVE_CHECKS_DISABLED_ICON}}
+
+
+
+ {{ACTIVE_CHECKS_DISABLED_ICON}}
+
-
- |
- + + host_last_comment !== null): ?> - + {{COMMENT_ICON}} + | + +
+
+ host_state_type == 0): ?>
+
+ {{SOFTSTATE_ICON}}
+
+
+ = ucfirst($viewHelper->monitoringState($host, 'host')); ?>
+ Since
+ = $this->timeSince($host->host_last_state_change); ?>
+
+ |
+
+
+ host_unhandled_service_count): ?>
+
+
+ = $host->host_unhandled_service_count; ?>
+
+
+
- = $host->host_name ?> - = $host->host_address ?> + = $host->host_name ?> + = $host->host_address ?> - host_action_url != ""): ?> + host_action_url)): ?> Action - - host_notes_url != ""): ?> - Notes + host_notes_url)): ?> + Notes - |
= $this->escape(substr(strip_tags($host->host_output), 0, 10000)); ?> | -
- service_icon_image) : ?>
+ service_icon_image) : ?>
+
|
+
-
-
- service_handled && $service->service_state > 0): ?>
-
- {{UNHANDLED_ICON}}
-
-
+ service_handled && $service->service_state > 0): ?>
+
+ {{UNHANDLED_ICON}}
+
+
- service_acknowledged && !$service->service_in_downtime): ?>
-
- {{ACKNOWLEDGED_ICON}}
-
-
+ service_acknowledged && !$service->service_in_downtime): ?>
+
+ {{ACKNOWLEDGED_ICON}}
+
+
- service_is_flapping): ?>
-
- {{FLAPPING_ICON}}
-
-
+ service_is_flapping): ?>
+
+ {{FLAPPING_ICON}}
+
+
- service_notifications_enabled): ?>
-
- {{NOTIFICATIONS_DISABLED_ICON}}
-
-
+ service_notifications_enabled): ?>
+
+ {{NOTIFICATIONS_DISABLED_ICON}}
+
+
- service_in_downtime): ?>
-
- {{IN_DOWNTIME_ICON}}
-
-
+ service_in_downtime): ?>
+
+ {{IN_DOWNTIME_ICON}}
+
+
-
- |
-
-
-
-
- = ucfirst($viewHelper->monitoringState($service, 'service')); ?>
-
- Since
- = $this->timeSince($service->service_last_state_change); ?>
-
- service_state_type == 0): ?>
-
- {{SOFTSTATE_ICON}}
+ service_active_checks_enabled): ?>
+ service_passive_checks_enabled): ?>
+
+ {{ACTIVE_PASSIVE_CHECKS_DISABLED_ICON}}
+
+
+
+ {{ACTIVE_CHECKS_DISABLED_ICON}}
-
- |
+
-
- service_last_comment !== null): ?> - + {{COMMENT_ICON}} + | + +
+
+ service_state_type == 0): ?>
+
+ {{SOFTSTATE_ICON}}
+
+
+ = ucfirst($viewHelper->monitoringState($service, 'service')); ?>
+ Since
+ = $this->timeSince($service->service_last_state_change); ?>
+
+ |
+
+
= $service->service_display_name; ?>
- service_action_url != ""): ?> + service_action_url)): ?> Action - service_notes_url != ""): ?> + service_notes_url)): ?> Notes - |
-
- = $service->host_name; ?>
+ host_handled && $service->host_state > 0): ?>
+
+ {{UNHANDLED_ICON}}
+
+
+
+ = $service->host_name; ?>
+ host_state != 0): ?>
+ (= ucfirst($viewHelper->monitoringState($service, 'host')); ?>)
+
+ = $service->host_address ?> - -
- (= ucfirst($viewHelper->monitoringState($service, 'host')); ?>)
-
-
- = $service->host_address ?>
-
|
@@ -133,4 +140,5 @@ $viewHelper = $this->getHelper('MonitoringState'); |
= date('d.m. H:i', $event->timestamp ) ?> | - - if (! $object): ?> -= $this->escape($event->host_name) ?> | - endif ?> - - if (! $object instanceof Icinga\Module\Monitoring\Object\Service): ?> -- if ($object): ?> - service_description; ?> - - else: ?> - = $this->escape($event->service_description) ?> - endif ?> - | - endif ?> -- type) { - case 'notify': - echo 'NOTIFICATION_ICON'; - break; - case 'comment': - echo 'COMMENT_ICON'; - break; - case 'ack': - echo 'ACKNOWLEDGEMENT_ICON'; - break; - case 'dt_comment': - echo 'IN_DOWNTIME_ICON'; - break; - case 'flapping': - echo 'FLAPPING_ICON'; - break; - case 'hard_state': - echo 'HARDSTATE_ICON'; - break; - case 'soft_state': - echo 'SOFTSTATE_ICON'; - break; - case 'dt_start': - echo 'DOWNTIME_START_ICON'; - echo ' Downtime start'; - break; - case 'dt_end': - echo 'DOWNTIME_END_ICON'; - echo ' Downtime end'; - break; - } - ?> - if ($event->attempt !== null): ?> - [ = $event->attempt ?>/=$event->max_attempts ?> ] - endif ?> - | -