2013-04-02 17:14:02 +00:00
|
|
|
{{define "head"}}<!-- nix -->{{end}}
|
|
|
|
|
2013-03-27 16:40:01 +00:00
|
|
|
{{define "content"}}
|
2013-05-02 12:20:19 +00:00
|
|
|
<h2>Build Info</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-02-12 12:15:40 +00:00
|
|
|
{{.Rules}}
|
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">
|
|
|
|
<ul>
|
|
|
|
{{range $job, $pool := .TargetPools}}
|
|
|
|
<li>{{$job}}
|
|
|
|
<ul>
|
|
|
|
{{range $pool.Targets}}
|
|
|
|
<li>
|
2013-04-10 12:26:07 +00:00
|
|
|
<a href="{{.GlobalAddress}}">{{.Address}}</a> (State: {{.State}}, Base Labels: {{.BaseLabels}})
|
2013-05-21 13:31:27 +00:00
|
|
|
{{if .LastError}}
|
|
|
|
<br/>
|
|
|
|
<span class="error_text"><b>Scrape error:</b> "{{.LastError}}"</span>
|
|
|
|
{{end}}
|
2013-02-22 20:07:35 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
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}}
|