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:
Eric Lippmann 2017-07-27 15:03:12 +02:00 committed by Eric Lippmann
parent c5f2fc5aa5
commit 8a6240fe02
1 changed files with 1 additions and 3 deletions

View File

@ -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
), ),