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