cube->getDimensionAfter($name)) && isset($this->summaries->{$next->getName()})) {
$htm .= ' (' . $this->summaries->{$next->getName()}->hosts_cnt . ')';
}
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
. ''
. "\n "
. $sub
. $indent
. "\n";
}
return $main . $sub;
}
protected function makeBadgeHtml($class, $count)
{
$indent = str_repeat(' ', 3);
return sprintf(
'%s%s',
$indent,
$class,
$count
) . "\n";
}
protected function getDetailsBaseUrl()
{
return 'cube/hosts/details';
}
}