prometheus/web/ui/templates/status.html

117 lines
3.8 KiB
HTML
Raw Normal View History

{{define "head"}}<!-- nix -->{{end}}
{{define "content"}}
2013-07-24 10:37:51 +00:00
<div class="container-fluid">
<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>
<td>{{.Status.Birth.UTC}}</td>
2013-07-24 10:37:51 +00:00
</tr>
</tbody>
</table>
<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>
<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>
<h2 id="configuration">Configuration</h2>
<pre>{{.Status.Config}}</pre>
<h2 id="rules">Rules</h2>
<pre>{{range call .Status.Rules}}{{.HTMLSnippet pathPrefix}}<br/>{{end}}</pre>
<h2 id="targets">Targets</h2>
<table class="table table-condensed table-bordered table-striped table-hover">
{{range $job, $pool := call .Status.TargetPools}}
2013-07-15 13:11:41 +00:00
<thead>
2013-07-24 10:37:51 +00:00
<tr><th colspan="5" class="job_header">{{$job}}</th></tr>
2013-07-15 13:11:41 +00:00
<tr>
<th>Endpoint</th>
<th>State</th>
2016-02-15 09:49:50 +00:00
<th>Labels</th>
<th>Last Scrape</th>
2013-07-15 13:11:41 +00:00
<th>Error</th>
</tr>
</thead>
<tbody>
{{range $pool}}
2013-07-15 13:11:41 +00:00
<tr>
<td>
<a href="{{.URL | globalURL}}">{{.URL.Scheme}}://{{.URL.Host}}{{.URL.Path}}</a><br>
{{range $label, $values := .URL.Query }}
{{range $i, $value := $values}}
<span class="label label-primary">{{$label}}="{{$value}}"</span>
{{end}}
{{end}}
2013-07-15 13:11:41 +00:00
</td>
<td>
<span class="alert alert-{{ .Health | healthToClass }} state_indicator text-uppercase">
{{.Health}}
</span>
2013-07-15 13:11:41 +00:00
</td>
<td>
<span class="cursor-pointer" data-toggle="tooltip" title="" data-html=true data-original-title="<b>Before relabeling:</b>{{range $k, $v := .MetaLabels}}<br>{{$k | html | html}}=&quot;{{$v | html | html}}&quot;{{end}}">
2016-02-15 09:49:50 +00:00
{{$labels := stripLabels .Labels "job" "instance"}}
{{range $label, $value := $labels}}
<span class="label label-primary">{{$label}}="{{$value}}"</span>
{{else}}
<span class="label label-default">none</span>
{{end}}
</span>
2013-07-15 13:11:41 +00:00
</td>
<td>
{{if .LastScrape.IsZero}}Never{{else}}{{since .LastScrape}} ago{{end}}
2013-07-15 13:11:41 +00:00
</td>
<td>
{{if .LastError}}
<span class="alert alert-danger state_indicator">{{.LastError}}</span>
2013-07-15 13:11:41 +00:00
{{end}}
</td>
</tr>
{{end}}
</tbody>
{{end}}
</table>
2013-04-25 09:57:08 +00:00
<h2 id="startupflags">Startup Flags</h2>
2013-07-24 10:37:51 +00:00
<table class="table table-condensed table-bordered table-striped table-hover">
<tbody>
{{range $key, $value := .Status.Flags}}
<tr>
2013-07-24 10:37:51 +00:00
<th scope="row">{{$key}}</th>
<td>{{$value}}</td>
</tr>
{{end}}
2013-07-24 10:37:51 +00:00
</tbody>
</table>
</div>
{{end}}