22 lines
725 B
PHTML
22 lines
725 B
PHTML
<div>
|
|
<div class="panel-heading">
|
|
<div class="panel-hostname">
|
|
Check Statistics
|
|
</div>
|
|
</div>
|
|
|
|
<hr class="separator" />
|
|
<div class="panel-body">
|
|
<dl class="dl-horizontal">
|
|
<dt>Latency</dt>
|
|
<dd><?= sprintf('%.2f', $this->object->check_execution_time); ?>s</dd>
|
|
<dt>Duration</dt>
|
|
<dd><?= sprintf('%.2f', $this->object->check_latency); ?>s</dd>
|
|
<dt>Attempt</dt>
|
|
<dd>
|
|
<?= $this->object->current_check_attempt; ?>/<?= $this->object->max_check_attempts; ?>
|
|
(<?= ($this->object->host_state_type === '1') ? 'Hard' : 'Soft'; ?>)
|
|
</dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|