prometheus/web/ui/templates/rules.html

38 lines
989 B
HTML
Raw Normal View History

2017-11-17 07:18:34 -08:00
{{define "head"}}
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/css/rules.css?v={{ buildVersion }}">
{{end}}
{{define "content"}}
<div class="container-fluid">
<h2>Rules</h2>
2017-11-17 07:18:34 -08:00
<table class="table table-bordered">
{{range .RuleGroups}}
<thead>
<tr>
<td><h2>{{.Name}}</h2></td>
<td><h2>{{humanizeDuration .GetEvaluationTime.Seconds}}</h2></td>
2017-11-17 07:18:34 -08:00
</tr>
</thead>
<tbody>
<tr>
<td style="font-weight:bold">Rule</td>
<td style="font-weight:bold">Evaluation Time</td>
</tr>
{{range .Rules}}
<tr>
<td class="rule_cell">{{.HTMLSnippet pathPrefix}}</td>
<td>{{humanizeDuration .GetEvaluationTime.Seconds}}</td>
2017-11-17 07:18:34 -08:00
</tr>
{{end}}
{{else}}
<tr>
<td>
No rules defined
</td>
</tr>
2017-11-17 07:18:34 -08:00
{{end}}
</tbody>
2017-11-17 07:18:34 -08:00
</table>
</div>
{{end}}