51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\ProvidedHook\Monitoring;
|
|
|
|
use Icinga\Application\Config;
|
|
use Icinga\Module\Director\Db;
|
|
use Icinga\Module\Director\Objects\IcingaHost;
|
|
use Icinga\Module\Monitoring\Hook\ServiceActionsHook;
|
|
use Icinga\Module\Monitoring\Object\Service;
|
|
use Icinga\Web\Url;
|
|
|
|
class ServiceActions extends ServiceActionsHook
|
|
{
|
|
public function getActionsForService(Service $service)
|
|
{
|
|
$db = $this->db();
|
|
if (! $db) {
|
|
return array();
|
|
}
|
|
|
|
if (IcingaHost::exists($service->host_name, $db)) {
|
|
return array(
|
|
'Inspect' => Url::fromPath(
|
|
'director/inspect/object',
|
|
array(
|
|
'type' => 'service',
|
|
'plural' => 'services',
|
|
'name' => sprintf(
|
|
'%s!%s',
|
|
$service->host_name,
|
|
$service->service_description
|
|
)
|
|
)
|
|
)
|
|
);
|
|
} else {
|
|
return array();
|
|
}
|
|
}
|
|
|
|
protected function db()
|
|
{
|
|
$resourceName = Config::module('director')->get('db', 'resource');
|
|
if (! $resourceName) {
|
|
return false;
|
|
}
|
|
|
|
return Db::fromResourceName($resourceName);
|
|
}
|
|
}
|