monitoring: Use the groupsummary query for the service group summary view
refs #8241
This commit is contained in:
parent
2dc6d5467d
commit
a9d6a94957
|
@ -5,11 +5,22 @@ namespace Icinga\Module\Monitoring\DataView;
|
||||||
|
|
||||||
class Servicegroupsummary extends Groupsummary
|
class Servicegroupsummary extends Groupsummary
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
public function getFilterColumns()
|
public function getFilterColumns()
|
||||||
{
|
{
|
||||||
return array('servicegroup');
|
return array('servicegroup');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public static function getQueryName()
|
||||||
|
{
|
||||||
|
return 'groupsummary';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue