mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 01:04:09 +02:00
parent
403c2d3495
commit
76cd8a0321
@ -315,6 +315,7 @@ class EventController extends Controller
|
|||||||
'last_hard_state' => 'statechangeevent_last_hard_state',
|
'last_hard_state' => 'statechangeevent_last_hard_state',
|
||||||
'output' => 'statechangeevent_output',
|
'output' => 'statechangeevent_output',
|
||||||
'long_output' => 'statechangeevent_long_output',
|
'long_output' => 'statechangeevent_long_output',
|
||||||
|
'check_source' => 'statechangeevent_check_source',
|
||||||
'host_name',
|
'host_name',
|
||||||
'service_description'
|
'service_description'
|
||||||
))
|
))
|
||||||
@ -510,6 +511,7 @@ class EventController extends Controller
|
|||||||
))),
|
))),
|
||||||
array($this->translate('Last state'), $this->state($isService, $event->last_state)),
|
array($this->translate('Last state'), $this->state($isService, $event->last_state)),
|
||||||
array($this->translate('Last hard state'), $this->state($isService, $event->last_hard_state)),
|
array($this->translate('Last hard state'), $this->state($isService, $event->last_hard_state)),
|
||||||
|
array($this->translate('Check source'), $event->check_source),
|
||||||
array(
|
array(
|
||||||
$this->translate('Output'),
|
$this->translate('Output'),
|
||||||
$this->pluginOutput($event->output) . $this->pluginOutput($event->long_output)
|
$this->pluginOutput($event->output) . $this->pluginOutput($event->long_output)
|
||||||
|
@ -20,7 +20,8 @@ class StatechangeeventQuery extends IdoQuery
|
|||||||
'statechangeevent_last_state' => 'sh.last_state',
|
'statechangeevent_last_state' => 'sh.last_state',
|
||||||
'statechangeevent_last_hard_state' => 'sh.last_hard_state',
|
'statechangeevent_last_hard_state' => 'sh.last_hard_state',
|
||||||
'statechangeevent_output' => 'sh.output',
|
'statechangeevent_output' => 'sh.output',
|
||||||
'statechangeevent_long_output' => 'sh.long_output'
|
'statechangeevent_long_output' => 'sh.long_output',
|
||||||
|
'statechangeevent_check_source' => 'sh.check_source'
|
||||||
),
|
),
|
||||||
'object' => array(
|
'object' => array(
|
||||||
'host_name' => 'o.name1',
|
'host_name' => 'o.name1',
|
||||||
|
@ -19,6 +19,7 @@ class Statechangeevent extends DataView
|
|||||||
'statechangeevent_last_hard_state',
|
'statechangeevent_last_hard_state',
|
||||||
'statechangeevent_output',
|
'statechangeevent_output',
|
||||||
'statechangeevent_long_output',
|
'statechangeevent_long_output',
|
||||||
|
'statechangeevent_check_source',
|
||||||
'host_name',
|
'host_name',
|
||||||
'service_description'
|
'service_description'
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user