2014-11-20 10:41:25 -08:00
|
|
|
{{/* vim: set ft=html: */}}
|
|
|
|
{{/* Load Prometheus console library JS/CSS. Should go in <head> */}}
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ define "prom_console_head" }}
|
2017-04-05 07:19:17 -07:00
|
|
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/vendor/rickshaw/rickshaw.min.css">
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/vendor/bootstrap-3.3.1/css/bootstrap.min.css">
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/css/prom_console.css">
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/rickshaw/vendor/d3.v3.js"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/rickshaw/vendor/d3.layout.min.js"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/rickshaw/rickshaw.min.js"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/js/jquery.min.js"></script>
|
|
|
|
<script src="{{ pathPrefix }}/static/vendor/bootstrap-3.3.1/js/bootstrap.min.js"></script>
|
2015-03-24 14:04:38 -07:00
|
|
|
|
2017-03-03 12:36:06 -08:00
|
|
|
<script>
|
|
|
|
var PATH_PREFIX = "{{ pathPrefix }}";
|
|
|
|
</script>
|
2017-04-05 07:19:17 -07:00
|
|
|
<script src="{{ pathPrefix }}/static/js/prom_console.js"></script>
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ end }}
|
2014-11-20 10:41:25 -08:00
|
|
|
|
|
|
|
{{/* Top of all pages. */}}
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ define "head" }}
|
2014-11-20 10:41:25 -08:00
|
|
|
<html>
|
|
|
|
<head>
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ template "prom_console_head" }}
|
2014-11-20 10:41:25 -08:00
|
|
|
</head>
|
|
|
|
<body>
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ template "navbar" . }}
|
|
|
|
{{ template "menu" . }}
|
|
|
|
{{ end }}
|
2014-11-20 10:41:25 -08:00
|
|
|
|
|
|
|
{{ define "__prom_query_drilldown_noop" }}{{ . }}{{ end }}
|
|
|
|
{{ define "humanize" }}{{ humanize . }}{{ end }}
|
|
|
|
{{ define "humanizeNoSmallPrefix" }}{{ if and (lt . 1.0) (gt . -1.0) }}{{ printf "%.3g" . }}{{ else }}{{ humanize . }}{{ end }}{{ end }}
|
|
|
|
{{ define "humanize1024" }}{{ humanize1024 . }}{{ end }}
|
|
|
|
{{ define "humanizeDuration" }}{{ humanizeDuration . }}{{ end }}
|
2015-10-22 05:57:22 -07:00
|
|
|
{{ define "humanizeTimestamp" }}{{ humanizeTimestamp . }}{{ end }}
|
2015-02-19 02:06:23 -08:00
|
|
|
{{ define "printf.1f" }}{{ printf "%.1f" . }}{{ end }}
|
2014-11-20 10:41:25 -08:00
|
|
|
{{ define "printf.3g" }}{{ printf "%.3g" . }}{{ end }}
|
|
|
|
|
|
|
|
{{/* prom_query_drilldown (args expr suffix? renderTemplate?)
|
|
|
|
Displays the result of the expression, with a link to /graph for it.
|
|
|
|
|
|
|
|
renderTemplate is the name of the template to use to render the value.
|
|
|
|
*/}}
|
|
|
|
{{ define "prom_query_drilldown" }}
|
2015-01-30 03:27:52 -08:00
|
|
|
{{ $expr := .arg0 }}{{ $suffix := (or .arg1 "") }}{{ $renderTemplate := (or .arg2 "__prom_query_drilldown_noop") }}
|
2015-05-18 10:44:40 -07:00
|
|
|
<a class="prom_query_drilldown" href="{{ pathPrefix }}{{ graphLink $expr }}">{{ with query $expr }}{{tmpl $renderTemplate ( . | first | value )}}{{ $suffix }}{{ else }}-{{ end }}</a>
|
2014-11-20 10:41:25 -08:00
|
|
|
{{ end }}
|
|
|
|
|
2015-01-30 03:27:52 -08:00
|
|
|
{{ define "prom_path" }}/consoles/{{ .Path }}?{{ range $param, $value := .Params }}{{ $param }}={{ $value }}&{{ end }}{{ end }}"
|
2014-11-20 10:41:25 -08:00
|
|
|
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ define "prom_right_table_head" }}
|
2014-11-20 10:41:25 -08:00
|
|
|
<div class="prom_console_rhs">
|
|
|
|
<table class="table table-bordered table-hover table-condensed">
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ end }}
|
|
|
|
{{ define "prom_right_table_tail" }}
|
2014-11-20 10:41:25 -08:00
|
|
|
</table>
|
|
|
|
</div>
|
2015-01-30 03:27:52 -08:00
|
|
|
{{ end }}
|
2014-11-20 10:41:25 -08:00
|
|
|
|
2015-01-30 03:27:52 -08:00
|
|
|
{{/* RHS table head, pass job name. Should be used after prom_right_table_head. */}}
|
|
|
|
{{ define "prom_right_table_job_head" }}
|
|
|
|
<tr>
|
|
|
|
<th>{{ . }}</th>
|
|
|
|
<th>{{ template "prom_query_drilldown" (args (printf "sum(up{job='%s'})" .)) }} / {{ template "prom_query_drilldown" (args (printf "count(up{job='%s'})" .)) }}</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>CPU</td>
|
2015-10-09 09:58:43 -07:00
|
|
|
<td>{{ template "prom_query_drilldown" (args (printf "avg by(job)(irate(process_cpu_seconds_total{job='%s'}[5m]))" .) "s/s" "humanizeNoSmallPrefix") }}</td>
|
2015-01-30 03:27:52 -08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Memory</td>
|
|
|
|
<td>{{ template "prom_query_drilldown" (args (printf "avg by(job)(process_resident_memory_bytes{job='%s'})" .) "B" "humanize1024") }}</td>
|
|
|
|
</tr>
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ end }}
|
2014-11-20 10:41:25 -08:00
|
|
|
|
2015-01-30 03:27:52 -08:00
|
|
|
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ define "prom_content_head" }}
|
2014-11-20 10:41:25 -08:00
|
|
|
<div class="prom_console_content">
|
2015-01-22 02:39:41 -08:00
|
|
|
<div class="container">
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ template "prom_graph_timecontrol" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ define "prom_content_tail" }}
|
2015-01-22 02:39:41 -08:00
|
|
|
</div>
|
2014-11-20 10:41:25 -08:00
|
|
|
</div>
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ end }}
|
2014-11-20 10:41:25 -08:00
|
|
|
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ define "prom_graph_timecontrol" }}
|
2014-11-20 10:41:25 -08:00
|
|
|
<div class="prom_graph_timecontrol">
|
|
|
|
<div class="prom_graph_timecontrol_inner">
|
2015-01-22 02:39:41 -08:00
|
|
|
<div class="prom_graph_timecontrol_group">
|
|
|
|
<button class="btn btn-default pull-left" type="button" id="prom_graph_duration_shrink" title="Shrink the time range.">
|
|
|
|
<i class="glyphicon glyphicon-minus"></i>
|
2014-11-20 10:41:25 -08:00
|
|
|
</button>
|
2015-01-22 02:39:41 -08:00
|
|
|
<input class="input pull-left" size="3" title="Time range of graph" type="text" id="prom_graph_duration">
|
|
|
|
<button class="btn btn-default pull-left" type="button" id="prom_graph_duration_grow" title="Grow the time range.">
|
|
|
|
<i class="glyphicon glyphicon-plus"></i>
|
2014-11-20 10:41:25 -08:00
|
|
|
</button>
|
|
|
|
</div>
|
2015-01-22 02:39:41 -08:00
|
|
|
|
|
|
|
<div class="prom_graph_timecontrol_group">
|
|
|
|
<button class="btn btn-default pull-left" type="button" id="prom_graph_time_back" title="Rewind the end time.">
|
|
|
|
<i class="glyphicon glyphicon-backward"></i>
|
2014-11-20 10:41:25 -08:00
|
|
|
</button>
|
2015-01-22 02:39:41 -08:00
|
|
|
<input class="input pull-left" title="End time of graph" placeholder="Until" type="text" id="prom_graph_time_end" size="16" value="">
|
|
|
|
<button class="btn btn-default pull-left" type="button" id="prom_graph_time_forward" title="Advance the end time.">
|
|
|
|
<i class="glyphicon glyphicon-forward"></i>
|
2014-11-20 10:41:25 -08:00
|
|
|
</button>
|
2015-01-30 03:27:52 -08:00
|
|
|
</div>
|
2015-01-22 02:39:41 -08:00
|
|
|
|
|
|
|
<div class="prom_graph_timecontrol_group">
|
|
|
|
<div class="btn-group dropup prom_graph_timecontrol_refresh pull-left">
|
|
|
|
<button type="button" class="btn btn-default pull-left" id="prom_graph_refresh_button" title="Refresh.">
|
|
|
|
<i class="glyphicon glyphicon-repeat"></i>
|
|
|
|
<span class="icon-repeat"></span>
|
|
|
|
(<span id="prom_graph_refresh_button_value">Off</span>)
|
2014-11-20 10:41:25 -08:00
|
|
|
</button>
|
2015-01-22 02:39:41 -08:00
|
|
|
<button type="button" class="btn btn-default pull-left dropdown-toggle" data-toggle="dropdown" title="Set autorefresh." aria-expanded="false">
|
2014-11-20 10:41:25 -08:00
|
|
|
<span class="caret"></span>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu" id="prom_graph_refresh_intervals" role="menu">
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
new PromConsole.TimeControl();
|
|
|
|
</script>
|
|
|
|
</div>
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ end }}
|
2014-11-20 10:41:25 -08:00
|
|
|
|
|
|
|
{{/* Bottom of all pages. */}}
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ define "tail" }}
|
2014-11-20 10:41:25 -08:00
|
|
|
</body>
|
|
|
|
</html>
|
2015-01-23 09:40:48 -08:00
|
|
|
{{ end }}
|