parent
92a2727a0b
commit
317bb24856
|
@ -52,21 +52,18 @@ class HostsController extends Controller
|
||||||
protected function handleCommandForm(ObjectsCommandForm $form)
|
protected function handleCommandForm(ObjectsCommandForm $form)
|
||||||
{
|
{
|
||||||
$this->hostList->setColumns(array(
|
$this->hostList->setColumns(array(
|
||||||
'host_icon_image',
|
|
||||||
'host_icon_image_alt',
|
|
||||||
'host_name',
|
|
||||||
'host_address',
|
|
||||||
'host_address6',
|
|
||||||
'host_state',
|
|
||||||
'host_problem',
|
|
||||||
'host_handled',
|
|
||||||
'host_acknowledged',
|
'host_acknowledged',
|
||||||
|
'host_active_checks_enabled',
|
||||||
|
'host_display_name',
|
||||||
|
'host_handled',
|
||||||
'host_in_downtime',
|
'host_in_downtime',
|
||||||
'host_is_flapping',
|
'host_is_flapping',
|
||||||
'host_output',
|
'host_last_state_change',
|
||||||
|
'host_name',
|
||||||
'host_notifications_enabled',
|
'host_notifications_enabled',
|
||||||
'host_active_checks_enabled',
|
'host_passive_checks_enabled',
|
||||||
'host_passive_checks_enabled'
|
'host_problem',
|
||||||
|
'host_state'
|
||||||
));
|
));
|
||||||
|
|
||||||
$form
|
$form
|
||||||
|
@ -90,24 +87,18 @@ class HostsController extends Controller
|
||||||
->handleRequest();
|
->handleRequest();
|
||||||
$this->view->checkNowForm = $checkNowForm;
|
$this->view->checkNowForm = $checkNowForm;
|
||||||
$this->hostList->setColumns(array(
|
$this->hostList->setColumns(array(
|
||||||
'host_icon_image',
|
|
||||||
'host_icon_image_alt',
|
|
||||||
'host_name',
|
|
||||||
'host_address',
|
|
||||||
'host_address6',
|
|
||||||
'host_state',
|
|
||||||
'host_problem',
|
|
||||||
'host_handled',
|
|
||||||
'host_acknowledged',
|
'host_acknowledged',
|
||||||
|
'host_active_checks_enabled',
|
||||||
|
'host_display_name',
|
||||||
|
'host_handled',
|
||||||
'host_in_downtime',
|
'host_in_downtime',
|
||||||
'host_is_flapping',
|
'host_is_flapping',
|
||||||
'host_output',
|
'host_last_state_change',
|
||||||
|
'host_name',
|
||||||
'host_notifications_enabled',
|
'host_notifications_enabled',
|
||||||
'host_active_checks_enabled',
|
'host_passive_checks_enabled',
|
||||||
'host_passive_checks_enabled'
|
'host_problem',
|
||||||
/*'host_event_handler_enabled',
|
'host_state'
|
||||||
'host_flap_detection_enabled',
|
|
||||||
'host_obsessing'*/
|
|
||||||
));
|
));
|
||||||
|
|
||||||
$acknowledgedObjects = $this->hostList->getAcknowledgedObjects();
|
$acknowledgedObjects = $this->hostList->getAcknowledgedObjects();
|
||||||
|
|
|
@ -1,48 +1,41 @@
|
||||||
<?php
|
<?php
|
||||||
use Icinga\Module\Monitoring\Object\Host;
|
use Icinga\Module\Monitoring\Object\Host;
|
||||||
|
|
||||||
$i = 0;
|
if (! ($hostCount = count($objects))): return; endif ?>
|
||||||
?>
|
<table class="state-table">
|
||||||
|
<tbody>
|
||||||
<?php if (($hostCount = count($objects)) > 0): ?>
|
<?php foreach ($objects as $i => $host): /** @var Host $host */
|
||||||
<table class="action state statesummary">
|
if ($i === 5) {
|
||||||
<tbody>
|
break;
|
||||||
<?php foreach ($objects as $host): /** @var Host $host */ ?>
|
} ?>
|
||||||
<?php
|
|
||||||
if (++ $i > 5) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class="state-col state-<?= Host::getStateText($host->host_state); ?><?= $host->host_handled ? ' handled' : '' ?>">
|
<td class="state-col state-<?= Host::getStateText($host->host_state); ?><?= $host->host_handled ? ' handled' : '' ?>">
|
||||||
<?= Host::getStateText($host->host_state, true); ?>
|
<span class="sr-only"><?= Host::getStateText($host->host_state) ?></span>
|
||||||
<br />
|
<div class="state-meta">
|
||||||
|
<?= $this->timeSince($host->host_last_state_change, $this->compact) ?>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<?= $this->iconImage()->host($host) ?>
|
<?= $this->link()->host(
|
||||||
|
$host->host_name,
|
||||||
|
$host->host_display_name
|
||||||
|
) ?>
|
||||||
<?= implode(' ', $this->hostFlags($host)) ?>
|
<?= implode(' ', $this->hostFlags($host)) ?>
|
||||||
<b><?= $this->escape($host->getName()); ?></b><br>
|
|
||||||
<?= $this->escape($host->host_output) ?>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div class="hbox-item multi-commands">
|
<?php if ($hostCount > 5): ?>
|
||||||
<?php if ($i > 5): ?>
|
<div class="hosts-link">
|
||||||
<?=
|
<?= $this->qlink(
|
||||||
$this->qlink(
|
sprintf($this->translate('List all %d hosts'), $hostCount),
|
||||||
sprintf($this->translate('show all %d hosts'), $i),
|
$this->url()->setPath('monitoring/list/hosts'),
|
||||||
$listAllLink,
|
|
||||||
null,
|
null,
|
||||||
array(
|
array(
|
||||||
'icon' => 'down-open',
|
'data-base-target' => '_next',
|
||||||
'data-base-target' => '_next'
|
'icon' => 'forward'
|
||||||
)
|
)
|
||||||
);
|
) ?>
|
||||||
?>
|
</div>
|
||||||
<?php endif ?>
|
|
||||||
</div>
|
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue