blob: f29ee9bf0671d67a3bbf862df22ff8a4d8760221 (
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 ServiceInspectionDetail extends ObjectInspectionDetail
{
protected function assemble()
{
$this->add([
$this->createSourceLocation(),
$this->createLastCheckResult(),
$this->createAttributes(),
$this->createCustomVariables(),
$this->createRedisInfo()
]);
}
}
|