monitoring: Display soft states in the host detail view

refs #5543
This commit is contained in:
Eric Lippmann 2015-10-28 12:08:37 +01:00
parent c0c9f3b5eb
commit b325c4769a

View File

@ -6,7 +6,12 @@ use Icinga\Module\Monitoring\Object\Host;
<tr>
<td class="state-col state-<?= Host::getStateText($object->host_state) ?><?= $object->host_handled ? ' handled' : '' ?>">
<div class="state-header"><?= Host::getStateText($object->host_state, true) ?></div>
<div class="state-meta"><?= $this->timeSince($object->host_last_state_change) ?></div>
<div class="state-meta">
<?= $this->timeSince($object->host_last_state_change) ?>
<?php if ((int) $object->host_state > 0 && (int) $object->host_state_type === 0): ?>
<div><?= $this->translate('Soft', 'Soft state') ?> <?= $object->host_attempt ?></div>
<?php endif ?>
</div>
</td>
<td>
<?= $this->iconImage()->host($object) ?>