mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-28 18:04:07 +01:00
21 lines
410 B
PHP
21 lines
410 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
namespace Icinga\Module\Monitoring\DataView;
|
|
|
|
class Servicegroupsummary extends Groupsummary
|
|
{
|
|
public function getFilterColumns()
|
|
{
|
|
return array('servicegroup');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getSearchColumns()
|
|
{
|
|
return array('servicegroup', 'servicegroup_alias');
|
|
}
|
|
}
|