2013-04-02 17:14:02 +00:00
|
|
|
{{define "head"}}<!-- nix -->{{end}}
|
|
|
|
|
2013-03-27 16:40:01 +00:00
|
|
|
{{define "content"}}
|
2013-05-24 08:44:34 +00: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 09:57:08 +00:00
|
|
|
<div class="grouping_box">
|
2013-05-02 12:20:19 +00:00
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
{{range $key, $value := .BuildInfo}}
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{{$key}}</th>
|
|
|
|
<td>{{$value}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2013-04-25 09:57:08 +00:00
|
|
|
</div>
|
2013-02-12 12:15:40 +00:00
|
|
|
|
2013-04-25 09:57:08 +00:00
|
|
|
<h2>Configuration</h2>
|
|
|
|
<div class="grouping_box">
|
|
|
|
<pre>
|
2013-02-12 12:15:40 +00:00
|
|
|
{{.Config}}
|
2013-04-25 09:57:08 +00:00
|
|
|
</pre>
|
|
|
|
</div>
|
2013-02-12 12:15:40 +00:00
|
|
|
|
|
|
|
<h2>Rules</h2>
|
2013-04-25 09:57:08 +00:00
|
|
|
<div class="grouping_box">
|
2013-06-13 14:10:05 +00:00
|
|
|
<pre>{{range .RuleManager.Rules}}{{.HTMLSnippet}}<br/>{{end}}</pre>
|
2013-04-25 09:57:08 +00:00
|
|
|
</div>
|
2013-02-12 12:15:40 +00:00
|
|
|
|
2013-04-25 09:57:08 +00:00
|
|
|
<h2>Targets</h2>
|
2013-02-22 20:07:35 +00:00
|
|
|
<div class="grouping_box">
|
2013-07-15 13:11:41 +00:00
|
|
|
{{range $job, $pool := .TargetPools}}
|
|
|
|
<h3>{{$job}}</h3>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Endpoint</th>
|
|
|
|
<th>State</th>
|
|
|
|
<th>Base Labels</th>
|
|
|
|
<th>Next 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>
|
|
|
|
{{.EstimatedTimeToExecute}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{if .LastError}}
|
|
|
|
<span class="error_text">{{.LastError}}</span>
|
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{end}}
|
2013-04-25 09:57:08 +00:00
|
|
|
</div>
|
|
|
|
|
2013-04-28 17:01:56 +00:00
|
|
|
<h2>Curation</h2>
|
|
|
|
<div class="grouping_box">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Active</th>
|
|
|
|
<td>{{.Curation.Active}}</td>
|
|
|
|
</tr>
|
2013-05-07 15:14:04 +00:00
|
|
|
{{if .Curation.Active}}
|
2013-04-28 17:01:56 +00: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 10:11:21 +00: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 09:57:08 +00:00
|
|
|
</table>
|
|
|
|
</div>
|
2013-03-27 16:40:01 +00:00
|
|
|
{{end}}
|