icingadb-web/library/Icingadb/Widget/Detail/ServiceInspectionDetail.php
2022-05-27 15:43:59 +02:00

21 lines
518 B
PHP

<?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()
]);
}
}