monitoring: Support sorting downtimes by host and service display_name
refs #7843
This commit is contained in:
parent
5862fc98a5
commit
91b7c31cda
|
@ -51,10 +51,17 @@ class Downtime extends DataView
|
|||
'downtime_start' => array(
|
||||
'order' => self::SORT_DESC
|
||||
),
|
||||
'downtime_host' => array(
|
||||
'host_display_name' => array(
|
||||
'columns' => array(
|
||||
'downtime_host',
|
||||
'downtime_service'
|
||||
'host_display_name',
|
||||
'service_display_name'
|
||||
),
|
||||
'order' => self::SORT_ASC
|
||||
),
|
||||
'service_display_name' => array(
|
||||
'columns' => array(
|
||||
'service_display_name',
|
||||
'host_display_name'
|
||||
),
|
||||
'order' => self::SORT_ASC
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue