Compare commits
No commits in common. "master" and "upstream/2.11.1" have entirely different histories.
master
...
upstream/2
21
NOTICE
21
NOTICE
@ -85,24 +85,3 @@ go-zookeeper - Native ZooKeeper client for Go
|
|||||||
https://github.com/samuel/go-zookeeper
|
https://github.com/samuel/go-zookeeper
|
||||||
Copyright (c) 2013, Samuel Stauffer <samuel@descolada.com>
|
Copyright (c) 2013, Samuel Stauffer <samuel@descolada.com>
|
||||||
See https://github.com/samuel/go-zookeeper/blob/master/LICENSE for license details.
|
See https://github.com/samuel/go-zookeeper/blob/master/LICENSE for license details.
|
||||||
|
|
||||||
Time series compression algorithm from Facebook's Gorilla paper
|
|
||||||
https://github.com/dgryski/go-tsz
|
|
||||||
Copyright (c) 2015,2016 Damian Gryski <damian@gryski.com>
|
|
||||||
See https://github.com/dgryski/go-tsz/blob/master/LICENSE for license details.
|
|
||||||
|
|
||||||
The Go programming language
|
|
||||||
https://go.dev/
|
|
||||||
Copyright (c) 2009 The Go Authors
|
|
||||||
See https://go.dev/LICENSE for license details.
|
|
||||||
|
|
||||||
The Codicon icon font from Microsoft
|
|
||||||
https://github.com/microsoft/vscode-codicons
|
|
||||||
Copyright (c) Microsoft Corporation and other contributors
|
|
||||||
See https://github.com/microsoft/vscode-codicons/blob/main/LICENSE for license details.
|
|
||||||
|
|
||||||
We also use code from a large number of npm packages. For details, see:
|
|
||||||
- https://github.com/prometheus/prometheus/blob/main/web/ui/react-app/package.json
|
|
||||||
- https://github.com/prometheus/prometheus/blob/main/web/ui/react-app/package-lock.json
|
|
||||||
- The individual package licenses as copied from the node_modules directory can be found in
|
|
||||||
the npm_licenses.tar.bz2 archive in release tarballs and Docker images.
|
|
||||||
|
82
console_libraries/menu.lib
Normal file
82
console_libraries/menu.lib
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
{{/* vim: set ft=html: */}}
|
||||||
|
|
||||||
|
{{/* Navbar, should be passed . */}}
|
||||||
|
{{ define "navbar" }}
|
||||||
|
<nav class="navbar fixed-top navbar-expand-sm navbar-dark bg-dark">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<!-- Brand and toggle get grouped for better mobile display -->
|
||||||
|
<div class="navbar-header">
|
||||||
|
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false" aria-controls="navbar-nav" aria-label="toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</button>
|
||||||
|
<a class="navbar-brand" href="{{ pathPrefix }}/">Prometheus</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li class="nav-item"><a class="nav-link" href="{{ pathPrefix }}/alerts">Alerts</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="https://www.pagerduty.com/">PagerDuty</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{/* LHS menu, should be passed . */}}
|
||||||
|
{{ define "menu" }}
|
||||||
|
<div class="prom_lhs_menu row">
|
||||||
|
<nav class="col-md-2 md-block bg-dark sidebar prom_lhs_menu_nav">
|
||||||
|
<div class="sidebar-sticky">
|
||||||
|
<ul class="nav flex-column">
|
||||||
|
|
||||||
|
{{ template "_menuItem" (args . "index.html.example" "Overview") }}
|
||||||
|
|
||||||
|
{{ if query "up{job='node'}" }}
|
||||||
|
{{ template "_menuItem" (args . "node.html" "Node") }}
|
||||||
|
{{ if match "^node" .Path }}
|
||||||
|
{{ if .Params.instance }}
|
||||||
|
<ul>
|
||||||
|
<li {{ if eq .Path "node-overview.html" }}class="prom_lhs_menu_selected nav-item"{{ end }}>
|
||||||
|
<a class="nav-link" href="node-overview.html?instance={{ .Params.instance }}">{{ reReplaceAll "(.*?://)([^:/]+?)(:\\d+)?/.*" "$2" .Params.instance }}</a>
|
||||||
|
</li>
|
||||||
|
<ul>
|
||||||
|
<li {{ if eq .Path "node-cpu.html" }}class="prom_lhs_menu_selected nav-item"{{ end }}>
|
||||||
|
<a class="nav-link" href="node-cpu.html?instance={{ .Params.instance }}">CPU</a>
|
||||||
|
</li>
|
||||||
|
<li {{ if eq .Path "node-disk.html" }}class="prom_lhs_menu_selected nav-item"{{ end }}>
|
||||||
|
<a class="nav-link" href="node-disk.html?instance={{ .Params.instance }}">Disk</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if query "up{job='prometheus'}" }}
|
||||||
|
{{ template "_menuItem" (args . "prometheus.html" "Prometheus") }}
|
||||||
|
{{ if match "^prometheus" .Path }}
|
||||||
|
{{ if .Params.instance }}
|
||||||
|
<ul>
|
||||||
|
<li {{ if eq .Path "prometheus-overview.html" }}class="prom_lhs_menu_selected nav-item"{{ end }}>
|
||||||
|
<a class="nav-link" href="prometheus-overview.html?instance={{ .Params.instance }}">{{.Params.instance }}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{/* Helper, pass (args . path name) */}}
|
||||||
|
{{ define "_menuItem" }}
|
||||||
|
<li {{ if eq .arg0.Path .arg1 }} class="prom_lhs_menu_selected nav-item" {{ end }}><a class="nav-link" href="{{ .arg1 }}">{{ .arg2 }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
|
138
console_libraries/prom.lib
Normal file
138
console_libraries/prom.lib
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{{/* vim: set ft=html: */}}
|
||||||
|
{{/* Load Prometheus console library JS/CSS. Should go in <head> */}}
|
||||||
|
{{ define "prom_console_head" }}
|
||||||
|
<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-4.3.1/css/bootstrap.min.css">
|
||||||
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/css/prom_console.css">
|
||||||
|
<link type="text/css" rel="stylesheet" href="{{ pathPrefix }}/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.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-3.3.1.min.js"></script>
|
||||||
|
<script src="{{ pathPrefix }}/static/vendor/js/popper.min.js"></script>
|
||||||
|
<script src="{{ pathPrefix }}/static/vendor/bootstrap-4.3.1/js/bootstrap.min.js"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var PATH_PREFIX = "{{ pathPrefix }}";
|
||||||
|
</script>
|
||||||
|
<script src="{{ pathPrefix }}/static/js/prom_console.js"></script>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{/* Top of all pages. */}}
|
||||||
|
{{ define "head" -}}
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
{{ template "prom_console_head" }}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{{ template "navbar" . }}
|
||||||
|
|
||||||
|
{{ template "menu" . }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ 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 }}
|
||||||
|
{{ define "humanizePercentage" }}{{ humanizePercentage . }}{{ end }}
|
||||||
|
{{ define "humanizeTimestamp" }}{{ humanizeTimestamp . }}{{ end }}
|
||||||
|
{{ define "printf.1f" }}{{ printf "%.1f" . }}{{ end }}
|
||||||
|
{{ 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" }}
|
||||||
|
{{ $expr := .arg0 }}{{ $suffix := (or .arg1 "") }}{{ $renderTemplate := (or .arg2 "__prom_query_drilldown_noop") }}
|
||||||
|
<a class="prom_query_drilldown" href="{{ pathPrefix }}{{ graphLink $expr }}">{{ with query $expr }}{{tmpl $renderTemplate ( . | first | value )}}{{ $suffix }}{{ else }}-{{ end }}</a>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ define "prom_path" }}/consoles/{{ .Path }}?{{ range $param, $value := .Params }}{{ $param }}={{ $value }}&{{ end }}{{ end }}"
|
||||||
|
|
||||||
|
{{ define "prom_right_table_head" }}
|
||||||
|
<div class="prom_console_rhs">
|
||||||
|
<table class="table table-bordered table-hover table-sm">
|
||||||
|
{{ end }}
|
||||||
|
{{ define "prom_right_table_tail" }}
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{/* 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>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "avg by(job)(irate(process_cpu_seconds_total{job='%s'}[5m]))" .) "s/s" "humanizeNoSmallPrefix") }}</td>
|
||||||
|
</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>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
|
{{ define "prom_content_head" }}
|
||||||
|
<div class="prom_console_content">
|
||||||
|
<div class="container-fluid">
|
||||||
|
{{ template "prom_graph_timecontrol" . }}
|
||||||
|
{{ end }}
|
||||||
|
{{ define "prom_content_tail" }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ define "prom_graph_timecontrol" }}
|
||||||
|
<div class="prom_graph_timecontrol">
|
||||||
|
<div class="prom_graph_timecontrol_inner">
|
||||||
|
<div class="prom_graph_timecontrol_group ">
|
||||||
|
<button class="btn btn-light pull-left" type="button" id="prom_graph_duration_shrink" title="Shrink the time range.">
|
||||||
|
<i class="glyphicon glyphicon-minus"></i>
|
||||||
|
</button><!-- Comments between elements to remove spaces
|
||||||
|
--><input class="input pull-left align-middle" size="3" title="Time range of graph" type="text" id="prom_graph_duration"><!--
|
||||||
|
--><button class="btn btn-light pull-left" type="button" id="prom_graph_duration_grow" title="Grow the time range.">
|
||||||
|
<i class="glyphicon glyphicon-plus"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="prom_graph_timecontrol_group ">
|
||||||
|
<button class="btn btn-light pull-left" type="button" id="prom_graph_time_back" title="Rewind the end time.">
|
||||||
|
<i class="glyphicon glyphicon-backward"></i>
|
||||||
|
</button><!--
|
||||||
|
--><input class="input pull-left align-middle" title="End time of graph" placeholder="Until" type="text" id="prom_graph_time_end" size="16" value=""><!--
|
||||||
|
--><button class="btn btn-light pull-left" type="button" id="prom_graph_time_forward" title="Advance the end time.">
|
||||||
|
<i class="glyphicon glyphicon-forward"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="prom_graph_timecontrol_group ">
|
||||||
|
<div class="btn-group dropup prom_graph_timecontrol_refresh pull-left">
|
||||||
|
<button type="button" class="btn btn-light 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>)
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-light pull-left dropdown-toggle" data-toggle="dropdown" title="Set autorefresh."aria-haspopup="true" aria-expanded="false">
|
||||||
|
<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>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{/* Bottom of all pages. */}}
|
||||||
|
{{ define "tail" }}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
{{ end }}
|
28
consoles/index.html.example
Normal file
28
consoles/index.html.example
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{{ template "head" . }}
|
||||||
|
|
||||||
|
{{ template "prom_right_table_head" }}
|
||||||
|
{{ template "prom_right_table_tail" }}
|
||||||
|
|
||||||
|
{{ template "prom_content_head" . }}
|
||||||
|
<h1>Overview</h1>
|
||||||
|
<p>These are example consoles for Prometheus.</p>
|
||||||
|
|
||||||
|
<p>These consoles expect exporters to have the following job labels:</p>
|
||||||
|
<table class="table table-sm table-striped table-bordered" style="width: 0%">
|
||||||
|
<tr>
|
||||||
|
<th>Exporter</th>
|
||||||
|
<th>Job label</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Node Exporter</td>
|
||||||
|
<td><code>node</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Prometheus</td>
|
||||||
|
<td><code>prometheus</code></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
{{ template "prom_content_tail" . }}
|
||||||
|
|
||||||
|
{{ template "tail" }}
|
60
consoles/node-cpu.html
Normal file
60
consoles/node-cpu.html
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
{{ template "head" . }}
|
||||||
|
|
||||||
|
{{ template "prom_right_table_head" }}
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">CPU(s): {{ template "prom_query_drilldown" (args (printf "scalar(count(count by (cpu)(node_cpu_seconds_total{job='node',instance='%s'})))" .Params.instance)) }}</th>
|
||||||
|
</tr>
|
||||||
|
{{ range printf "sum by (mode)(irate(node_cpu_seconds_total{job='node',instance='%s'}[5m])) * 100 / scalar(count(count by (cpu)(node_cpu_seconds_total{job='node',instance='%s'})))" .Params.instance .Params.instance | query | sortByLabel "mode" }}
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Labels.mode | title }} CPU</td>
|
||||||
|
<td>{{ .Value | printf "%.1f" }}%</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
<tr><th colspan="2">Misc</th></tr>
|
||||||
|
<tr>
|
||||||
|
<td>Processes Running</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "node_procs_running{job='node',instance='%s'}" .Params.instance) "" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Processes Blocked</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "node_procs_blocked{job='node',instance='%s'}" .Params.instance) "" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Forks</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_forks_total{job='node',instance='%s'}[5m])" .Params.instance) "/s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Context Switches</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_context_switches_total{job='node',instance='%s'}[5m])" .Params.instance) "/s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Interrupts</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_intr_total{job='node',instance='%s'}[5m])" .Params.instance) "/s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1m Loadavg</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "node_load1{job='node',instance='%s'}" .Params.instance)) }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
</tr>
|
||||||
|
{{ template "prom_right_table_tail" }}
|
||||||
|
|
||||||
|
{{ template "prom_content_head" . }}
|
||||||
|
<h1>Node CPU - {{ reReplaceAll "(.*?://)([^:/]+?)(:\\d+)?/.*" "$2" .Params.instance }}</h1>
|
||||||
|
|
||||||
|
<h3>CPU Usage</h3>
|
||||||
|
<div id="cpuGraph"></div>
|
||||||
|
<script>
|
||||||
|
new PromConsole.Graph({
|
||||||
|
node: document.querySelector("#cpuGraph"),
|
||||||
|
expr: "sum by (mode)(irate(node_cpu_seconds_total{job='node',instance='{{ .Params.instance }}',mode!='idle'}[5m]))",
|
||||||
|
renderer: 'area',
|
||||||
|
max: {{ with printf "count(count by (cpu)(node_cpu_seconds_total{job='node',instance='%s'}))" .Params.instance | query }}{{ . | first | value }}{{ else}}undefined{{end}},
|
||||||
|
yAxisFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yHoverFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yTitle: 'Cores'
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
{{ template "prom_content_tail" . }}
|
||||||
|
|
||||||
|
{{ template "tail" }}
|
77
consoles/node-disk.html
Normal file
77
consoles/node-disk.html
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
{{ template "head" . }}
|
||||||
|
|
||||||
|
{{ template "prom_content_head" . }}
|
||||||
|
<h1>Node Disk - {{ reReplaceAll "(.*?://)([^:/]+?)(:\\d+)?/.*" "$2" .Params.instance }}</h1>
|
||||||
|
|
||||||
|
<h3>Disk I/O Utilization</h3>
|
||||||
|
<div id="diskioGraph"></div>
|
||||||
|
<script>
|
||||||
|
new PromConsole.Graph({
|
||||||
|
node: document.querySelector("#diskioGraph"),
|
||||||
|
expr: [
|
||||||
|
"irate(node_disk_io_time_seconds_total{job='node',instance='{{ .Params.instance }}',device!~'^(md\\\\d+$|dm-)'}[5m]) * 100",
|
||||||
|
],
|
||||||
|
min: 0,
|
||||||
|
name: '[[ device ]]',
|
||||||
|
yUnits: "%",
|
||||||
|
yAxisFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yHoverFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yTitle: 'Disk I/O Utilization'
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
<h3>Filesystem Usage</h3>
|
||||||
|
<div id="fsGraph"></div>
|
||||||
|
<script>
|
||||||
|
new PromConsole.Graph({
|
||||||
|
node: document.querySelector("#fsGraph"),
|
||||||
|
expr: "100 - node_filesystem_avail_bytes{job='node',instance='{{ .Params.instance }}'} / node_filesystem_size_bytes{job='node'} * 100",
|
||||||
|
min: 0,
|
||||||
|
max: 100,
|
||||||
|
name: '[[ mountpoint ]]',
|
||||||
|
yUnits: "%",
|
||||||
|
yAxisFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yHoverFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yTitle: 'Filesystem Fullness'
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{{ template "prom_right_table_head" }}
|
||||||
|
<th colspan="2">Disks</th>
|
||||||
|
</tr>
|
||||||
|
{{ range printf "node_disk_io_time_seconds_total{job='node',instance='%s'}" .Params.instance | query | sortByLabel "device" }}
|
||||||
|
<th colspan="2">{{ .Labels.device }}</th>
|
||||||
|
<tr>
|
||||||
|
<td>Utilization</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_disk_io_time_seconds_total{job='node',instance='%s',device='%s'}[5m]) * 100" .Labels.instance .Labels.device) "%" "printf.1f") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Throughput</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_disk_read_bytes_total{job='node',instance='%s',device='%s'}[5m]) + irate(node_disk_written_bytes_total{job='node',instance='%s',device='%s'}[5m])" .Labels.instance .Labels.device .Labels.instance .Labels.device) "B/s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Avg Read Time</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_disk_read_time_seconds_total{job='node',instance='%s',device='%s'}[5m]) / irate(node_disk_reads_completed_total{job='node',instance='%s',device='%s'}[5m])" .Labels.instance .Labels.device .Labels.instance .Labels.device) "s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Avg Write Time</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_disk_write_time_seconds_total{job='node',instance='%s',device='%s'}[5m]) / irate(node_disk_writes_completed_total{job='node',instance='%s',device='%s'}[5m])" .Labels.instance .Labels.device .Labels.instance .Labels.device) "s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
<th colspan="2">Filesystem Fullness</th>
|
||||||
|
</tr>
|
||||||
|
{{ define "roughlyNearZero" }}
|
||||||
|
{{ if gt .1 . }}~0{{ else }}{{ printf "%.1f" . }}{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ range printf "node_filesystem_size_bytes{job='node',instance='%s'}" .Params.instance | query | sortByLabel "mountpoint" }}
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Labels.mountpoint }}</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "100 - node_filesystem_avail_bytes{job='node',instance='%s',mountpoint='%s'} / node_filesystem_size_bytes{job='node'} * 100" .Labels.instance .Labels.mountpoint) "%" "roughlyNearZero") }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
<tr>
|
||||||
|
</tr>
|
||||||
|
{{ template "prom_right_table_tail" }}
|
||||||
|
|
||||||
|
{{ template "prom_content_tail" . }}
|
||||||
|
|
||||||
|
{{ template "tail" }}
|
122
consoles/node-overview.html
Normal file
122
consoles/node-overview.html
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
{{ template "head" . }}
|
||||||
|
|
||||||
|
{{ template "prom_content_head" . }}
|
||||||
|
<h1>Node Overview - {{ reReplaceAll "(.*?://)([^:/]+?)(:\\d+)?/.*" "$2" .Params.instance }}</h1>
|
||||||
|
|
||||||
|
<h3>CPU Usage</h3>
|
||||||
|
<div id="cpuGraph"></div>
|
||||||
|
<script>
|
||||||
|
new PromConsole.Graph({
|
||||||
|
node: document.querySelector("#cpuGraph"),
|
||||||
|
expr: "sum by (mode)(irate(node_cpu_seconds_total{job='node',instance='{{ .Params.instance }}',mode!='idle'}[5m]))",
|
||||||
|
renderer: 'area',
|
||||||
|
max: {{ with printf "count(count by (cpu)(node_cpu_seconds_total{job='node',instance='%s'}))" .Params.instance | query }}{{ . | first | value }}{{ else}}undefined{{end}},
|
||||||
|
yAxisFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yHoverFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yTitle: 'Cores'
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h3>Disk I/O Utilization</h3>
|
||||||
|
<div id="diskioGraph"></div>
|
||||||
|
<script>
|
||||||
|
new PromConsole.Graph({
|
||||||
|
node: document.querySelector("#diskioGraph"),
|
||||||
|
expr: [
|
||||||
|
"irate(node_disk_io_time_seconds_total{job='node',instance='{{ .Params.instance }}',device!~'^(md\\\\d+$|dm-)'}[5m]) * 100",
|
||||||
|
],
|
||||||
|
min: 0,
|
||||||
|
name: '[[ device ]]',
|
||||||
|
yAxisFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yHoverFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yUnits: "%",
|
||||||
|
yTitle: 'Disk I/O Utilization'
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h3>Memory</h3>
|
||||||
|
<div id="memoryGraph"></div>
|
||||||
|
<script>
|
||||||
|
new PromConsole.Graph({
|
||||||
|
node: document.querySelector("#memoryGraph"),
|
||||||
|
renderer: 'area',
|
||||||
|
expr: [
|
||||||
|
"node_memory_Cached_bytes{job='node',instance='{{ .Params.instance }}'}",
|
||||||
|
"node_memory_Buffers_bytes{job='node',instance='{{ .Params.instance }}'}",
|
||||||
|
"node_memory_MemTotal_bytes{job='node',instance='{{ .Params.instance }}'} - node_memory_MemFree_bytes{job='node',instance='{{.Params.instance}}'} - node_memory_Buffers_bytes{job='node',instance='{{.Params.instance}}'} - node_memory_Cached_bytes{job='node',instance='{{.Params.instance}}'}",
|
||||||
|
"node_memory_MemFree{job='node',instance='{{ .Params.instance }}'}",
|
||||||
|
],
|
||||||
|
name: ["Cached", "Buffers", "Used", "Free"],
|
||||||
|
min: 0,
|
||||||
|
yUnits: "B",
|
||||||
|
yAxisFormatter: PromConsole.NumberFormatter.humanize1024,
|
||||||
|
yHoverFormatter: PromConsole.NumberFormatter.humanize1024,
|
||||||
|
yTitle: 'Memory'
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{{ template "prom_right_table_head" }}
|
||||||
|
<tr><th colspan="2">Overview</th></tr>
|
||||||
|
<tr>
|
||||||
|
<td>User CPU</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "sum(irate(node_cpu_seconds_total{job='node',instance='%s',mode='user'}[5m])) * 100 / count(count by (cpu)(node_cpu_seconds_total{job='node',instance='%s'}))" .Params.instance .Params.instance) "%" "printf.1f") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>System CPU</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "sum(irate(node_cpu_seconds_total{job='node',instance='%s',mode='system'}[5m])) * 100 / count(count by (cpu)(node_cpu_seconds_total{job='node',instance='%s'}))" .Params.instance .Params.instance) "%" "printf.1f") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Memory Total</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "node_memory_MemTotal_bytes{job='node',instance='%s'}" .Params.instance) "B" "humanize1024") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Memory Free</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "node_memory_MemFree_bytes{job='node',instance='%s'}" .Params.instance) "B" "humanize1024") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">Network</th>
|
||||||
|
</tr>
|
||||||
|
{{ range printf "node_network_receive_bytes_total{job='node',instance='%s',device!='lo'}" .Params.instance | query | sortByLabel "device" }}
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Labels.device }} Received</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_network_receive_bytes_total{job='node',instance='%s',device='%s'}[5m])" .Labels.instance .Labels.device) "B/s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Labels.device }} Transmitted</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_network_transmit_bytes_total{job='node',instance='%s',device='%s'}[5m])" .Labels.instance .Labels.device) "B/s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">Disks</th>
|
||||||
|
</tr>
|
||||||
|
{{ range printf "node_disk_io_time_seconds_total{job='node',instance='%s',device!~'^(md\\\\d+$|dm-)'}" .Params.instance | query | sortByLabel "device" }}
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Labels.device }} Utilization</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_disk_io_time_seconds_total{job='node',instance='%s',device='%s'}[5m]) * 100" .Labels.instance .Labels.device) "%" "printf.1f") }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
{{ range printf "node_disk_io_time_seconds_total{job='node',instance='%s'}" .Params.instance | query | sortByLabel "device" }}
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Labels.device }} Throughput</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(node_disk_read_bytes_total{job='node',instance='%s',device='%s'}[5m]) + irate(node_disk_written_bytes_total{job='node',instance='%s',device='%s'}[5m])" .Labels.instance .Labels.device .Labels.instance .Labels.device) "B/s" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">Filesystem Fullness</th>
|
||||||
|
</tr>
|
||||||
|
{{ define "roughlyNearZero" }}
|
||||||
|
{{ if gt .1 . }}~0{{ else }}{{ printf "%.1f" . }}{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ range printf "node_filesystem_size_bytes{job='node',instance='%s'}" .Params.instance | query | sortByLabel "mountpoint" }}
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Labels.mountpoint }}</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "100 - node_filesystem_avail_bytes{job='node',instance='%s',mountpoint='%s'} / node_filesystem_size_bytes{job='node'} * 100" .Labels.instance .Labels.mountpoint) "%" "roughlyNearZero") }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
</tr>
|
||||||
|
{{ template "prom_right_table_tail" }}
|
||||||
|
|
||||||
|
{{ template "prom_content_tail" . }}
|
||||||
|
|
||||||
|
{{ template "tail" }}
|
34
consoles/node.html
Normal file
34
consoles/node.html
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{{ template "head" . }}
|
||||||
|
|
||||||
|
{{ template "prom_right_table_head" }}
|
||||||
|
<tr>
|
||||||
|
<th>Node</th>
|
||||||
|
<th>{{ template "prom_query_drilldown" (args "sum(up{job='node'})") }} / {{ template "prom_query_drilldown" (args "count(up{job='node'})") }}</th>
|
||||||
|
</tr>
|
||||||
|
{{ template "prom_right_table_tail" }}
|
||||||
|
|
||||||
|
{{ template "prom_content_head" . }}
|
||||||
|
<h1>Node</h1>
|
||||||
|
|
||||||
|
<table class="table table-condensed table-striped table-bordered" style="width: 0%">
|
||||||
|
<tr>
|
||||||
|
<th>Node</th>
|
||||||
|
<th>Up</th>
|
||||||
|
<th>CPU<br/>Used</th>
|
||||||
|
<th>Memory<br/> Available</th>
|
||||||
|
</tr>
|
||||||
|
{{ range query "up{job='node'}" | sortByLabel "instance" }}
|
||||||
|
<tr>
|
||||||
|
<td><a href="node-overview.html?instance={{ .Labels.instance }}">{{ reReplaceAll "(.*?://)([^:/]+?)(:\\d+)?/.*" "$2" .Labels.instance }}</a></td>
|
||||||
|
<td{{ if eq (. | value) 1.0 }}>Yes{{ else }} class="alert-danger">No{{ end }}</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "100 * (1 - avg by(instance)(irate(node_cpu_seconds_total{job='node',mode='idle',instance='%s'}[5m])))" .Labels.instance) "%" "printf.1f") }}</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "node_memory_MemFree_bytes{job='node',instance='%s'} + node_memory_Cached_bytes{job='node',instance='%s'} + node_memory_Buffers_bytes{job='node',instance='%s'}" .Labels.instance .Labels.instance .Labels.instance) "B" "humanize1024") }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ else }}
|
||||||
|
<tr><td colspan=4>No nodes found.</td></tr>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
|
{{ template "prom_content_tail" . }}
|
||||||
|
|
||||||
|
{{ template "tail" }}
|
96
consoles/prometheus-overview.html
Normal file
96
consoles/prometheus-overview.html
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
{{ template "head" . }}
|
||||||
|
|
||||||
|
{{ template "prom_right_table_head" }}
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">Overview</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>CPU</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(process_cpu_seconds_total{job='prometheus',instance='%s'}[5m])" .Params.instance) "s/s" "humanizeNoSmallPrefix") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Memory</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "process_resident_memory_bytes{job='prometheus',instance='%s'}" .Params.instance) "B" "humanize1024") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Version</td>
|
||||||
|
<td>{{ with query (printf "prometheus_build_info{job='prometheus',instance='%s'}" .Params.instance) }}{{. | first | label "version"}}{{end}}</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">Storage</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ingested Samples</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(prometheus_tsdb_head_samples_appended_total{job='prometheus',instance='%s'}[5m])" .Params.instance) "/s" "humanizeNoSmallPrefix") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Head Series</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "prometheus_tsdb_head_series{job='prometheus',instance='%s'}" .Params.instance) "" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Blocks Loaded</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "prometheus_tsdb_blocks_loaded{job='prometheus',instance='%s'}" .Params.instance) "" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">Rules</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Evaluation Duration</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(prometheus_evaluator_duration_seconds_sum{job='prometheus',instance='%s'}[5m]) / irate(prometheus_evaluator_duration_seconds_count{job='prometheus',instance='%s'}[5m])" .Params.instance .Params.instance) "" "humanizeDuration") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Notification Latency</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(prometheus_notifications_latency_seconds_sum{job='prometheus',instance='%s'}[5m]) / irate(prometheus_notifications_latency_seconds_count{job='prometheus',instance='%s'}[5m])" .Params.instance .Params.instance) "" "humanizeDuration") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Notification Queue</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "prometheus_notifications_queue_length{job='prometheus',instance='%s'}" .Params.instance) "" "humanize") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">HTTP Server</th>
|
||||||
|
</tr>
|
||||||
|
{{ range printf "prometheus_http_request_duration_seconds_count{job='prometheus',instance='%s'}" .Params.instance | query | sortByLabel "handler" }}
|
||||||
|
<tr>
|
||||||
|
<td>{{ .Labels.handler }}</td>
|
||||||
|
<td>{{ template "prom_query_drilldown" (args (printf "irate(prometheus_http_request_duration_seconds_count{job='prometheus',instance='%s',handler='%s'}[5m])" .Labels.instance .Labels.handler) "/s" "humanizeNoSmallPrefix") }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ template "prom_right_table_tail" }}
|
||||||
|
|
||||||
|
{{ template "prom_content_head" . }}
|
||||||
|
<div class="prom_content_div">
|
||||||
|
<h1>Prometheus Overview - {{ .Params.instance }}</h1>
|
||||||
|
|
||||||
|
<h3>Ingested Samples</h3>
|
||||||
|
<div id="samplesGraph"></div>
|
||||||
|
<script>
|
||||||
|
new PromConsole.Graph({
|
||||||
|
node: document.querySelector("#samplesGraph"),
|
||||||
|
expr: "irate(prometheus_tsdb_head_samples_appended_total{job='prometheus',instance='{{ .Params.instance }}'}[5m])",
|
||||||
|
name: 'Ingested Samples',
|
||||||
|
yAxisFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yHoverFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yTitle: "Samples",
|
||||||
|
yUnits: "/s",
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h3>HTTP Server</h3>
|
||||||
|
<div id="serverGraph"></div>
|
||||||
|
<script>
|
||||||
|
new PromConsole.Graph({
|
||||||
|
node: document.querySelector("#serverGraph"),
|
||||||
|
expr: "irate(prometheus_http_request_duration_seconds_count{job='prometheus',instance='{{ .Params.instance }}'}[5m])",
|
||||||
|
name: '[[handler]]',
|
||||||
|
yAxisFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yHoverFormatter: PromConsole.NumberFormatter.humanizeNoSmallPrefix,
|
||||||
|
yTitle: "Requests",
|
||||||
|
yUnits: "/s",
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
{{ template "prom_content_tail" . }}
|
||||||
|
|
||||||
|
{{ template "tail" }}
|
34
consoles/prometheus.html
Normal file
34
consoles/prometheus.html
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{{ 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-sm 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 }}
|
||||||
|
</table>
|
||||||
|
|
||||||
|
{{ template "prom_content_tail" . }}
|
||||||
|
|
||||||
|
{{ template "tail" }}
|
16
debian/changelog
vendored
16
debian/changelog
vendored
@ -1,16 +0,0 @@
|
|||||||
prometheus (3.5.0-1) UNRELEASED; urgency=medium
|
|
||||||
|
|
||||||
[ Mario Fetka ]
|
|
||||||
* Bump
|
|
||||||
* Bump
|
|
||||||
|
|
||||||
[ root ]
|
|
||||||
* Bump
|
|
||||||
|
|
||||||
-- root <mario.fetka@disconnected-by-peer.at> Sat, 09 Aug 2025 14:48:21 +0200
|
|
||||||
|
|
||||||
prometheus (2.11.1) stable; urgency=medium
|
|
||||||
|
|
||||||
* Version bump to 2.11.1.
|
|
||||||
|
|
||||||
-- Jiri Tyr <jiri.tyr@gmail.com> Mon, 12 Aug 2019 14:25:56 +0200
|
|
10
debian/control
vendored
10
debian/control
vendored
@ -1,10 +0,0 @@
|
|||||||
Source: prometheus
|
|
||||||
Section: net
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Jiri Tyr <jiri.tyr@gmail.com>
|
|
||||||
Standards-Version: 4.1.1
|
|
||||||
Homepage: https://prometheus.io/
|
|
||||||
|
|
||||||
Package: prometheus
|
|
||||||
Architecture: amd64
|
|
||||||
Description: Monitoring system and time series database
|
|
1
debian/default
vendored
1
debian/default
vendored
@ -1 +0,0 @@
|
|||||||
PROMETHEUS_OPTS='--config.file=/etc/prometheus/prometheus.yml --storage.tsdb.path=/var/lib/prometheus/data'
|
|
24
debian/postinst
vendored
24
debian/postinst
vendored
@ -1,24 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
configure)
|
|
||||||
# Add prometheus user
|
|
||||||
if ! getent passwd prometheus > /dev/null; then
|
|
||||||
adduser --quiet --system --home /var/lib/prometheus \
|
|
||||||
--group --gecos "Prometheus services" prometheus || true
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
abort-upgrade|abort-remove|abort-deconfigure)
|
|
||||||
:
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "postinst called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
exit 0
|
|
52
debian/rules
vendored
52
debian/rules
vendored
@ -1,52 +0,0 @@
|
|||||||
#!/usr/bin/make -f
|
|
||||||
|
|
||||||
define checkdir
|
|
||||||
@test -f debian/rules || \
|
|
||||||
(echo Not in correct source directory; exit 1)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define checkroot
|
|
||||||
@test $$(id -u) = 0 || (echo need root priviledges; exit 1)
|
|
||||||
endef
|
|
||||||
|
|
||||||
PRODUCT = prometheus
|
|
||||||
TOP_DIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
|
|
||||||
SRC_DIR = $(TOP_DIR)
|
|
||||||
DEB_DIR = $(TOP_DIR)/debian
|
|
||||||
DEST_DIR = $(DEB_DIR)/$(PRODUCT)
|
|
||||||
|
|
||||||
BIN_DIR = $(DEST_DIR)/usr/bin
|
|
||||||
CONF_DIR = $(DEST_DIR)/etc/$(PRODUCT)
|
|
||||||
DEFAULT_DIR = $(DEST_DIR)/etc/default
|
|
||||||
DOCS_DIR = $(DEST_DIR)/usr/share/doc/$(PRODUCT)
|
|
||||||
SYSD_DIR = $(DEST_DIR)/usr/lib/systemd/system
|
|
||||||
SHARE_DIR = $(DEST_DIR)/usr/share/$(PRODUCT)
|
|
||||||
|
|
||||||
build:
|
|
||||||
|
|
||||||
binary:
|
|
||||||
$(checkdir)
|
|
||||||
# $(checkroot)
|
|
||||||
mkdir -p $(DEST_DIR)/DEBIAN $(BIN_DIR) $(CONF_DIR) $(DEFAULT_DIR) $(DOCS_DIR) $(SYSD_DIR) $(SHARE_DIR)
|
|
||||||
install -Dm755 $(SRC_DIR)/$(PRODUCT) -t $(BIN_DIR)
|
|
||||||
install -Dm755 $(SRC_DIR)/promtool -t $(BIN_DIR)
|
|
||||||
# install -Dm755 $(SRC_DIR)/tsdb -t $(BIN_DIR)
|
|
||||||
install -Dm644 $(SRC_DIR)/LICENSE -t $(DOCS_DIR)
|
|
||||||
install -Dm644 $(SRC_DIR)/NOTICE -t $(DOCS_DIR)
|
|
||||||
install -Dm644 $(SRC_DIR)/$(PRODUCT).yml -t $(CONF_DIR)
|
|
||||||
install -Dm755 $(DEB_DIR)/postinst -t $(DEST_DIR)/DEBIAN
|
|
||||||
install -Dm644 $(DEB_DIR)/default $(DEFAULT_DIR)/$(PRODUCT)
|
|
||||||
install -Dm644 $(DEB_DIR)/service $(SYSD_DIR)/$(PRODUCT).service
|
|
||||||
# cp -r $(SRC_DIR)/console_libraries $(SHARE_DIR)
|
|
||||||
# cp -r $(SRC_DIR)/consoles $(SHARE_DIR)
|
|
||||||
dpkg-gencontrol -P$(DEST_DIR)
|
|
||||||
cd $(DEST_DIR) && find . -type f ! -regex '.*DEBIAN/.*' -printf '%P\0' | xargs -r0 md5sum > DEBIAN/md5sums
|
|
||||||
dpkg-deb -b $(DEST_DIR) ../
|
|
||||||
|
|
||||||
clean:
|
|
||||||
$(checkdir)
|
|
||||||
-rm -rf debian/$(PRODUCT)
|
|
||||||
-rm -f debian/files
|
|
||||||
-rm -f debian/substvars
|
|
||||||
|
|
||||||
.PHONY: binary clean
|
|
19
debian/service
vendored
19
debian/service
vendored
@ -1,19 +0,0 @@
|
|||||||
# -*- mode: conf -*-
|
|
||||||
|
|
||||||
[Unit]
|
|
||||||
Description=The Prometheus monitoring system and time series database.
|
|
||||||
Documentation=https://prometheus.io
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
EnvironmentFile=-/etc/default/prometheus
|
|
||||||
User=prometheus
|
|
||||||
ExecStart=/usr/bin/prometheus \
|
|
||||||
--web.console.libraries=/usr/share/prometheus/console_libraries \
|
|
||||||
--web.console.templates=/usr/share/prometheus/consoles \
|
|
||||||
$PROMETHEUS_OPTS
|
|
||||||
ExecReload=/bin/kill -HUP $MAINPID
|
|
||||||
Restart=on-failure
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
BIN
prometheus
BIN
prometheus
Binary file not shown.
@ -20,13 +20,10 @@ rule_files:
|
|||||||
# Here it's Prometheus itself.
|
# Here it's Prometheus itself.
|
||||||
scrape_configs:
|
scrape_configs:
|
||||||
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
||||||
- job_name: "prometheus"
|
- job_name: 'prometheus'
|
||||||
|
|
||||||
# metrics_path defaults to '/metrics'
|
# metrics_path defaults to '/metrics'
|
||||||
# scheme defaults to 'http'.
|
# scheme defaults to 'http'.
|
||||||
|
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets: ["localhost:9090"]
|
- targets: ['localhost:9090']
|
||||||
# The label name is added as a label `label_name=<label_value>` to any timeseries scraped from this config.
|
|
||||||
labels:
|
|
||||||
app: "prometheus"
|
|
||||||
|
BIN
promtool
BIN
promtool
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user