mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 15:44:05 -08:00
da8cb10b43
I got feedback from different sources about rules and targets being too heavy in the status tab if their are lots of them. This change also allows for more fine-granular locking.
46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
{{define "head"}}<!-- nix -->{{end}}
|
|
|
|
{{define "content"}}
|
|
<div class="container-fluid">
|
|
<h2 id="runtime">Runtime Information</h2>
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
<tbody>
|
|
<tr>
|
|
<th>Uptime</th>
|
|
<td>{{.Birth.UTC}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<h2 id="buildinformation">Build Information</h2>
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">Version</th>
|
|
<td>{{.Version.Version}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Revision</th>
|
|
<td>{{.Version.Revision}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Branch</th>
|
|
<td>{{.Version.Branch}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">BuildUser</th>
|
|
<td>{{.Version.BuildUser}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">BuildDate</th>
|
|
<td>{{.Version.BuildDate}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">GoVersion</th>
|
|
<td>{{.Version.GoVersion}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{end}}
|