2 # Cookbook:: prometheus
5 # Copyright:: 2020, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # https://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 include_recipe "apache"
22 include_recipe "networking"
23 include_recipe "timescaledb"
25 passwords = data_bag_item("prometheus", "passwords")
26 tokens = data_bag_item("prometheus", "tokens")
27 admins = data_bag_item("apache", "admins")
29 prometheus_exporter "fastly" do
31 listen_switch "endpoint"
33 environment "FASTLY_API_TOKEN" => tokens["fastly"]
36 cache_dir = Chef::Config[:file_cache_path]
38 prometheus_version = "2.31.1"
39 alertmanager_version = "0.23.0"
40 karma_version = "0.93"
42 directory "/opt/prometheus-server" do
48 remote_file "#{cache_dir}/prometheus.linux-amd64.tar.gz" do
49 source "https://github.com/prometheus/prometheus/releases/download/v#{prometheus_version}/prometheus-#{prometheus_version}.linux-amd64.tar.gz"
56 archive_file "#{cache_dir}/prometheus.linux-amd64.tar.gz" do
58 destination "/opt/prometheus-server/prometheus"
63 subscribes :extract, "remote_file[#{cache_dir}/prometheus.linux-amd64.tar.gz]"
66 remote_file "#{cache_dir}/alertmanager.linux-amd64.tar.gz" do
67 source "https://github.com/prometheus/alertmanager/releases/download/v#{alertmanager_version}/alertmanager-#{alertmanager_version}.linux-amd64.tar.gz"
74 archive_file "#{cache_dir}/alertmanager.linux-amd64.tar.gz" do
76 destination "/opt/prometheus-server/alertmanager"
81 subscribes :extract, "remote_file[#{cache_dir}/alertmanager.linux-amd64.tar.gz]"
84 remote_file "#{cache_dir}/karma-linux-amd64.tar.gz" do
85 source "https://github.com/prymitive/karma/releases/download/v#{karma_version}/karma-linux-amd64.tar.gz"
92 archive_file "#{cache_dir}/karma-linux-amd64.tar.gz" do
94 destination "/opt/prometheus-server/karma"
98 subscribes :extract, "remote_file[#{cache_dir}/karma-linux-amd64.tar.gz]"
103 prometheus-alertmanager
106 promscale_version = "0.10.0"
107 promscale_extension_version = "0.3.2"
109 database_version = node[:timescaledb][:database_version]
110 database_cluster = "#{database_version}/main"
112 postgresql_user "prometheus" do
113 cluster database_cluster
117 postgresql_database "promscale" do
118 cluster database_cluster
122 directory "/opt/promscale" do
128 remote_file "#{cache_dir}/promscale_extension.pg#{database_version}.x86_64.deb" do
129 source "https://github.com/timescale/promscale_extension/releases/download/#{promscale_extension_version}/promscale_extension-#{promscale_extension_version}.pg#{database_version}.x86_64.deb"
136 dpkg_package "promscale-extension-postgresql-#{database_version}" do
137 source "#{cache_dir}/promscale_extension.pg#{database_version}.x86_64.deb"
138 version "#{promscale_extension_version}-1"
141 directory "/opt/promscale/bin" do
147 remote_file "/opt/promscale/bin/promscale" do
149 source "https://github.com/timescale/promscale/releases/download/#{promscale_version}/promscale_#{promscale_version}_Linux_x86_64"
155 systemd_service "promscale" do
156 description "Promscale Connector"
159 exec_start "/opt/promscale/bin/promscale --db.uri postgresql:///promscale?host=/run/postgresql&port=5432 --db.connections-max 400"
162 protect_system "strict"
164 no_new_privileges true
167 if node[:prometheus][:promscale]
168 service "promscale" do
169 action [:enable, :start]
170 subscribes :restart, "remote_file[/opt/promscale/bin/promscale]"
171 subscribes :restart, "systemd_service[promscale]"
174 service "promscale" do
175 action [:disable, :stop]
179 search(:node, "roles:gateway") do |gateway|
180 allowed_ips = gateway.interfaces(:role => :internal).map do |interface|
181 "#{interface[:network]}/#{interface[:prefix]}"
184 node.default[:networking][:wireguard][:peers] << {
185 :public_key => gateway[:networking][:wireguard][:public_key],
186 :allowed_ips => allowed_ips,
187 :endpoint => "#{gateway.name}:51820"
194 search(:node, "recipes:prometheus\\:\\:default").sort_by(&:name).each do |client|
195 if client[:prometheus][:mode] == "wireguard"
196 node.default[:networking][:wireguard][:peers] << {
197 :public_key => client[:networking][:wireguard][:public_key],
198 :allowed_ips => client[:networking][:wireguard][:address],
199 :endpoint => "#{client.name}:51820"
203 client[:prometheus][:exporters].each do |key, exporter|
204 if exporter.is_a?(Hash)
205 name = exporter[:name]
206 address = exporter[:address]
208 metric_relabel = exporter[:metric_relabel] || []
220 :instance => client.name.split(".").first,
221 :metric_relabel => metric_relabel
225 Hash(client[:prometheus][:snmp]).each do |instance, details|
227 :instance => instance,
228 :target => details[:address],
229 :module => details[:module],
230 :address => client[:prometheus][:addresses]["snmp"],
231 :labels => Array(details[:labels])
236 certificates = search(:node, "letsencrypt:certificates").each_with_object({}) do |n, c|
237 n[:letsencrypt][:certificates].each do |name, details|
238 c[name] ||= details.merge(:nodes => [])
242 :address => n.external_ipaddress || n.internal_ipaddress
247 template "/etc/prometheus/ssl.yml" do
252 variables :certificates => certificates
255 prometheus_exporter "ssl" do
258 options "--config.file=/etc/prometheus/ssl.yml"
259 register_target false
262 systemd_service "prometheus-executable" do
265 exec_start "/opt/prometheus-server/prometheus/prometheus --config.file=/etc/prometheus/prometheus.yml --web.external-url=https://prometheus.openstreetmap.org/prometheus --storage.tsdb.path=/var/lib/prometheus/metrics2"
266 notifies :restart, "service[prometheus]"
269 template "/etc/prometheus/prometheus.yml" do
270 source "prometheus.yml.erb"
274 variables :jobs => jobs, :snmp_targets => snmp_targets, :certificates => certificates
277 template "/etc/prometheus/alert_rules.yml" do
278 source "alert_rules.yml.erb"
284 service "prometheus" do
285 action [:enable, :start]
286 subscribes :reload, "template[/etc/prometheus/prometheus.yml]"
287 subscribes :reload, "template[/etc/prometheus/alert_rules.yml]"
288 subscribes :restart, "archive_file[#{cache_dir}/prometheus.linux-amd64.tar.gz]"
291 systemd_service "prometheus-alertmanager-executable" do
292 service "prometheus-alertmanager"
294 exec_start "/opt/prometheus-server/alertmanager/alertmanager --config.file=/etc/prometheus/alertmanager.yml --storage.path=/var/lib/prometheus/alertmanager --web.external-url=https://prometheus.openstreetmap.org/alertmanager"
295 notifies :restart, "service[prometheus-alertmanager]"
298 template "/etc/prometheus/alertmanager.yml" do
299 source "alertmanager.yml.erb"
305 service "prometheus-alertmanager" do
306 action [:enable, :start]
307 subscribes :reload, "template[/etc/prometheus/alertmanager.yml]"
308 subscribes :restart, "archive_file[#{cache_dir}/alertmanager.linux-amd64.tar.gz]"
311 template "/etc/prometheus/amtool.yml" do
312 source "amtool.yml.erb"
318 template "/etc/prometheus/karma.yml" do
319 source "karma.yml.erb"
325 systemd_service "prometheus-karma" do
326 description "Alert dashboard for Prometheus Alertmanager"
328 exec_start "/opt/prometheus-server/karma/karma-linux-amd64 --config.file=/etc/prometheus/karma.yml"
331 protect_system "full"
333 no_new_privileges true
337 service "prometheus-karma" do
338 action [:enable, :start]
339 subscribes :reload, "template[/etc/prometheus/karma.yml]"
340 subscribes :restart, "archive_file[#{cache_dir}/karma-linux-amd64.tar.gz]"
343 package "grafana-enterprise"
345 template "/etc/grafana/grafana.ini" do
346 source "grafana.ini.erb"
350 variables :passwords => passwords
353 service "grafana-server" do
354 action [:enable, :start]
355 subscribes :restart, "template[/etc/grafana/grafana.ini]"
358 apache_module "alias"
359 apache_module "proxy_http"
361 ssl_certificate "prometheus.openstreetmap.org" do
362 domains ["prometheus.openstreetmap.org", "prometheus.osm.org"]
363 notifies :reload, "service[apache2]"
366 apache_site "prometheus.openstreetmap.org" do
367 template "apache.erb"
368 variables :admin_hosts => admins["hosts"]
371 template "/etc/cron.daily/prometheus-backup" do
372 source "backup.cron.erb"