2015-05-19 17:31:17 +02:00
|
|
|
<?php
|
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
|
|
|
|
namespace Icinga\Module\Monitoring\DataView;
|
|
|
|
|
2015-05-20 15:40:49 +02:00
|
|
|
/**
|
|
|
|
* Data view for the host group summary
|
|
|
|
*/
|
|
|
|
class Hostgroupsummary extends DataView
|
2015-05-19 17:31:17 +02:00
|
|
|
{
|
2015-05-20 15:40:49 +02:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getColumns()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'hostgroup_alias',
|
|
|
|
'hostgroup_name',
|
|
|
|
'hosts_down_handled',
|
|
|
|
'hosts_down_last_state_change_handled',
|
|
|
|
'hosts_down_last_state_change_unhandled',
|
|
|
|
'hosts_down_unhandled',
|
|
|
|
'hosts_pending',
|
|
|
|
'hosts_pending_last_state_change',
|
|
|
|
'hosts_unreachable_handled',
|
|
|
|
'hosts_unreachable_last_state_change_handled',
|
|
|
|
'hosts_unreachable_last_state_change_unhandled',
|
|
|
|
'hosts_unreachable_unhandled',
|
|
|
|
'hosts_up',
|
|
|
|
'hosts_up_last_state_change',
|
|
|
|
'services_critical_handled',
|
|
|
|
'services_critical_unhandled',
|
|
|
|
'services_ok',
|
|
|
|
'services_pending',
|
|
|
|
'services_total',
|
|
|
|
'services_unknown_handled',
|
|
|
|
'services_unknown_unhandled',
|
|
|
|
'services_warning_handled',
|
|
|
|
'services_warning_unhandled'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2015-05-19 17:31:17 +02:00
|
|
|
public function getFilterColumns()
|
|
|
|
{
|
|
|
|
return array('hostgroup');
|
|
|
|
}
|
2015-05-19 17:50:07 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getSearchColumns()
|
|
|
|
{
|
|
|
|
return array('hostgroup', 'hostgroup_alias');
|
|
|
|
}
|
2015-05-20 15:37:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public static function getQueryName()
|
|
|
|
{
|
|
|
|
return 'groupsummary';
|
|
|
|
}
|
2015-05-19 17:31:17 +02:00
|
|
|
}
|