summaryrefslogtreecommitdiffstats
path: root/library/Graphite/Web/Widget/Graphs/Service.php
blob: 5fc0143ac1ea943b115f0ba5c358e78aefa7be80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php

namespace Icinga\Module\Graphite\Web\Widget\Graphs;

use Icinga\Module\Graphite\Graphing\Template;
use Icinga\Module\Graphite\Web\Widget\Graphs;
use Icinga\Module\Monitoring\Object\Service as MonitoredService;
use Icinga\Web\Url;

class Service extends Graphs
{
    protected $objectType = 'service';

    /**
     * The service to render the graphs for
     *
     * @var MonitoredService
     */
    protected $object;

    protected function getImageBaseUrl()
    {
        return Url::fromPath('graphite/graph/service');
    }

    protected function getGraphsListBaseUrl()
    {
        return Url::fromPath(
            'graphite/list/services',
            ['host' => $this->object->getHost()->getName(), 'service' => $this->object->getName()]
        );
    }

    protected function filterImageUrl(Url $url)
    {
        return $url
            ->setParam('host.name', $this->object->getHost()->getName())
            ->setParam('service.name', $this->object->getName());
    }

    protected function getMonitoredObjectIdentifier()
    {
        return $this->object->getHost()->getName() . ':' . $this->object->getName();
    }

    protected function designedForObjectType(Template $template)
    {
        foreach ($template->getCurves() as $curve) {
            if (in_array('service_name_template', $curve[0]->getMacros())) {
                return true;
            }
        }

        return false;
    }
}