mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
parent
ead0a64244
commit
e879ba445d
@ -534,6 +534,7 @@ class Monitoring_ListController extends Controller
|
|||||||
'hosts_unreachable_last_state_change_handled',
|
'hosts_unreachable_last_state_change_handled',
|
||||||
'hosts_down_last_state_change_unhandled',
|
'hosts_down_last_state_change_unhandled',
|
||||||
'hosts_unreachable_last_state_change_unhandled',
|
'hosts_unreachable_last_state_change_unhandled',
|
||||||
|
'hosts_total',
|
||||||
'services_ok',
|
'services_ok',
|
||||||
'services_unknown_handled',
|
'services_unknown_handled',
|
||||||
'services_unknown_unhandled',
|
'services_unknown_unhandled',
|
||||||
|
@ -22,6 +22,7 @@ if (count($hostgroups) === 0) {
|
|||||||
<thead>
|
<thead>
|
||||||
<th><?= $this->translate('Last Problem'); ?></th>
|
<th><?= $this->translate('Last Problem'); ?></th>
|
||||||
<th><?= $this->translate('Host Group'); ?></th>
|
<th><?= $this->translate('Host Group'); ?></th>
|
||||||
|
<th><?= $this->translate('Total Hosts'); ?></th>
|
||||||
<th><?= $this->translate('Total Services'); ?></th>
|
<th><?= $this->translate('Total Services'); ?></th>
|
||||||
<th><?= $this->translate('Service States'); ?></th>
|
<th><?= $this->translate('Service States'); ?></th>
|
||||||
</thead>
|
</thead>
|
||||||
@ -68,6 +69,17 @@ if (count($hostgroups) === 0) {
|
|||||||
array('title' => sprintf($this->translate('List all hosts in the group "%s"'), $h->hostgroup_alias))
|
array('title' => sprintf($this->translate('List all hosts in the group "%s"'), $h->hostgroup_alias))
|
||||||
); ?>
|
); ?>
|
||||||
</td>
|
</td>
|
||||||
|
<td class="total">
|
||||||
|
<?= $this->qlink(
|
||||||
|
$h->hosts_total,
|
||||||
|
'monitoring/list/hosts',
|
||||||
|
array('hostgroup_name' => $h->hostgroup_name),
|
||||||
|
array('title' => sprintf(
|
||||||
|
$this->translate('List all hosts in host group "%s"'),
|
||||||
|
$h->hostgroup_alias
|
||||||
|
))
|
||||||
|
); ?>
|
||||||
|
</td>
|
||||||
<td class="total">
|
<td class="total">
|
||||||
<?= $this->qlink(
|
<?= $this->qlink(
|
||||||
$h->services_total,
|
$h->services_total,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user