summaryrefslogtreecommitdiffstats
path: root/modules/monitoring/library/Monitoring/DataView/Downtimeevent.php
blob: a1fc0f6238dc6ab36012a59168b25558837fde5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/* Icinga Web 2 | (c) 2017 Icinga Development Team | GPLv2+ */

namespace Icinga\Module\Monitoring\DataView;

class Downtimeevent extends DataView
{
    public function getColumns()
    {
        return array(
            'downtimeevent_id',
            'downtimeevent_entry_time',
            'downtimeevent_author_name',
            'downtimeevent_comment_data',
            'downtimeevent_is_fixed',
            'downtimeevent_scheduled_start_time',
            'downtimeevent_scheduled_end_time',
            'downtimeevent_was_started',
            'downtimeevent_actual_start_time',
            'downtimeevent_actual_end_time',
            'downtimeevent_was_cancelled',
            'downtimeevent_is_in_effect',
            'downtimeevent_trigger_time',
            'host_name',
            'service_description'
        );
    }

    public function getStaticFilterColumns()
    {
        return array('downtimeevent_id');
    }
}