mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Bootstrappify remaining status pages.
This commit is contained in:
parent
ce4881d673
commit
1b9cbaf842
|
@ -176,3 +176,28 @@ select name="insert_metric" {
|
||||||
.config label.checkbox {
|
.config label.checkbox {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grouping_box {
|
||||||
|
position: relative;
|
||||||
|
padding: 0 5px 0 5px;
|
||||||
|
background-color: #fff;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
-webkit-border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin: 0 8px 2px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grouping_box .head, .eval_stats {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grouping_box .head .opts {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[name="end_input"], input[name="range_input"] {
|
||||||
|
margin-left: -4px;
|
||||||
|
margin-right: -4px;
|
||||||
|
}
|
||||||
|
|
|
@ -2,52 +2,14 @@ body {
|
||||||
padding-top: 40px;
|
padding-top: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th.job_header {
|
||||||
|
font-size: 20px;
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.error_text {
|
.error_text {
|
||||||
background-color: #f2dede;
|
padding: 0 4px 0 4px;
|
||||||
border: 1px solid #c0a0a0;
|
|
||||||
padding: 0 2px 0 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
margin-left: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grouping_box {
|
|
||||||
position: relative;
|
|
||||||
padding: 0 5px 0 5px;
|
|
||||||
background-color: #fff;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
-webkit-border-radius: 4px;
|
|
||||||
-moz-border-radius: 4px;
|
|
||||||
border-radius: 4px;
|
|
||||||
margin: 0 8px 2px 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grouping_box .head, .eval_stats {
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grouping_box .head .opts {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
table tbody th {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
|
||||||
margin: 0;
|
|
||||||
border: 1px solid gray;
|
|
||||||
}
|
|
||||||
|
|
||||||
select {
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[name=end_input], input[name=range_input] {
|
|
||||||
margin-left: -4px;
|
|
||||||
margin-right: -4px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -60,5 +22,3 @@ div.navbar {
|
||||||
.literal_output td {
|
.literal_output td {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
{{define "head"}}<!-- nix -->{{end}}
|
{{define "head"}}<!-- nix -->{{end}}
|
||||||
|
|
||||||
{{define "content"}}
|
{{define "content"}}
|
||||||
|
<div class="container-fluid">
|
||||||
<h2>Database Information</h2>
|
<h2>Database Information</h2>
|
||||||
<div class="grouping_box">
|
|
||||||
{{range .States}}
|
{{range .States}}
|
||||||
<div class="grouping_box">
|
|
||||||
<h3>{{.Name}}</h3>
|
<h3>{{.Name}}</h3>
|
||||||
<table class="literal_output">
|
<table class="table table-bordered table-condensed table-hover literal_output">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Path</th>
|
<th>Path</th>
|
||||||
|
@ -34,6 +33,6 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{{define "head"}}<!-- nix -->{{end}}
|
{{define "head"}}<!-- nix -->{{end}}
|
||||||
|
|
||||||
{{define "content"}}
|
{{define "content"}}
|
||||||
|
<div class="container-fluid">
|
||||||
<h2>Runtime Information</h2>
|
<h2>Runtime Information</h2>
|
||||||
<div class="grouping_box table-striped">
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
||||||
<table>
|
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Uptime</th>
|
<th>Uptime</th>
|
||||||
|
@ -11,10 +11,9 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
|
||||||
<h2>Build Information</h2>
|
<h2>Build Information</h2>
|
||||||
<div class="grouping_box">
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
||||||
<table class="table-striped">
|
|
||||||
<tbody>
|
<tbody>
|
||||||
{{range $key, $value := .BuildInfo}}
|
{{range $key, $value := .BuildInfo}}
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -24,26 +23,18 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Configuration</h2>
|
<h2>Configuration</h2>
|
||||||
<div class="grouping_box">
|
<pre>{{.Config}}</pre>
|
||||||
<pre>
|
|
||||||
{{.Config}}
|
|
||||||
</pre>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Rules</h2>
|
<h2>Rules</h2>
|
||||||
<div class="grouping_box">
|
|
||||||
<pre>{{range .RuleManager.Rules}}{{.HTMLSnippet}}<br/>{{end}}</pre>
|
<pre>{{range .RuleManager.Rules}}{{.HTMLSnippet}}<br/>{{end}}</pre>
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Targets</h2>
|
<h2>Targets</h2>
|
||||||
<div class="grouping_box">
|
|
||||||
{{range $job, $pool := .TargetPools}}
|
{{range $job, $pool := .TargetPools}}
|
||||||
<h3>{{$job}}</h3>
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
||||||
<table>
|
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr><th colspan="5" class="job_header">{{$job}}</th></tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Endpoint</th>
|
<th>Endpoint</th>
|
||||||
<th>State</th>
|
<th>State</th>
|
||||||
|
@ -69,7 +60,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{if .LastError}}
|
{{if .LastError}}
|
||||||
<span class="error_text">{{.LastError}}</span>
|
<span class="alert alert-error error_text">{{.LastError}}</span>
|
||||||
{{end}}
|
{{end}}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -77,11 +68,9 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Curation</h2>
|
<h2>Curation</h2>
|
||||||
<div class="grouping_box">
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
||||||
<table class="table-striped">
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>Active</th>
|
<th>Active</th>
|
||||||
<td>{{.Curation.Active}}</td>
|
<td>{{.Curation.Active}}</td>
|
||||||
|
@ -101,11 +90,9 @@
|
||||||
</tr>
|
</tr>
|
||||||
{{end}}
|
{{end}}
|
||||||
</table>
|
</table>
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Startup Flags</h2>
|
<h2>Startup Flags</h2>
|
||||||
<div class="grouping_box table-striped">
|
<table class="table table-condensed table-bordered table-striped table-hover">
|
||||||
<table class="table-striped">
|
|
||||||
<tbody>
|
<tbody>
|
||||||
{{range $key, $value := .Flags}}
|
{{range $key, $value := .Flags}}
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in a new issue