mirror of
https://github.com/prometheus/alertmanager
synced 2025-02-20 12:46:59 +00:00
Also add Makefile infrastructure for gathering status information. Change-Id: Id7dcb9655d0b6024bf47d5dd41a7655df3635922
45 lines
1.0 KiB
HTML
45 lines
1.0 KiB
HTML
{{define "statusTabClass"}}active{{end}}
|
|
|
|
{{define "head"}}{{end}}
|
|
|
|
{{define "content"}}
|
|
<div class="container-fluid">
|
|
<h2>Runtime Information</h2>
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
<tbody>
|
|
<tr>
|
|
<th>Uptime</th>
|
|
<td>{{.Birth}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<h2>Build Information</h2>
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
<tbody>
|
|
{{range $key, $value := .BuildInfo}}
|
|
<tr>
|
|
<th scope="row">{{$key}}</th>
|
|
<td>{{$value}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
|
|
<h2>Configuration</h2>
|
|
<pre>{{.Config}}</pre>
|
|
|
|
<h2>Startup Flags</h2>
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
<tbody>
|
|
{{range $key, $value := .Flags}}
|
|
<tr>
|
|
<th scope="row">{{$key}}</th>
|
|
<td>{{$value}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{end}}
|