mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
100 lines
2.2 KiB
HTML
100 lines
2.2 KiB
HTML
{{define "head"}}<!-- nix -->{{end}}
|
|
|
|
{{define "content"}}
|
|
<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>
|
|
<div class="grouping_box">
|
|
<table>
|
|
<tbody>
|
|
{{range $key, $value := .BuildInfo}}
|
|
<tr>
|
|
<th scope="row">{{$key}}</th>
|
|
<td>{{$value}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<h2>Configuration</h2>
|
|
<div class="grouping_box">
|
|
<pre>
|
|
{{.Config}}
|
|
</pre>
|
|
</div>
|
|
|
|
<h2>Rules</h2>
|
|
<div class="grouping_box">
|
|
<pre>{{range .Rules}}{{.String}}{{end}}</pre>
|
|
</div>
|
|
|
|
<h2>Targets</h2>
|
|
<div class="grouping_box">
|
|
<ul>
|
|
{{range $job, $pool := .TargetPools}}
|
|
<li>{{$job}}
|
|
<ul>
|
|
{{range $pool.Targets}}
|
|
<li>
|
|
<a href="{{.GlobalAddress}}">{{.Address}}</a> (State: {{.State}}, Base Labels: {{.BaseLabels}})
|
|
{{if .LastError}}
|
|
<br/>
|
|
<span class="error_text"><b>Scrape error:</b> "{{.LastError}}"</span>
|
|
{{end}}
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
</div>
|
|
|
|
<h2>Curation</h2>
|
|
<div class="grouping_box">
|
|
<table>
|
|
<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>
|
|
</div>
|
|
|
|
<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>
|
|
</table>
|
|
</div>
|
|
{{end}}
|