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">
|
2013-05-24 01:44:34 -07:00
|
|
|
<h2>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>
|
|
|
|
<td>{{.Birth}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2013-05-24 01:44:34 -07:00
|
|
|
<h2>Build Information</h2>
|
2013-07-24 03:37:51 -07: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 04:15:40 -08:00
|
|
|
|
2013-04-25 02:57:08 -07:00
|
|
|
<h2>Configuration</h2>
|
2013-07-24 03:37:51 -07:00
|
|
|
<pre>{{.Config}}</pre>
|
2013-02-12 04:15:40 -08:00
|
|
|
|
|
|
|
<h2>Rules</h2>
|
2013-06-13 07:10:05 -07:00
|
|
|
<pre>{{range .RuleManager.Rules}}{{.HTMLSnippet}}<br/>{{end}}</pre>
|
2013-02-12 04:15:40 -08:00
|
|
|
|
2013-04-25 02:57:08 -07:00
|
|
|
<h2>Targets</h2>
|
2015-03-07 13:27:39 -08:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
{{$stateToClass := .TargetStateToClass}}
|
2015-04-20 03:24:25 -07:00
|
|
|
{{range $job, $pool := call .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>
|
2014-12-17 10:40:59 -08:00
|
|
|
<a href="{{.GlobalURL}}">{{.URL}}</a>
|
2013-07-15 06:11:41 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-05-18 02:13:13 -07:00
|
|
|
<span class="alert alert-{{index $stateToClass .Status.State}} target_status_alert">
|
|
|
|
{{.Status.State}}
|
2015-03-07 13:27:39 -08:00
|
|
|
</span>
|
2013-07-15 06:11:41 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
2015-03-18 10:53:43 -07:00
|
|
|
{{.BaseLabelsWithoutJobAndInstance}}
|
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}}
|
|
|
|
<span class="alert alert-danger target_status_alert">{{.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
|
|
|
|
2013-07-24 03:37:51 -07:00
|
|
|
<h2>Startup Flags</h2>
|
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
<tbody>
|
|
|
|
{{range $key, $value := .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}}
|