mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-28 01:59:34 -05:00
24 lines
704 B
PHP
24 lines
704 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Businessprocess\ProvidedHook\Monitoring;
|
|
|
|
use Exception;
|
|
use Icinga\Application\Config;
|
|
use Icinga\Module\Businessprocess\BpConfig;
|
|
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)
|
|
{
|
|
$label = mt('businessprocess', 'Business Impact');
|
|
return array(
|
|
$label => sprintf(
|
|
'businessprocess/node/impact?name=%s',
|
|
rawurlencode(BpConfig::joinNodeName($service->getHost()->getName(), $service->getName()))
|
|
)
|
|
);
|
|
}
|
|
}
|