mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-07-12 02:55:41 -04:00
21 lines
515 B
PHP
21 lines
515 B
PHP
<?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()
|
|
]);
|
|
}
|
|
}
|