{{ 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>Time Series</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_local_storage_ingested_samples_total{job='prometheus',instance='%s'}[5m])" .Labels.instance) "/s" "humanizeNoSmallPrefix") }}</td> <td class="text-right">{{ template "prom_query_drilldown" (args (printf "prometheus_local_storage_memory_series{job='prometheus',instance='%s'}" .Labels.instance) "" "humanize") }}</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" }}