prometheus/web/templates/databases.html

39 lines
979 B
HTML
Raw Normal View History

2013-05-14 05:50:02 -07:00
{{define "head"}}<!-- nix -->{{end}}
{{define "content"}}
2013-07-24 03:37:51 -07:00
<div class="container-fluid">
<h2>Database Information</h2>
{{range .States}}
<h3>{{.Name}}</h3>
<table class="table table-bordered table-condensed table-hover 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>
{{end}}
2013-05-14 05:50:02 -07:00
</div>
{{end}}