Reduce host_severity order by columns

Ordering by host_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 e7776d08a9
commit ee429f54d0
1 changed files with 1 additions and 2 deletions

View File

@ -108,8 +108,7 @@ class HostStatus extends DataView
'host_severity' => array(
'columns' => array(
'host_severity',
'host_last_state_change DESC',
'host_display_name ASC'
'host_last_state_change DESC'
),
'order' => self::SORT_DESC
),