mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
parent
a932f9d7c9
commit
f1cdc8c904
@ -90,6 +90,9 @@ class HostStatus extends DataView
|
|||||||
public function getSortRules()
|
public function getSortRules()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
'host_display_name' => array(
|
||||||
|
'order' => self::SORT_ASC
|
||||||
|
),
|
||||||
'host_severity' => array(
|
'host_severity' => array(
|
||||||
'columns' => array(
|
'columns' => array(
|
||||||
'host_severity DESC',
|
'host_severity DESC',
|
||||||
@ -97,9 +100,6 @@ class HostStatus extends DataView
|
|||||||
'host_display_name ASC'
|
'host_display_name ASC'
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
'host_display_name' => array(
|
|
||||||
'order' => self::SORT_ASC
|
|
||||||
),
|
|
||||||
'host_address' => array(
|
'host_address' => array(
|
||||||
'columns' => array(
|
'columns' => array(
|
||||||
'host_ipv4'
|
'host_ipv4'
|
||||||
|
@ -123,6 +123,13 @@ class ServiceStatus extends DataView
|
|||||||
public function getSortRules()
|
public function getSortRules()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
'service_display_name' => array(
|
||||||
|
'columns' => array(
|
||||||
|
'service_display_name',
|
||||||
|
'host_display_name'
|
||||||
|
),
|
||||||
|
'order' => self::SORT_ASC
|
||||||
|
),
|
||||||
'service_severity' => array(
|
'service_severity' => array(
|
||||||
'columns' => array(
|
'columns' => array(
|
||||||
'service_severity DESC',
|
'service_severity DESC',
|
||||||
@ -131,13 +138,6 @@ class ServiceStatus extends DataView
|
|||||||
'host_display_name ASC'
|
'host_display_name ASC'
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
'service_display_name' => array(
|
|
||||||
'columns' => array(
|
|
||||||
'service_display_name',
|
|
||||||
'host_display_name'
|
|
||||||
),
|
|
||||||
'order' => self::SORT_ASC
|
|
||||||
),
|
|
||||||
'host_severity' => array(
|
'host_severity' => array(
|
||||||
'columns' => array(
|
'columns' => array(
|
||||||
'host_severity DESC',
|
'host_severity DESC',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user