Show the check source directly below the state the check discovered

This commit is contained in:
Constantin Matheis 2019-04-12 14:45:06 +02:00
parent 76cd8a0321
commit 885640ef99
1 changed files with 1 additions and 1 deletions

View File

@ -504,6 +504,7 @@ class EventController extends Controller
$details = array( $details = array(
array($this->translate('State time'), DateFormatter::formatTime($event->state_time)), array($this->translate('State time'), DateFormatter::formatTime($event->state_time)),
array($this->translate('State'), $this->state($isService, $event->state)), array($this->translate('State'), $this->state($isService, $event->state)),
array($this->translate('Check source'), $event->check_source),
array($this->translate('Check attempt'), $this->view->escape(sprintf( array($this->translate('Check attempt'), $this->view->escape(sprintf(
$this->translate('%d of %d'), $this->translate('%d of %d'),
(int) $event->current_check_attempt, (int) $event->current_check_attempt,
@ -511,7 +512,6 @@ 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)