Files
grafana/public/app/features/alerting/partials/alert_log.html

30 lines
623 B
HTML
Raw Normal View History

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