Implement classes HostgroupsummaryQuery and ServicegroupsummaryQuery

Without this the Hostgroupsummary and Servicegroupsummary DataViews would not work

refs #8241
This commit is contained in:
Alexander A. Klimov 2015-05-20 10:43:54 +02:00
parent 0b937c86dc
commit 9b4f08eb43
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Module\Monitoring\Backend\Ido\Query;
class HostgroupsummaryQuery extends GroupsummaryQuery
{
}

View File

@ -0,0 +1,8 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Module\Monitoring\Backend\Ido\Query;
class ServicegroupsummaryQuery extends GroupsummaryQuery
{
}