Added Check source to Details view.

refs #3687
This commit is contained in:
Constantin Matheis 2019-03-07 10:30:18 +01:00
parent 403c2d3495
commit 76cd8a0321
3 changed files with 5 additions and 1 deletions

View File

@ -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)

View File

@ -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',

View File

@ -19,6 +19,7 @@ class Statechangeevent extends DataView
'statechangeevent_last_hard_state',
'statechangeevent_output',
'statechangeevent_long_output',
'statechangeevent_check_source',
'host_name',
'service_description'
);