monitoring: Use the ellipsis string helper when viewing plugin output in host and service list

This commit is contained in:
Eric Lippmann 2015-01-19 14:21:55 +01:00
parent a1a36301fe
commit 7580d57c1d
2 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ if ($hosts->count() === 0) {
array('style' => 'font-weight: normal')
) ?>)</span>
<?php endif ?>
<p class="pluginoutput"><?= $this->escape(substr($host->host_output, 0, 10000)) ?></p>
<p class="pluginoutput"><?= $this->escape($this->ellipsis($host->host_output, 10000)) ?></p>
</td>
<?php foreach($this->extraColumns as $col): ?>
<td><?= $this->escape($host->$col) ?></td>

View File

@ -112,7 +112,7 @@ foreach ($services as $service):
(<?= strtoupper(Host::getStateText($service->host_state, true)); ?>)
<?php endif ?>
</a><?php endif ?><br />
<p class="pluginoutput"><?= $this->escape(substr($service->service_output, 0, 10000)); ?></p>
<p class="pluginoutput"><?= $this->escape($this->ellipsis($service->service_output, 10000)); ?></p>
</td>
<?php foreach($this->extraColumns as $col): ?>
<td><?= $this->escape($service->$col) ?></td>