mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
30 lines
623 B
HTML
30 lines
623 B
HTML
<navbar icon="fa fa-fw fa-list" title="Alerts" title-url="alerting">
|
|
</navbar>
|
|
|
|
<div class="page-container" >
|
|
<div class="page-header">
|
|
<h1>Alert history for {{ctrl.alert.title}}</h1>
|
|
</div>
|
|
|
|
<table class="filter-table">
|
|
<thead>
|
|
<th style="width: 68px">Status</th>
|
|
<th style="width: 160px">Time</th>
|
|
<th>Description</th>
|
|
</thead>
|
|
<tr ng-repeat="alertLog in ctrl.alertLogs">
|
|
<td>
|
|
<i class="icon-gf {{alertLog.iconCss}}"></i>
|
|
</td>
|
|
<td>
|
|
{{alertLog.humanTime}}
|
|
</td>
|
|
<td>
|
|
{{alertLog.info}}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
|