blob: 93b35b842dfc93e4deb5221cc00f53eb9bb1139a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\Detail;
use Icinga\Module\Icingadb\Common\ObjectInspectionDetail;
class HostInspectionDetail extends ObjectInspectionDetail
{
protected function assemble()
{
$this->add([
$this->createSourceLocation(),
$this->createLastCheckResult(),
$this->createAttributes(),
$this->createCustomVariables(),
$this->createRedisInfo()
]);
}
}
|