mirror of https://github.com/prometheus/prometheus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
{{ template "head" . }} |
|
|
|
{{ template "prom_right_table_head" }} |
|
<tr> |
|
<th>Prometheus</th> |
|
<th>{{ template "prom_query_drilldown" (args "sum(up{job='prometheus'})") }} / {{ template "prom_query_drilldown" (args "count(up{job='prometheus'})") }}</th> |
|
</tr> |
|
{{ template "prom_right_table_tail" }} |
|
|
|
{{ template "prom_content_head" . }} |
|
<h1>Prometheus</h1> |
|
|
|
<table class="table table-condensed table-striped table-bordered" style="width: 0%"> |
|
<tr> |
|
<th>Prometheus</th> |
|
<th>Up</th> |
|
<th>Ingested Samples</th> |
|
<th>Memory</th> |
|
</tr> |
|
{{ range query "up{job='prometheus'}" | sortByLabel "instance" }} |
|
<tr> |
|
<td><a href="prometheus-overview.html?instance={{ .Labels.instance }}">{{ .Labels.instance }}</a></td> |
|
<td {{ if eq (. | value) 1.0 }}>Yes{{ else }} class="alert-danger">No{{ end }}</td> |
|
<td class="text-right">{{ template "prom_query_drilldown" (args (printf "irate(prometheus_tsdb_head_samples_appended_total{job='prometheus',instance='%s'}[5m])" .Labels.instance) "/s" "humanizeNoSmallPrefix") }}</td> |
|
<td class="text-right">{{ template "prom_query_drilldown" (args (printf "process_resident_memory_bytes{job='prometheus',instance='%s'}" .Labels.instance) "B" "humanize1024")}}</td> |
|
</tr> |
|
{{ else }} |
|
<tr><td colspan=4>No devices found.</td></tr> |
|
{{ end }} |
|
|
|
{{ template "prom_content_tail" . }} |
|
|
|
{{ template "tail" }}
|
|
|