prometheus/web/blob/templates/status.html

96 lines
2.9 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>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}}</td>
2013-07-24 10:37:51 +00:00
</tr>
</tbody>
</table>
<h2>Build Information</h2>
2013-07-24 10:37:51 +00:00
<table class="table table-condensed table-bordered table-striped table-hover">
<tbody>
{{range $key, $value := .Info}}
2013-07-24 10:37:51 +00:00
<tr>
<th scope="row">{{$key}}</th>
<td>{{$value}}</td>
</tr>
{{end}}
</tbody>
</table>
2013-04-25 09:57:08 +00:00
<h2>Configuration</h2>
<pre>{{.Status.Config}}</pre>
<h2>Rules</h2>
<pre>{{range call .Status.Rules}}{{.HTMLSnippet pathPrefix}}<br/>{{end}}</pre>
2013-04-25 09:57:08 +00:00
<h2>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>
<th>Base 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}}</a>
2013-07-15 13:11:41 +00:00
</td>
<td>
2015-06-15 10:50:53 +00:00
<span class="alert alert-{{ .Status.Health | healthToClass }} target_status_alert">
2015-05-19 13:38:51 +00:00
{{.Status.Health}}
</span>
2013-07-15 13:11:41 +00:00
</td>
<td>
<span class="cursor-pointer" data-toggle="tooltip" title="" data-original-title="Before relabeling: {{.MetaLabels}}">
{{$baseLabels := stripLabels .BaseLabels "job" "instance"}}
{{if $baseLabels}}
{{range $label, $value := $baseLabels}}
<span class="label label-primary">{{$label}}="{{$value}}"</span>
{{end}}
{{else}}
<span class="label label-default">none</span>
{{end}}
</span>
2013-07-15 13:11:41 +00:00
</td>
<td>
{{if .Status.LastScrape.IsZero}}Never{{else}}{{since .Status.LastScrape}} ago{{end}}
2013-07-15 13:11:41 +00:00
</td>
<td>
{{if .Status.LastError}}
<span class="alert alert-danger target_status_alert">{{.Status.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
2013-07-24 10:37:51 +00:00
<h2>Startup Flags</h2>
<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}}