2015-09-04 07:02:57 -04:00
|
|
|
<?php use Icinga\Data\Filter\Filter; ?>
|
|
|
|
|
|
2015-06-16 10:04:45 -04:00
|
|
|
<div class="controls">
|
|
|
|
|
<?php if (! $this->compact): ?>
|
|
|
|
|
<?= $this->tabs; ?>
|
|
|
|
|
<?php endif ?>
|
2015-09-29 11:07:40 -04:00
|
|
|
<?= $this->render('partials/object/host-header.phtml') ?>
|
2015-09-04 07:02:57 -04:00
|
|
|
<?php
|
|
|
|
|
$this->baseFilter = Filter::where('host', $object->host_name);
|
|
|
|
|
$this->stats = $object->stats;
|
|
|
|
|
echo $this->render('list/components/servicesummary.phtml');
|
|
|
|
|
?>
|
2015-06-16 10:04:45 -04:00
|
|
|
</div>
|
|
|
|
|
<?= $this->partial(
|
|
|
|
|
'list/services.phtml',
|
|
|
|
|
'monitoring',
|
|
|
|
|
array(
|
|
|
|
|
'compact' => true,
|
|
|
|
|
'showHost' => false,
|
|
|
|
|
'services' => $services,
|
2015-09-14 11:33:23 -04:00
|
|
|
'addColumns' => array()
|
2015-06-16 10:04:45 -04:00
|
|
|
)
|
2015-09-29 11:07:40 -04:00
|
|
|
); ?>
|