mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-10 17:11:16 -04:00
parent
8b2c0191c4
commit
42e93ffb63
1 changed files with 11 additions and 1 deletions
|
|
@ -15,6 +15,7 @@ class Eventgrid extends DataView
|
|||
return array(
|
||||
'day',
|
||||
'cnt_events',
|
||||
'objecttype_id',
|
||||
'cnt_up',
|
||||
'cnt_down_hard',
|
||||
'cnt_down',
|
||||
|
|
@ -22,12 +23,16 @@ class Eventgrid extends DataView
|
|||
'cnt_unreachable',
|
||||
'cnt_unknown_hard',
|
||||
'cnt_unknown',
|
||||
'cnt_unknown_hard',
|
||||
'cnt_critical',
|
||||
'cnt_critical_hard',
|
||||
'cnt_warning',
|
||||
'cnt_warning_hard',
|
||||
'cnt_ok',
|
||||
'host_name',
|
||||
'service_description',
|
||||
'timestamp',
|
||||
'servicegroup_name',
|
||||
'hostgroup_name'
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -39,4 +44,9 @@ class Eventgrid extends DataView
|
|||
)
|
||||
);
|
||||
}
|
||||
|
||||
public function getFilterColumns()
|
||||
{
|
||||
return array('host', 'service');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue