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