| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <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>
- <div class="gf-form-group section" >
- <h5 class="section-heading">Thresholds</h5>
- <div class="gf-form">
- <span class="gf-form-label width-9">
- <i class="icon-gf icon-gf-warn alert-icon-warn"></i>
- Warn level
- </span>
- <div class="gf-form-label max-width-10">
- {{ctrl.alert.warnOperator}}
- </div>
- <div class="gf-form-label max-width-10">
- {{ctrl.alert.warnLevel}}
- </div>
- </div>
- <div class="gf-form">
- <span class="gf-form-label width-9">
- <i class="icon-gf icon-gf-critical alert-icon-critical"></i>
- Critical level
- </span>
- <div class="gf-form-label max-width-10">
- {{ctrl.alert.critOperator}}
- </div>
- <div class="gf-form-label max-width-10">
- {{ctrl.alert.critLevel}}
- </div>
- </div>
- </div>
- <div class="gf-form-group section" >
- <h5 class="section-heading">Aggregators</h5>
- <div class="gf-form">
- <span class="gf-form-label width-12">
- Aggregator
- </span>
- <div class="gf-form-label max-width-10">
- {{ctrl.alert.aggregator}}
- </div>
- </div>
- <div class="gf-form">
- <span class="gf-form-label width-12">Query range (seconds)</span>
- <span class="gf-form-label width-10">{{ctrl.alert.queryRange}}</span>
- </div>
- <div class="gf-form">
- <span class="gf-form-label width-12">Frequency (seconds)</span>
- <span class="gf-form-label width-10">{{ctrl.alert.frequency}}</span>
- </div>
- </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>
|