parent
ead0a64244
commit
e879ba445d
|
@ -534,6 +534,7 @@ class Monitoring_ListController extends Controller
|
|||
'hosts_unreachable_last_state_change_handled',
|
||||
'hosts_down_last_state_change_unhandled',
|
||||
'hosts_unreachable_last_state_change_unhandled',
|
||||
'hosts_total',
|
||||
'services_ok',
|
||||
'services_unknown_handled',
|
||||
'services_unknown_unhandled',
|
||||
|
|
|
@ -22,6 +22,7 @@ if (count($hostgroups) === 0) {
|
|||
<thead>
|
||||
<th><?= $this->translate('Last Problem'); ?></th>
|
||||
<th><?= $this->translate('Host Group'); ?></th>
|
||||
<th><?= $this->translate('Total Hosts'); ?></th>
|
||||
<th><?= $this->translate('Total Services'); ?></th>
|
||||
<th><?= $this->translate('Service States'); ?></th>
|
||||
</thead>
|
||||
|
@ -68,6 +69,17 @@ if (count($hostgroups) === 0) {
|
|||
array('title' => sprintf($this->translate('List all hosts in the group "%s"'), $h->hostgroup_alias))
|
||||
); ?>
|
||||
</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">
|
||||
<?= $this->qlink(
|
||||
$h->services_total,
|
||||
|
|
Loading…
Reference in New Issue