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"
21 include_recipe "apt::grafana"
22 include_recipe "apt::timescaledb"
23 include_recipe "networking"
24 include_recipe "timescaledb"
26 passwords = data_bag_item("prometheus", "passwords")
27 tokens = data_bag_item("prometheus", "tokens")
28 admins = data_bag_item("apache", "admins")
30 prometheus_exporter "fastly" do
32 listen_switch "listen"
33 environment "FASTLY_API_TOKEN" => tokens["fastly"]
36 prometheus_exporter "fastly_healthcheck" do
39 environment "FASTLY_API_TOKEN" => tokens["fastly"]
42 prometheus_exporter "statuscake" do
46 environment "STATUSCAKE_APIKEY" => tokens["statuscake"]
49 cache_dir = Chef::Config[:file_cache_path]
51 prometheus_version = "2.39.1"
52 alertmanager_version = "0.24.0"
53 karma_version = "0.108"
55 directory "/opt/prometheus-server" do
61 remote_file "#{cache_dir}/prometheus.linux-amd64.tar.gz" do
62 source "https://github.com/prometheus/prometheus/releases/download/v#{prometheus_version}/prometheus-#{prometheus_version}.linux-amd64.tar.gz"
69 archive_file "#{cache_dir}/prometheus.linux-amd64.tar.gz" do
71 destination "/opt/prometheus-server/prometheus"
76 subscribes :extract, "remote_file[#{cache_dir}/prometheus.linux-amd64.tar.gz]"
79 remote_file "#{cache_dir}/alertmanager.linux-amd64.tar.gz" do
80 source "https://github.com/prometheus/alertmanager/releases/download/v#{alertmanager_version}/alertmanager-#{alertmanager_version}.linux-amd64.tar.gz"
87 archive_file "#{cache_dir}/alertmanager.linux-amd64.tar.gz" do
89 destination "/opt/prometheus-server/alertmanager"
94 subscribes :extract, "remote_file[#{cache_dir}/alertmanager.linux-amd64.tar.gz]"
97 remote_file "#{cache_dir}/karma-linux-amd64.tar.gz" do
98 source "https://github.com/prymitive/karma/releases/download/v#{karma_version}/karma-linux-amd64.tar.gz"
105 archive_file "#{cache_dir}/karma-linux-amd64.tar.gz" do
107 destination "/opt/prometheus-server/karma"
111 subscribes :extract, "remote_file[#{cache_dir}/karma-linux-amd64.tar.gz]"
114 promscale_version = "0.16.0"
116 database_version = node[:timescaledb][:database_version]
117 database_cluster = "#{database_version}/main"
121 prometheus-alertmanager
122 promscale-extension-postgresql-#{database_version}
125 postgresql_user "prometheus" do
126 cluster database_cluster
130 postgresql_database "promscale" do
131 cluster database_cluster
135 directory "/opt/promscale" do
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"
163 protect_system "strict"
165 no_new_privileges true
168 if node[:prometheus][:promscale]
169 service "promscale" do
170 action [:enable, :start]
171 subscribes :restart, "remote_file[/opt/promscale/bin/promscale]"
172 subscribes :restart, "systemd_service[promscale]"
175 service "promscale" do
176 action [:disable, :stop]
180 search(:node, "roles:gateway") do |gateway|
181 allowed_ips = gateway.interfaces(:role => :internal).map do |interface|
182 "#{interface[:network]}/#{interface[:prefix]}"
185 node.default[:networking][:wireguard][:peers] << {
186 :public_key => gateway[:networking][:wireguard][:public_key],
187 :allowed_ips => allowed_ips,
188 :endpoint => "#{gateway.name}:51820"
195 search(:node, "recipes:prometheus\\:\\:default").sort_by(&:name).each do |client|
196 if client[:prometheus][:mode] == "wireguard"
197 node.default[:networking][:wireguard][:peers] << {
198 :public_key => client[:networking][:wireguard][:public_key],
199 :allowed_ips => client[:networking][:wireguard][:address],
200 :endpoint => "#{client.name}:51820"
204 client[:prometheus][:exporters].each do |key, exporter|
205 if exporter.is_a?(Hash)
206 name = exporter[:name]
207 address = exporter[:address]
209 scrape_interval = exporter[:scrape_interval]
210 scrape_timeout = exporter[:scrape_timeout]
211 metric_relabel = exporter[:metric_relabel] || []
216 scrape_interval = nil
225 :instance => client.name.split(".").first,
226 :scrape_interval => scrape_interval,
227 :scrape_timeout => scrape_timeout,
228 :metric_relabel => metric_relabel
232 Hash(client[:prometheus][:snmp]).each do |instance, details|
234 :instance => instance,
235 :target => details[:address],
236 :modules => details[:modules],
237 :address => client[:prometheus][:addresses]["snmp"],
238 :labels => Array(details[:labels])
243 certificates = search(:node, "letsencrypt:certificates").each_with_object({}) do |n, c|
244 n[:letsencrypt][:certificates].each do |name, details|
245 c[name] ||= details.merge(:nodes => [])
249 :address => n.external_ipaddress || n.internal_ipaddress
254 template "/etc/prometheus/ssl.yml" do
259 variables :certificates => certificates
262 prometheus_exporter "ssl" do
265 options "--config.file=/etc/prometheus/ssl.yml"
266 register_target false
269 systemd_service "prometheus-executable" do
272 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 --storage.tsdb.retention.time=30d"
274 notifies :restart, "service[prometheus]"
277 template "/etc/prometheus/prometheus.yml" do
278 source "prometheus.yml.erb"
282 variables :jobs => jobs, :snmp_targets => snmp_targets, :certificates => certificates
285 template "/etc/prometheus/alert_rules.yml" do
286 source "alert_rules.yml.erb"
292 service "prometheus" do
293 action [:enable, :start]
294 subscribes :reload, "template[/etc/prometheus/prometheus.yml]"
295 subscribes :reload, "template[/etc/prometheus/alert_rules.yml]"
296 subscribes :restart, "archive_file[#{cache_dir}/prometheus.linux-amd64.tar.gz]"
299 systemd_service "prometheus-alertmanager-executable" do
300 service "prometheus-alertmanager"
302 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"
303 notifies :restart, "service[prometheus-alertmanager]"
306 link "/usr/local/bin/promtool" do
307 to "/opt/prometheus-server/prometheus/promtool"
310 template "/etc/prometheus/alertmanager.yml" do
311 source "alertmanager.yml.erb"
317 service "prometheus-alertmanager" do
318 action [:enable, :start]
319 subscribes :reload, "template[/etc/prometheus/alertmanager.yml]"
320 subscribes :restart, "archive_file[#{cache_dir}/alertmanager.linux-amd64.tar.gz]"
323 directory "/etc/amtool" do
329 template "/etc/amtool/config.yml" do
330 source "amtool.yml.erb"
336 link "/usr/local/bin/amtool" do
337 to "/opt/prometheus-server/alertmanager/amtool"
340 template "/etc/prometheus/karma.yml" do
341 source "karma.yml.erb"
347 systemd_service "prometheus-karma" do
348 description "Alert dashboard for Prometheus Alertmanager"
350 exec_start "/opt/prometheus-server/karma/karma-linux-amd64 --config.file=/etc/prometheus/karma.yml"
353 protect_system "full"
355 no_new_privileges true
359 service "prometheus-karma" do
360 action [:enable, :start]
361 subscribes :reload, "template[/etc/prometheus/karma.yml]"
362 subscribes :restart, "archive_file[#{cache_dir}/karma-linux-amd64.tar.gz]"
365 package "grafana-enterprise"
367 template "/etc/grafana/grafana.ini" do
368 source "grafana.ini.erb"
372 variables :passwords => passwords
375 service "grafana-server" do
376 action [:enable, :start]
377 subscribes :restart, "template[/etc/grafana/grafana.ini]"
380 apache_module "alias"
381 apache_module "proxy_http"
383 ssl_certificate "prometheus.openstreetmap.org" do
384 domains ["prometheus.openstreetmap.org", "prometheus.osm.org"]
385 notifies :reload, "service[apache2]"
388 apache_site "prometheus.openstreetmap.org" do
389 template "apache.erb"
390 variables :admin_hosts => admins["hosts"]
393 template "/etc/cron.daily/prometheus-backup" do
394 source "backup.cron.erb"