blob: b2f2cae0dbd14a417acdea34357405486fd6c62e (
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
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Web\Navigation\Renderer;
use Icinga\Module\Icingadb\Common\Auth;
use Icinga\Module\Icingadb\Common\Links;
use Icinga\Module\Icingadb\Model\ServicestateSummary;
use ipl\Web\Url;
class ServiceProblemsBadge extends ProblemsBadge
{
use Auth;
protected function fetchProblemsCount()
{
$summary = ServicestateSummary::on($this->getDb());
$this->applyRestrictions($summary);
$count = (int) $summary->first()->services_critical_unhandled;
if ($count) {
$this->setTitle(sprintf(
tp('One unhandled service critical', '%d unhandled services critical', $count),
$count
));
}
return $count;
}
protected function getUrl(): Url
{
return Links::services()
->setParams(['service.state.is_problem' => 'y', 'sort' => 'service.state.severity desc']);
}
}
|