prometheus/web/ui/templates/flags.html

18 lines
426 B
HTML

{{define "head"}}<!-- nix -->{{end}}
{{define "content"}}
<div class="container-fluid">
<h2 id="startupflags">Command-Line Flags</h2>
<table class="table table-sm table-bordered table-striped table-hover">
<tbody>
{{range $key, $value := . }}
<tr>
<th scope="row">{{$key}}</th>
<td>{{$value}}</td>
</tr>
{{end}}
</tbody>
</table>
</div>
{{end}}