Hostgroup listing: preserve URL params in links to hosts and services lists
This commit is contained in:
parent
0f7707e8a1
commit
a63bc649f7
|
@ -29,7 +29,9 @@ if (! $this->compact): ?>
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($hostgroups->peekAhead($this->compact) as $hostgroup): ?>
|
||||
<?php
|
||||
$currentFilter = $this->filterEditor->getFilter()->getUrlParams()->toArray(false);
|
||||
foreach ($hostgroups->peekAhead($this->compact) as $hostgroup): ?>
|
||||
<tr>
|
||||
<td class="count-col">
|
||||
<span class="badge"><?= $hostgroup->hosts_total ?></span>
|
||||
|
@ -53,11 +55,11 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_UP,
|
||||
$hostgroup->hosts_up,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'host_state' => 0,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'host_severity'
|
||||
),
|
||||
)),
|
||||
'List %u host that is currently in state UP in the host group "%s"',
|
||||
'List %u hosts which are currently in state UP in the host group "%s"',
|
||||
array($hostgroup->hosts_up, $hostgroup->hostgroup_alias)
|
||||
|
@ -65,13 +67,13 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_DOWN,
|
||||
$hostgroup->hosts_down_unhandled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'host_state' => 1,
|
||||
'host_acknowledged' => 0,
|
||||
'host_in_downtime' => 0,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'host_severity'
|
||||
),
|
||||
)),
|
||||
'List %u host that is currently in state DOWN in the host group "%s"',
|
||||
'List %u hosts which are currently in state DOWN in the host group "%s"',
|
||||
array($hostgroup->hosts_down_unhandled, $hostgroup->hostgroup_alias)
|
||||
|
@ -79,12 +81,12 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_DOWN_HANDLED,
|
||||
$hostgroup->hosts_down_handled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'host_state' => 1,
|
||||
'host_handled' => 1,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'host_severity'
|
||||
),
|
||||
)),
|
||||
'List %u host that is currently in state DOWN (Acknowledged) in the host group "%s"',
|
||||
'List %u hosts which are currently in state DOWN (Acknowledged) in the host group "%s"',
|
||||
array($hostgroup->hosts_down_handled, $hostgroup->hostgroup_alias)
|
||||
|
@ -92,13 +94,13 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_UNREACHABLE,
|
||||
$hostgroup->hosts_unreachable_unhandled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'host_state' => 2,
|
||||
'host_acknowledged' => 0,
|
||||
'host_in_downtime' => 0,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'host_severity'
|
||||
),
|
||||
)),
|
||||
'List %u host that is currently in state UNREACHABLE in the host group "%s"',
|
||||
'List %u hosts which are currently in state UNREACHABLE in the host group "%s"',
|
||||
array($hostgroup->hosts_unreachable_unhandled, $hostgroup->hostgroup_alias)
|
||||
|
@ -106,12 +108,12 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_UNREACHABLE_HANDLED,
|
||||
$hostgroup->hosts_unreachable_handled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'host_state' => 2,
|
||||
'host_handled' => 1,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'host_severity'
|
||||
),
|
||||
)),
|
||||
'List %u host that is currently in state UNREACHABLE (Acknowledged) in the host group "%s"',
|
||||
'List %u hosts which are currently in state UNREACHABLE (Acknowledged) in the host group "%s"',
|
||||
array($hostgroup->hosts_unreachable_handled, $hostgroup->hostgroup_alias)
|
||||
|
@ -119,11 +121,11 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_PENDING,
|
||||
$hostgroup->hosts_pending,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'host_state' => 99,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'host_severity'
|
||||
),
|
||||
)),
|
||||
'List %u host that is currently in state PENDING in the host group "%s"',
|
||||
'List %u hosts which are currently in state PENDING in the host group "%s"',
|
||||
array($hostgroup->hosts_pending, $hostgroup->hostgroup_alias)
|
||||
|
@ -150,11 +152,11 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_OK,
|
||||
$hostgroup->services_ok,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'service_state' => 0,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'service_severity'
|
||||
),
|
||||
)),
|
||||
'List %u service that is currently in state OK on hosts in the host group "%s"',
|
||||
'List %u services which are currently in state OK on hosts in the host group "%s"',
|
||||
array($hostgroup->services_ok, $hostgroup->hostgroup_alias)
|
||||
|
@ -162,14 +164,14 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_CRITICAL,
|
||||
$hostgroup->services_critical_unhandled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'service_state' => 2,
|
||||
'service_acknowledged' => 0,
|
||||
'service_in_downtime' => 0,
|
||||
'host_problem' => 0,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'service_severity'
|
||||
),
|
||||
)),
|
||||
'List %u service that is currently in state CRITICAL on hosts in the host group "%s"',
|
||||
'List %u services which are currently in state CRITICAL on hosts in the host group "%s"',
|
||||
array($hostgroup->services_critical_unhandled, $hostgroup->hostgroup_alias)
|
||||
|
@ -177,12 +179,12 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_CRITICAL_HANDLED,
|
||||
$hostgroup->services_critical_handled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'service_state' => 2,
|
||||
'service_handled' => 1,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'service_severity'
|
||||
),
|
||||
)),
|
||||
'List %u service that is currently in state CRITICAL (Acknowledged) on hosts in the host group "%s"',
|
||||
'List %u services which are currently in state CRITICAL (Acknowledged) on hosts in the host group "%s"',
|
||||
array($hostgroup->services_critical_unhandled, $hostgroup->hostgroup_alias)
|
||||
|
@ -190,14 +192,14 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_UNKNOWN,
|
||||
$hostgroup->services_unknown_unhandled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'service_state' => 3,
|
||||
'service_acknowledged' => 0,
|
||||
'service_in_downtime' => 0,
|
||||
'host_problem' => 0,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'service_severity'
|
||||
),
|
||||
)),
|
||||
'List %u service that is currently in state UNKNOWN on hosts in the host group "%s"',
|
||||
'List %u services which are currently in state UNKNOWN on hosts in the host group "%s"',
|
||||
array($hostgroup->services_unknown_unhandled, $hostgroup->hostgroup_alias)
|
||||
|
@ -205,12 +207,12 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_UNKNOWN_HANDLED,
|
||||
$hostgroup->services_unknown_handled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'service_state' => 3,
|
||||
'service_handled' => 1,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'service_severity'
|
||||
),
|
||||
)),
|
||||
'List %u service that is currently in state UNKNOWN (Acknowledged) on hosts in the host group "%s"',
|
||||
'List %u services which are currently in state UNKNOWN (Acknowledged) on hosts in the host group "%s"',
|
||||
array($hostgroup->services_unknown_handled, $hostgroup->hostgroup_alias)
|
||||
|
@ -219,14 +221,14 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_WARNING,
|
||||
$hostgroup->services_warning_unhandled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'service_state' => 1,
|
||||
'service_acknowledged' => 0,
|
||||
'service_in_downtime' => 0,
|
||||
'host_problem' => 0,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'service_severity'
|
||||
),
|
||||
)),
|
||||
'List %u service that is currently in state WARNING on hosts in the host group "%s"',
|
||||
'List %u services which are currently in state WARNING on hosts in the host group "%s"',
|
||||
array($hostgroup->services_warning_unhandled, $hostgroup->hostgroup_alias)
|
||||
|
@ -234,12 +236,12 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_WARNING_HANDLED,
|
||||
$hostgroup->services_warning_handled,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'service_state' => 1,
|
||||
'service_handled' => 1,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'service_severity'
|
||||
),
|
||||
)),
|
||||
'List %u service that is currently in state WARNING (Acknowledged) on hosts in the host group "%s"',
|
||||
'List %u services which are currently in state WARNING (Acknowledged) on hosts in the host group "%s"',
|
||||
array($hostgroup->services_warning_handled, $hostgroup->hostgroup_alias)
|
||||
|
@ -247,11 +249,11 @@ if (! $this->compact): ?>
|
|||
->add(
|
||||
StateBadges::STATE_PENDING,
|
||||
$hostgroup->services_pending,
|
||||
array(
|
||||
array_merge($currentFilter, array(
|
||||
'service_state' => 99,
|
||||
'hostgroup_name' => $hostgroup->hostgroup_name,
|
||||
'sort' => 'service_severity'
|
||||
),
|
||||
)),
|
||||
'List %u service that is currently in state PENDING on hosts in the host group "%s"',
|
||||
'List %u services which are currently in state PENDING on hosts in the host group "%s"',
|
||||
array($hostgroup->services_pending, $hostgroup->hostgroup_alias)
|
||||
|
|
Loading…
Reference in New Issue