mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-19 08:41:16 -04:00
28 lines
726 B
PHP
28 lines
726 B
PHP
<?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\HoststateSummary;
|
|
use ipl\Web\Url;
|
|
|
|
class HostProblemsBadge extends ProblemsBadge
|
|
{
|
|
use Auth;
|
|
|
|
protected function fetchProblemsCount()
|
|
{
|
|
$summary = HoststateSummary::on($this->getDb())->with('state');
|
|
$this->applyRestrictions($summary);
|
|
|
|
return $summary->first()->hosts_down_unhandled;
|
|
}
|
|
|
|
protected function getUrl(): Url
|
|
{
|
|
return Links::hosts()->setParams(['host.state.is_problem' => 'y', 'sort' => 'host.state.severity desc']);
|
|
}
|
|
}
|