summaryrefslogtreecommitdiffstats
path: root/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventgridhostsQuery.php
blob: 62d92e4b0a92cbc50591872847671000c28799fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

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

class EventgridhostsQuery extends EventgridQuery
{

    /**
     * Join history related columns and tables, hosts only
     */
    protected function joinHistory()
    {
        $this->fetchHistoryColumns = true;
        $this->requireVirtualTable('hosts');
    }
}