2013-04-02 17:14:02 +00:00
|
|
|
{{define "head"}}<!-- nix -->{{end}}
|
|
|
|
|
2013-03-27 16:40:01 +00:00
|
|
|
{{define "content"}}
|
2013-07-24 10:37:51 +00:00
|
|
|
<div class="container-fluid">
|
2015-07-30 19:39:05 +00:00
|
|
|
<h2 id="runtime">Runtime Information</h2>
|
2013-07-24 10:37:51 +00:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>Uptime</th>
|
2016-05-13 15:59:59 +00:00
|
|
|
<td>{{.Birth.UTC}}</td>
|
2013-07-24 10:37:51 +00:00
|
|
|
</tr>
|
2016-12-03 23:37:59 +00:00
|
|
|
<tr>
|
|
|
|
<th>Working Directory</th>
|
|
|
|
<td>{{.CWD}}</td>
|
|
|
|
</tr>
|
2018-03-07 15:14:46 +00:00
|
|
|
<tr>
|
|
|
|
<th>Number of goroutines</th>
|
|
|
|
<td>{{.GoroutineCount}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>GOMAXPROCS</th>
|
|
|
|
<td>{{.GOMAXPROCS}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>GOGC</th>
|
|
|
|
<td>{{.GOGC}}</td>
|
|
|
|
</tr>
|
2013-07-24 10:37:51 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2015-07-30 19:39:05 +00:00
|
|
|
<h2 id="buildinformation">Build Information</h2>
|
2013-07-24 10:37:51 +00:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2016-05-05 11:46:51 +00:00
|
|
|
<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>
|
2013-07-24 10:37:51 +00:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2016-11-23 17:23:09 +00:00
|
|
|
|
|
|
|
<h2 id="alertmanagers">Alertmanagers</h2>
|
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>Endpoint</th>
|
|
|
|
</tr>
|
|
|
|
{{range .Alertmanagers}}
|
|
|
|
<tr>
|
2017-04-25 05:42:33 +00:00
|
|
|
{{/* Alertmanager URLs always have Scheme, Host and Path set */}}
|
|
|
|
<td>{{.Scheme}}://<a href="{{.Scheme}}://{{.Host}}">{{.Host}}</a>{{.Path}}</td>
|
2016-11-23 17:23:09 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2013-07-24 10:37:51 +00:00
|
|
|
</div>
|
2013-03-27 16:40:01 +00:00
|
|
|
{{end}}
|