summaryrefslogtreecommitdiffstats
path: root/modules/monitoring/library/Monitoring/Backend/Ido/Query/DowntimeeventQuery.php
blob: 04e6aa56c86d03e81348836ddb354448004a03c6 (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
34
35
36
37
38
39
40
41
42
<?php
/* Icinga Web 2 | (c) 2017 Icinga Development Team | GPLv2+ */

namespace Icinga\Module\Monitoring\Backend\Ido\Query;

/**
 * Query for host and service downtime events
 */
class DowntimeeventQuery extends IdoQuery
{
    protected $columnMap = array(
        'downtimeevent' => array(
            'downtimeevent_id'                      => 'dth.downtimehistory_id',
            'downtimeevent_entry_time'              => 'UNIX_TIMESTAMP(dth.entry_time)',
            'downtimeevent_author_name'             => 'dth.author_name',
            'downtimeevent_comment_data'            => 'dth.comment_data',
            'downtimeevent_is_fixed'                => 'dth.is_fixed',
            'downtimeevent_scheduled_start_time'    => 'UNIX_TIMESTAMP(dth.scheduled_start_time)',
            'downtimeevent_scheduled_end_time'      => 'UNIX_TIMESTAMP(dth.scheduled_end_time)',
            'downtimeevent_was_started'             => 'dth.was_started',
            'downtimeevent_actual_start_time'       => 'UNIX_TIMESTAMP(dth.actual_start_time)',
            'downtimeevent_actual_end_time'         => 'UNIX_TIMESTAMP(dth.actual_end_time)',
            'downtimeevent_was_cancelled'           => 'dth.was_cancelled',
            'downtimeevent_is_in_effect'            => 'dth.is_in_effect',
            'downtimeevent_trigger_time'            => 'UNIX_TIMESTAMP(dth.trigger_time)'
        ),
        'object' => array(
            'host_name'             => 'o.name1',
            'service_description'   => 'o.name2'
        )
    );

    protected function joinBaseTables()
    {
        $this->select()
            ->from(array('dth' => $this->prefix . 'downtimehistory'), array())
            ->join(array('o' => $this->prefix . 'objects'), 'dth.object_id = o.object_id', array());

        $this->joinedVirtualTables['downtimeevent'] = true;
        $this->joinedVirtualTables['object'] = true;
    }
}