diff --git a/modules/monitoring/application/views/scripts/list/eventhistory.phtml b/modules/monitoring/application/views/scripts/list/eventhistory.phtml index 1b3a29971..32f61ca44 100644 --- a/modules/monitoring/application/views/scripts/list/eventhistory.phtml +++ b/modules/monitoring/application/views/scripts/list/eventhistory.phtml @@ -21,6 +21,8 @@
type; $stateName = 'invalid'; $isService = isset($event->service); switch ($event->type) { @@ -49,6 +51,11 @@ $title = $this->translate('Flapping'); $msg = $event->output; break; + case 'flapping_deleted': + $icon = 'ok'; + $title = $this->translate('Flapping Stopped'); + $msg = $event->output; + break; case 'hard_state': $icon = $isService ? 'service' : 'host'; $msg = '[ ' . $event->attempt . '/' . $event->max_attempts . ' ] ' . $event->output;