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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<?php
// Icinga Web 2 Cube Module | (c) 2016 Icinga GmbH | GPLv2
namespace Icinga\Module\Cube\CubeRenderer;
use Icinga\Module\Cube\CubeRenderer;
class HostStatusCubeRenderer extends CubeRenderer
{
protected function renderDimensionLabel($name, $row)
{
$htm = parent::renderDimensionLabel($name, $row);
if (($next = $this->cube->getDimensionAfter($name)) && isset($this->summaries->{$next->getName()})) {
$htm .= ' <span class="sum">(' . $this->summaries->{$next->getName()}->hosts_cnt . ')</span>';
}
return $htm;
}
protected function getDimensionClasses($name, $row)
{
$classes = parent::getDimensionClasses($name, $row);
$sums = $row;
if ($sums->hosts_down > 0) {
$classes[] = 'critical';
if ((int) $sums->hosts_unhandled_down === 0) {
$classes[] = 'handled';
}
} elseif ($sums->hosts_unreachable > 0) {
$classes[] = 'unreachable';
if ((int) $sums->hosts_unhandled_unreachable === 0) {
$classes[] = 'handled';
}
} else {
$classes[] = 'ok';
}
return $classes;
}
public function renderFacts($facts)
{
$indent = str_repeat(' ', 3);
$parts = array();
if ($facts->hosts_unhandled_down > 0) {
$parts['critical'] = $facts->hosts_unhandled_down;
}
if ($facts->hosts_down > 0 && $facts->hosts_down > $facts->hosts_unhandled_down) {
$parts['critical handled'] = $facts->hosts_down - $facts->hosts_unhandled_down;
}
if ($facts->hosts_unhandled_unreachable > 0) {
$parts['unreachable'] = $facts->hosts_unhandled_unreachable;
}
if ($facts->hosts_unreachable > 0 && $facts->hosts_unreachable > $facts->hosts_unhandled_unreachable) {
$parts['unreachable handled'] = $facts->hosts_unreachable - $facts->hosts_unhandled_unreachable;
}
if ($facts->hosts_cnt > $facts->hosts_down && $facts->hosts_cnt > $facts->hosts_unreachable) {
$parts['ok'] = $facts->hosts_cnt - $facts->hosts_down - $facts->hosts_unreachable;
}
$main = '';
$sub = '';
foreach ($parts as $class => $count) {
if ($main === '') {
$main = $this->makeBadgeHtml($class, $count);
} else {
$sub .= $this->makeBadgeHtml($class, $count);
}
}
if ($sub !== '') {
$sub = $indent
. '<span class="others">'
. "\n "
. $sub
. $indent
. "</span>\n";
}
return $main . $sub;
}
protected function makeBadgeHtml($class, $count)
{
$indent = str_repeat(' ', 3);
return sprintf(
'%s<span class="%s">%s</span>',
$indent,
$class,
$count
) . "\n";
}
protected function getDetailsBaseUrl()
{
return 'cube/hosts/details';
}
}
|