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>
|
2013-07-15 06:11:41 -07:00
|
|
|
{{range $job, $pool := .TargetPools}}
|
2013-07-24 03:37:51 -07:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
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>
|
|
|
|
{{range $pool.Targets}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{.GlobalAddress}}">{{.Address}}</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{.State}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{.BaseLabels}}
|
|
|
|
</td>
|
|
|
|
<td>
|
2014-07-29 09:28:48 -07:00
|
|
|
{{if .LastScrape.IsZero}}Never{{else}}{{since .LastScrape}} ago{{end}}
|
2013-07-15 06:11:41 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{if .LastError}}
|
2013-07-24 03:37:51 -07:00
|
|
|
<span class="alert alert-error error_text">{{.LastError}}</span>
|
2013-07-15 06:11:41 -07:00
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{end}}
|
2013-04-25 02:57:08 -07:00
|
|
|
|
2013-04-28 10:01:56 -07:00
|
|
|
<h2>Curation</h2>
|
2013-07-24 03:37:51 -07:00
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
|
|
|
<tr>
|
|
|
|
<th>Active</th>
|
|
|
|
<td>{{.Curation.Active}}</td>
|
|
|
|
</tr>
|
|
|
|
{{if .Curation.Active}}
|
|
|
|
<tr>
|
|
|
|
<th>Processor Name</th>
|
|
|
|
<td>{{.Curation.Name}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Recency Limit</th>
|
|
|
|
<td>{{.Curation.Limit}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Current Fingerprint</th>
|
|
|
|
<td>{{.Curation.Fingerprint}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<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}}
|