Reduce service_severity order by columns
Ordering by host and service display_name too here reduces performance and is not necessary.
This commit is contained in:
parent
c5f2fc5aa5
commit
8a6240fe02
|
@ -112,9 +112,7 @@ class ServiceStatus extends DataView
|
||||||
'service_severity' => array(
|
'service_severity' => array(
|
||||||
'columns' => array(
|
'columns' => array(
|
||||||
'service_severity',
|
'service_severity',
|
||||||
'service_last_state_change DESC',
|
'service_last_state_change DESC'
|
||||||
'service_display_name ASC',
|
|
||||||
'host_display_name ASC'
|
|
||||||
),
|
),
|
||||||
'order' => self::SORT_DESC
|
'order' => self::SORT_DESC
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue