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">
|
2013-05-24 08:44:34 +00:00
|
|
|
<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>{{.Birth}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2013-05-24 08:44:34 +00:00
|
|
|
<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 := .BuildInfo}}
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{{$key}}</th>
|
|
|
|
<td>{{$value}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2013-02-12 12:15:40 +00:00
|
|
|
|
2013-04-25 09:57:08 +00:00
|
|
|
<h2>Configuration</h2>
|
2013-07-24 10:37:51 +00:00
|
|
|
<pre>{{.Config}}</pre>
|
2013-02-12 12:15:40 +00:00
|
|
|
|
|
|
|
<h2>Rules</h2>
|
2015-06-15 10:50:53 +00:00
|
|
|
<pre>{{range call .Rules}}{{.HTMLSnippet pathPrefix}}<br/>{{end}}</pre>
|
2013-02-12 12:15:40 +00:00
|
|
|
|
2013-04-25 09:57:08 +00:00
|
|
|
<h2>Targets</h2>
|
2015-03-07 21:27:39 +00:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
2015-04-20 10:24:25 +00:00
|
|
|
{{range $job, $pool := call .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>
|
2014-07-29 16:28:48 +00:00
|
|
|
<th>Last Scrape</th>
|
2013-07-15 13:11:41 +00:00
|
|
|
<th>Error</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2015-04-20 10:24:25 +00:00
|
|
|
{{range $pool}}
|
2013-07-15 13:11:41 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
2015-05-18 10:16:25 +00:00
|
|
|
<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}}
|
2015-03-07 21:27:39 +00:00
|
|
|
</span>
|
2013-07-15 13:11:41 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-06-08 14:10:48 +00: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 13:11:41 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-05-18 09:13:13 +00:00
|
|
|
{{if .Status.LastScrape.IsZero}}Never{{else}}{{since .Status.LastScrape}} ago{{end}}
|
2013-07-15 13:11:41 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-05-18 09:13:13 +00:00
|
|
|
{{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>
|
2015-03-07 21:27:39 +00:00
|
|
|
{{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 := .Flags}}
|
2013-04-28 17:01:56 +00:00
|
|
|
<tr>
|
2013-07-24 10:37:51 +00:00
|
|
|
<th scope="row">{{$key}}</th>
|
|
|
|
<td>{{$value}}</td>
|
2013-04-28 17:01:56 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
2013-07-24 10:37:51 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2013-03-27 16:40:01 +00:00
|
|
|
{{end}}
|