Sort by service_display_name too when sorting by service_severity
refs #8716
This commit is contained in:
parent
7ddd8d7ad2
commit
03d85ac6ae
|
@ -125,17 +125,26 @@ class ServiceStatus extends DataView
|
|||
return array(
|
||||
'service_severity' => array(
|
||||
'columns' => array(
|
||||
'service_severity',
|
||||
'service_last_state_change'
|
||||
'service_severity DESC',
|
||||
'service_last_state_change DESC',
|
||||
'service_display_name ASC',
|
||||
'host_display_name ASC'
|
||||
)
|
||||
),
|
||||
'order' => self::SORT_DESC
|
||||
'service_display_name' => array(
|
||||
'columns' => array(
|
||||
'service_display_name',
|
||||
'host_display_name'
|
||||
),
|
||||
'order' => self::SORT_ASC
|
||||
),
|
||||
'host_severity' => array(
|
||||
'columns' => array(
|
||||
'host_severity',
|
||||
'host_last_state_change',
|
||||
),
|
||||
'order' => self::SORT_ASC
|
||||
'host_severity DESC',
|
||||
'host_last_state_change DESC',
|
||||
'host_display_name ASC',
|
||||
'service_display_name ASC'
|
||||
)
|
||||
),
|
||||
'host_display_name' => array(
|
||||
'columns' => array(
|
||||
|
|
Loading…
Reference in New Issue