mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<navbar icon="icon-gf icon-gf-monitoring" title="Alerting" title-url="alerting">
|
|
</navbar>
|
|
|
|
<div class="page-container" >
|
|
<div class="page-header">
|
|
<h1>Alerting</h1>
|
|
</div>
|
|
|
|
<div class="gf-form-inline">
|
|
<gf-form-switch class="gf-form" label="OK" label-class="width-5" checked="ctrl.filter.ok" on-change="ctrl.updateFilter()"></gf-form-switch>
|
|
<gf-form-switch class="gf-form" label="Warn" label-class="width-5" checked="ctrl.filter.warn" on-change="ctrl.updateFilter()"></gf-form-switch>
|
|
<gf-form-switch class="gf-form" label="Critical" label-class="width-5" checked="ctrl.filter.critical" on-change="ctrl.updateFilter()"></gf-form-switch>
|
|
</div>
|
|
|
|
<table class="grafana-options-table">
|
|
<thead>
|
|
<th style="min-width: 200px"><strong>Name</strong></th>
|
|
<th style="width: 1%">State</th>
|
|
<th style="width: 1%">Severity</th>
|
|
<th style="width: 1%"></th>
|
|
</thead>
|
|
<tr ng-repeat="alert in ctrl.alerts">
|
|
<td>
|
|
<a href="dashboard/{{alert.dashboardUri}}?panelId={{alert.panelId}}&fullscreen&edit&editorTab=Alerting">
|
|
{{alert.name}}
|
|
</a>
|
|
</td>
|
|
<td class="text-center">
|
|
{{alert.state}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{alert.severity}}
|
|
</td>
|
|
<td class="text-center">
|
|
<a href="dashboard/{{alert.dashboardUri}}?panelId={{alert.panelId}}&fullscreen&edit&editorTab=Alerting" class="btn btn-inverse btn-small">
|
|
<i class="fa fa-edit"></i>
|
|
edit
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|