2013-04-02 10:14:02 -07:00
|
|
|
{{define "head"}}<!-- nix -->{{end}}
|
|
|
|
|
2013-03-27 09:40:01 -07:00
|
|
|
{{define "content"}}
|
2013-07-24 03:37:51 -07:00
|
|
|
<div class="container-fluid">
|
2015-07-30 12:39:05 -07:00
|
|
|
<h2 id="runtime">Runtime Information</h2>
|
2013-07-24 03:37:51 -07:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>Uptime</th>
|
2015-06-23 12:15:32 -07:00
|
|
|
<td>{{.Status.Birth.UTC}}</td>
|
2013-07-24 03:37:51 -07:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2015-07-30 12:39:05 -07:00
|
|
|
<h2 id="buildinformation">Build Information</h2>
|
2013-07-24 03:37:51 -07:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
<tbody>
|
2015-06-15 03:23:02 -07:00
|
|
|
{{range $key, $value := .Info}}
|
2013-07-24 03:37:51 -07:00
|
|
|
<tr>
|
|
|
|
<th scope="row">{{$key}}</th>
|
|
|
|
<td>{{$value}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2013-02-12 04:15:40 -08:00
|
|
|
|
2015-07-30 12:39:05 -07:00
|
|
|
<h2 id="configuration">Configuration</h2>
|
2015-06-15 03:23:02 -07:00
|
|
|
<pre>{{.Status.Config}}</pre>
|
2013-02-12 04:15:40 -08:00
|
|
|
|
2015-07-30 12:39:05 -07:00
|
|
|
<h2 id="rules">Rules</h2>
|
2015-06-15 03:23:02 -07:00
|
|
|
<pre>{{range call .Status.Rules}}{{.HTMLSnippet pathPrefix}}<br/>{{end}}</pre>
|
2013-02-12 04:15:40 -08:00
|
|
|
|
2015-07-30 12:39:05 -07:00
|
|
|
<h2 id="targets">Targets</h2>
|
2015-03-07 13:27:39 -08:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
2015-06-15 03:23:02 -07:00
|
|
|
{{range $job, $pool := call .Status.TargetPools}}
|
2013-07-15 06:11:41 -07:00
|
|
|
<thead>
|
2013-07-24 03:37:51 -07:00
|
|
|
<tr><th colspan="5" class="job_header">{{$job}}</th></tr>
|
2013-07-15 06:11:41 -07:00
|
|
|
<tr>
|
|
|
|
<th>Endpoint</th>
|
|
|
|
<th>State</th>
|
|
|
|
<th>Base Labels</th>
|
2014-07-29 09:28:48 -07:00
|
|
|
<th>Last Scrape</th>
|
2013-07-15 06:11:41 -07:00
|
|
|
<th>Error</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2015-04-20 03:24:25 -07:00
|
|
|
{{range $pool}}
|
2013-07-15 06:11:41 -07:00
|
|
|
<tr>
|
|
|
|
<td>
|
2015-06-22 13:57:32 -07:00
|
|
|
<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 06:11:41 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-06-24 08:22:16 -07:00
|
|
|
<span class="alert alert-{{ .Status.Health | healthToClass }} state_indicator text-uppercase">
|
2015-05-19 06:38:51 -07:00
|
|
|
{{.Status.Health}}
|
2015-03-07 13:27:39 -08:00
|
|
|
</span>
|
2013-07-15 06:11:41 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-06-08 07:10:48 -07:00
|
|
|
<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 06:11:41 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-05-18 02:13:13 -07:00
|
|
|
{{if .Status.LastScrape.IsZero}}Never{{else}}{{since .Status.LastScrape}} ago{{end}}
|
2013-07-15 06:11:41 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-05-18 02:13:13 -07:00
|
|
|
{{if .Status.LastError}}
|
2015-06-24 08:22:16 -07:00
|
|
|
<span class="alert alert-danger state_indicator">{{.Status.LastError}}</span>
|
2013-07-15 06:11:41 -07:00
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
2015-03-07 13:27:39 -08:00
|
|
|
{{end}}
|
|
|
|
</table>
|
2013-04-25 02:57:08 -07:00
|
|
|
|
2015-07-30 12:39:05 -07:00
|
|
|
<h2 id="startupflags">Startup Flags</h2>
|
2013-07-24 03:37:51 -07:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
<tbody>
|
2015-06-15 03:23:02 -07:00
|
|
|
{{range $key, $value := .Status.Flags}}
|
2013-04-28 10:01:56 -07:00
|
|
|
<tr>
|
2013-07-24 03:37:51 -07:00
|
|
|
<th scope="row">{{$key}}</th>
|
|
|
|
<td>{{$value}}</td>
|
2013-04-28 10:01:56 -07:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
2013-07-24 03:37:51 -07:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2013-03-27 09:40:01 -07:00
|
|
|
{{end}}
|