icingaweb2-module-director/library/Director/Dashboard/Dashlet/ServiceObjectDashlet.php

21 lines
384 B
PHP

<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class ServiceObjectDashlet extends Dashlet
{
protected $icon = 'services';
protected $requiredStats = array('service', 'servicegroup');
public function getTitle()
{
return $this->translate('Monitored Services');
}
public function getUrl()
{
return 'director/services';
}
}