Skip to content

Commit

Permalink
Revert "monitoring: Remove the services tab when showing an object's …
Browse files Browse the repository at this point in the history
…history"

This reverts commit b3e0851.
  • Loading branch information
Johannes Meyer committed Jun 16, 2015
1 parent aa0b1d4 commit c316e5c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modules/monitoring/application/controllers/ShowController.php
Expand Up @@ -214,6 +214,19 @@ protected function createTabs()
)
);
}
$tabs->add(
'services',
array(
'title' => sprintf(
$this->translate('List all services on host %s'),
$isService ? $object->getHost()->getName() : $object->getName()
),
'label' => $this->translate('Services'),
'icon' => 'services',
'url' => 'monitoring/show/services',
'urlParams' => $params,
)
);
if ($this->backend->hasQuery('eventHistory')) {
$tabs->add(
'history',
Expand Down

0 comments on commit c316e5c

Please sign in to comment.