prometheus/web/templates/databases.html

40 lines
770 B
HTML
Raw Normal View History

2013-05-14 12:50:02 +00:00
{{define "head"}}<!-- nix -->{{end}}
{{define "content"}}
<h2>Database Information</h2>
<div class="grouping_box">
2013-05-14 12:50:02 +00:00
{{range .States}}
<div class="grouping_box">
<h3>{{.Name}}</h3>
<table class="literal_output">
<tbody>
<tr>
<th>Path</th>
<td>{{.Path}}</td>
</tr>
<tr>
<th>Last Refreshed</th>
<td>{{.LastRefreshed}}</td>
</tr>
<tr>
<th>Type</th>
<td>{{.Type}}</td>
</tr>
<tr>
<th>Approximate Size</th>
<td>{{.ApproximateSize}}</td>
</tr>
<tr>
<th>Low Level Status</th>
<td><pre>{{.LowLevelStatus}}</pre></td>
</tr>
<tr>
<th>SSTable Status</th>
<td><pre>{{.SSTablesStatus}}</pre></td>
</tr>
</tbody>
</table>
</div>
{{end}}
{{end}}