parent
403c2d3495
commit
76cd8a0321
|
@ -315,6 +315,7 @@ class EventController extends Controller
|
|||
'last_hard_state' => 'statechangeevent_last_hard_state',
|
||||
'output' => 'statechangeevent_output',
|
||||
'long_output' => 'statechangeevent_long_output',
|
||||
'check_source' => 'statechangeevent_check_source',
|
||||
'host_name',
|
||||
'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 hard state'), $this->state($isService, $event->last_hard_state)),
|
||||
array($this->translate('Check source'), $event->check_source),
|
||||
array(
|
||||
$this->translate('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_hard_state' => 'sh.last_hard_state',
|
||||
'statechangeevent_output' => 'sh.output',
|
||||
'statechangeevent_long_output' => 'sh.long_output'
|
||||
'statechangeevent_long_output' => 'sh.long_output',
|
||||
'statechangeevent_check_source' => 'sh.check_source'
|
||||
),
|
||||
'object' => array(
|
||||
'host_name' => 'o.name1',
|
||||
|
|
|
@ -19,6 +19,7 @@ class Statechangeevent extends DataView
|
|||
'statechangeevent_last_hard_state',
|
||||
'statechangeevent_output',
|
||||
'statechangeevent_long_output',
|
||||
'statechangeevent_check_source',
|
||||
'host_name',
|
||||
'service_description'
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue