mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-05 05:04:04 -08:00
18 lines
433 B
HTML
18 lines
433 B
HTML
|
{{define "head"}}<!-- nix -->{{end}}
|
||
|
|
||
|
{{define "content"}}
|
||
|
<div class="container-fluid">
|
||
|
<h2 id="startupflags">Command-Line Flags</h2>
|
||
|
<table class="table table-condensed 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}}
|