blob: 7827e864fd8b91050fac5d1d915a3a768b55e985 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<?php
namespace Icinga\Module\Graphite\Web\Widget\Graphs\Icingadb;
use Icinga\Module\Graphite\Graphing\Template;
use Icinga\Module\Graphite\Web\Widget\Graphs;
use Icinga\Web\Url;
use Icinga\Module\Icingadb\Model\Service;
class IcingadbService extends Graphs
{
protected $objectType = 'service';
/**
* The icingadb service to render the graphs for
*
* @var Service
*/
protected $object;
protected function getGraphsListBaseUrl()
{
return Url::fromPath(
'graphite/services',
['service.name' => $this->object->name, 'host.name' => $this->object->host->name]
);
}
protected function filterImageUrl(Url $url)
{
return $url
->setParam('host.name', $this->object->host->name)
->setParam('service.name', $this->object->name);
}
public function createHostTitle()
{
return $this->object->host->name;
}
public function createServiceTitle()
{
return ' : ' . $this->object->name;
}
public function getObjectType()
{
return $this->objectType;
}
protected function getMonitoredObjectIdentifier()
{
return $this->object->host->name . ':' . $this->object->name;
}
protected function getImageBaseUrl()
{
return Url::fromPath('graphite/graph/service');
}
protected function designedforObjectType(Template $template)
{
foreach ($template->getCurves() as $curve) {
if (in_array('service_name_template', $curve[0]->getMacros())) {
return true;
}
}
return false;
}
}
|