monitoring: Support host and service display_name columns in the Downtime data view

refs #7843
This commit is contained in:
Eric Lippmann 2015-01-21 12:52:58 +01:00
parent 85aa447516
commit 5f0b809619

View File

@ -32,7 +32,9 @@ class Downtime extends DataView
'downtime_host', 'downtime_host',
'downtime_service', 'downtime_service',
'downtime_host_state', 'downtime_host_state',
'downtime_service_state' 'downtime_service_state',
'host_display_name',
'service_display_name'
); );
} }
@ -51,7 +53,7 @@ class Downtime extends DataView
'downtime_service' 'downtime_service'
), ),
'order' => self::SORT_ASC 'order' => self::SORT_ASC
), )
); );
} }
} }