parent
a61e309402
commit
02777c58ac
|
@ -39,6 +39,8 @@ class Monitoring_AlertsummaryController extends Controller
|
|||
|
||||
$this->notificationData = $this->createNotificationData();
|
||||
$this->problemData = $this->createProblemData();
|
||||
|
||||
$tabs->setTitle($this->translate('Alertsummary Navigation'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -8,25 +8,63 @@
|
|||
</div>
|
||||
|
||||
<div class="content alertsummary">
|
||||
<!-- <h1><?= $this->translate('Alert summary'); ?></h1> -->
|
||||
<h1 tabindex="-1">
|
||||
<?= $this->translate('Alert summary'); ?>
|
||||
</h1>
|
||||
<div class="skip-links skip-links-inline">
|
||||
<h2 class="sr-only"><?= $this->translate('Skip Links'); ?></h2>
|
||||
<ul>
|
||||
<li>
|
||||
<a tabindex="0" href="#alertsummary-notifications">
|
||||
<?= t('Skip To Notification Chart'); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a tabindex="0" href="#alertsummary-reaction-time">
|
||||
<?= t('Skip To Reaction Time Chart'); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a tabindex="0" href="#alertsummary-trend">
|
||||
<?= t('Skip To Trend'); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a tabindex="0" href="#alertsummary-top5">
|
||||
<?= t('Sktip To Top 5 Alerts'); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a tabindex="0" href="#alertsummary-history">
|
||||
<?= t('Skip To Alert History'); ?>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="hbox">
|
||||
<div class="hbox-item">
|
||||
<h2><?= $this->translate('Notifications and Problems'); ?></h2>
|
||||
<h2 tabindex="-1" id="alertsummary-notifications">
|
||||
<?= $this->translate('Notifications and Problems'); ?>
|
||||
</h2>
|
||||
<div style="width: 400px; height: 400px;">
|
||||
<?= $defectChart->render(); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hbox-item">
|
||||
<h2><?= $this->translate('Time to Reaction (Ack, Recover)'); ?></h2>
|
||||
<h2 tabindex="-1" id="alertsummary-reaction-time">
|
||||
<?= $this->translate('Time to Reaction (Ack, Recover)'); ?>
|
||||
</h2>
|
||||
<div style="width: 400px; height: 400px;">
|
||||
<?= $healingChart->render(); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2><?= $this->translate('Trend'); ?></h2>
|
||||
<h2 tabindex="-1" id="alertsummary-trend">
|
||||
<?= $this->translate('Trend'); ?>
|
||||
</h2>
|
||||
|
||||
<div class="alertsummary-flex-container">
|
||||
<div class="alertsummary-flex">
|
||||
|
@ -53,7 +91,9 @@
|
|||
</div>
|
||||
|
||||
<?php if ($this->recentAlerts): ?>
|
||||
<h1><?= $this->translate('Top 5 Recent Alerts'); ?></h1>
|
||||
<h2 tabindex="-1" id="alertsummary-top5">
|
||||
<?= $this->translate('Top 5 Recent Alerts'); ?>
|
||||
</h2>
|
||||
|
||||
<div class="alertsummary-flex-container">
|
||||
<div class="alertsummary-flex">
|
||||
|
@ -66,7 +106,9 @@
|
|||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<h1><?= $this->translate('History'); ?></h1>
|
||||
<h2 tabindex="-1" id="alertsummary-history">
|
||||
<?= $this->translate('History'); ?>
|
||||
</h2>
|
||||
<div class="alertsummary-flex-container">
|
||||
<div class="alertsummary-flex">
|
||||
<?= $this->partial('list/notifications.phtml', array(
|
||||
|
|
Loading…
Reference in New Issue