2013-10-15 17:52:30 +02:00
|
|
|
<?php
|
|
|
|
$this->is_service = true;
|
2013-10-18 09:59:06 +02:00
|
|
|
$this->hostquery = implode($this->hostnames, ',');
|
|
|
|
$this->servicequery = implode($this->servicenames, ',');
|
|
|
|
$this->target = array(
|
|
|
|
'host' => $this->hostquery,
|
|
|
|
'service' => $this->servicequery
|
|
|
|
);
|
2013-10-15 17:52:30 +02:00
|
|
|
?>
|
|
|
|
|
2014-04-09 19:13:46 +02:00
|
|
|
<?= $this->tabs; ?>
|
2013-10-16 18:50:19 +02:00
|
|
|
|
2014-04-09 19:13:46 +02:00
|
|
|
<div class="controls">
|
|
|
|
<h1> Summary for <?= count($objects) ?> services </h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
<?= $this->render('multi/components/objectlist.phtml'); ?>
|
|
|
|
<h3> <?=$this->icon('servicegroup.png')?> Service State </h3>
|
2013-10-15 17:52:30 +02:00
|
|
|
|
2014-04-09 19:13:46 +02:00
|
|
|
<table class="avp newsection">
|
|
|
|
<tbody>
|
2013-10-15 17:52:30 +02:00
|
|
|
<?= $this->render('multi/components/summary.phtml'); ?>
|
2014-04-09 19:13:46 +02:00
|
|
|
<?= $this->render('multi/components/comments.phtml'); ?>
|
|
|
|
<?= $this->render('multi/components/downtimes.phtml'); ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2013-10-16 18:50:19 +02:00
|
|
|
|
2014-04-09 19:13:46 +02:00
|
|
|
<h3> <?=$this->icon('configuration.png')?> Options </h3>
|
|
|
|
<table class="avp newsection">
|
|
|
|
<tbody>
|
|
|
|
<?= $this->render('multi/components/configuration.phtml') ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2013-10-15 12:39:06 +02:00
|
|
|
</div>
|
|
|
|
|
2014-04-09 19:13:46 +02:00
|
|
|
|
|
|
|
<a
|
|
|
|
rel="tooltip"
|
|
|
|
title="Submit passive checkresults"
|
|
|
|
href="<?= $this->href('monitoring/command/submitpassivecheckresult', $this->target); ?>"
|
|
|
|
class="button btn-cta btn-common btn-small"
|
|
|
|
>
|
|
|
|
<i class="icinga-icon-submit"></i>
|
|
|
|
</a>
|