2023-08-03 04:11:41 -04:00
|
|
|
<?php
|
|
|
|
|
|
2026-02-23 16:57:03 -05:00
|
|
|
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2023-08-03 04:11:41 -04:00
|
|
|
namespace Icinga\Module\Businessprocess\Monitoring\DataView;
|
|
|
|
|
|
|
|
|
|
use Icinga\Data\ConnectionInterface;
|
|
|
|
|
use Icinga\Module\Businessprocess\Monitoring\Backend\Ido\Query\ServiceStatusQuery;
|
|
|
|
|
|
|
|
|
|
class ServiceStatus extends \Icinga\Module\Monitoring\DataView\Servicestatus
|
|
|
|
|
{
|
2025-12-03 03:14:37 -05:00
|
|
|
public function __construct(ConnectionInterface $connection, ?array $columns = null)
|
2023-08-03 04:11:41 -04:00
|
|
|
{
|
|
|
|
|
parent::__construct($connection, $columns);
|
|
|
|
|
|
|
|
|
|
$this->query = new ServiceStatusQuery($connection->getResource(), $columns);
|
|
|
|
|
}
|
|
|
|
|
}
|