blob: 2b0a614b8f574ce9046df4e96a8d5cd46fe729dd (
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
|
<?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\Host;
class IcingadbHost extends Graphs
{
protected $objectType = 'host';
/**
* The Icingadb host to render the graphs for
*
* @var Host
*/
protected $object;
protected function getGraphsListBaseUrl()
{
return Url::fromPath('graphite/hosts', ['host.name' => $this->object->name]);
}
protected function filterImageUrl(Url $url)
{
return $url->setParam('host.name', $this->object->name);
}
public function createHostTitle()
{
return $this->object->name;
}
public function getObjectType()
{
return $this->objectType;
}
protected function getMonitoredObjectIdentifier()
{
return $this->object->name;
}
protected function getImageBaseUrl()
{
return Url::fromPath('graphite/graph/host');
}
protected function designedForObjectType(Template $template)
{
foreach ($template->getCurves() as $curve) {
if (in_array('host_name_template', $curve[0]->getMacros())) {
return true;
}
}
return false;
}
}
|