mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-22 07:40:30 -05:00
17 lines
509 B
PHP
17 lines
509 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
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
|
||
|
|
{
|
||
|
|
public function __construct(ConnectionInterface $connection, array $columns = null)
|
||
|
|
{
|
||
|
|
parent::__construct($connection, $columns);
|
||
|
|
|
||
|
|
$this->query = new ServiceStatusQuery($connection->getResource(), $columns);
|
||
|
|
}
|
||
|
|
}
|