summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/ObjectsDashboard.php
blob: 02c2a4b7de4e3f0b9dff96b12ceb6a0b91bf7f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace Icinga\Module\Director\Dashboard;

class ObjectsDashboard extends Dashboard
{
    protected $dashletNames = array(
        'HostObject',
        'ServiceObject',
        'CommandObject',
    );

    public function getTitle()
    {
        return $this->translate('Define whatever you want to be monitored');
    }
}