2013-04-02 10:14:02 -07:00
|
|
|
{{define "head"}}<!-- nix -->{{end}}
|
|
|
|
|
2013-03-27 09:40:01 -07:00
|
|
|
{{define "content"}}
|
2013-05-24 01:44:34 -07:00
|
|
|
<h2>Runtime Information</h2>
|
|
|
|
<div class="grouping_box">
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>Uptime</th>
|
|
|
|
<td>{{.Birth}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<h2>Build Information</h2>
|
2013-04-25 02:57:08 -07:00
|
|
|
<div class="grouping_box">
|
2013-05-02 05:20:19 -07:00
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
{{range $key, $value := .BuildInfo}}
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{{$key}}</th>
|
|
|
|
<td>{{$value}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2013-04-25 02:57:08 -07:00
|
|
|
</div>
|
2013-02-12 04:15:40 -08:00
|
|
|
|
2013-04-25 02:57:08 -07:00
|
|
|
<h2>Configuration</h2>
|
|
|
|
<div class="grouping_box">
|
|
|
|
<pre>
|
2013-02-12 04:15:40 -08:00
|
|
|
{{.Config}}
|
2013-04-25 02:57:08 -07:00
|
|
|
</pre>
|
|
|
|
</div>
|
2013-02-12 04:15:40 -08:00
|
|
|
|
|
|
|
<h2>Rules</h2>
|
2013-04-25 02:57:08 -07:00
|
|
|
<div class="grouping_box">
|
2013-06-13 07:10:05 -07:00
|
|
|
<pre>{{range .RuleManager.Rules}}{{.HTMLSnippet}}<br/>{{end}}</pre>
|
2013-04-25 02:57:08 -07:00
|
|
|
</div>
|
2013-02-12 04:15:40 -08:00
|
|
|
|
2013-04-25 02:57:08 -07:00
|
|
|
<h2>Targets</h2>
|
2013-02-22 12:07:35 -08:00
|
|
|
<div class="grouping_box">
|
|
|
|
<ul>
|
|
|
|
{{range $job, $pool := .TargetPools}}
|
2013-07-14 09:48:03 -07:00
|
|
|
<li>{{$job}}
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Endpoint</th>
|
|
|
|
<th>State</th>
|
|
|
|
<th>Base Labels</th>
|
|
|
|
<th>Earliest Retrieval</th>
|
|
|
|
<th>Error</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{range $pool.Targets}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{.GlobalAddress}}">{{.Address}}</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{.State}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{.BaseLabels}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{.ScheduledFor}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{if .LastError}}
|
|
|
|
<span class="error_text">{{.LastError}}</span>
|
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</li>
|
2013-02-22 12:07:35 -08:00
|
|
|
{{end}}
|
|
|
|
</ul>
|
2013-04-25 02:57:08 -07:00
|
|
|
</div>
|
|
|
|
|
2013-04-28 10:01:56 -07:00
|
|
|
<h2>Curation</h2>
|
|
|
|
<div class="grouping_box">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Active</th>
|
|
|
|
<td>{{.Curation.Active}}</td>
|
|
|
|
</tr>
|
2013-05-07 08:14:04 -07:00
|
|
|
{{if .Curation.Active}}
|
2013-04-28 10:01:56 -07:00
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
|
2013-04-25 03:11:21 -07:00
|
|
|
<h2>Startup Flags</h2>
|
|
|
|
<div class="grouping_box">
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
{{range $key, $value := .Flags}}
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{{$key}}</th>
|
|
|
|
<td>{{$value}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
2013-04-25 02:57:08 -07:00
|
|
|
</table>
|
|
|
|
</div>
|
2013-03-27 09:40:01 -07:00
|
|
|
{{end}}
|