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")
 
  28 prometheus_exporter "fastly" do
 
  30   listen_switch "endpoint"
 
  32   environment "FASTLY_API_TOKEN" => tokens["fastly"]
 
  37   prometheus-alertmanager
 
  40 promscale_version = "0.1.4"
 
  42 database_cluster = node[:timescaledb][:cluster]
 
  44 postgresql_user "prometheus" do
 
  45   cluster database_cluster
 
  49 postgresql_database "promscale" do
 
  50   cluster database_cluster
 
  54 postgresql_extension "timescaledb" do
 
  55   cluster database_cluster
 
  59 directory "/opt/promscale" do
 
  73 git "/opt/promscale/extension" do
 
  75   repository "https://github.com/timescale/promscale_extension.git"
 
  81 execute "/opt/promscale/extension/Makefile" do
 
  83   command "make install"
 
  84   cwd "/opt/promscale/extension"
 
  87   subscribes :run, "git[/opt/promscale/extension]", :immediately
 
  88   notifies :restart, "service[postgresql]", :immediately
 
  91 directory "/opt/promscale/bin" do
 
  97 remote_file "/opt/promscale/bin/promscale" do
 
  99   source "https://github.com/timescale/promscale/releases/download/#{promscale_version}/promscale_#{promscale_version}_Linux_x86_64"
 
 105 systemd_service "promscale" do
 
 106   description "Promscale Connector"
 
 109   exec_start "/opt/promscale/bin/promscale --db-host /run/postgresql --db-port 5432 --db-user prometheus --db-name promscale --db-connections-max 400"
 
 110   # exec_start lazy { "/opt/promscale/bin/promscale --db-host /run/postgresql --db-port #{node[:postgresql][:clusters][database_cluster][:port]} --db-user prometheus --db-name promscale --db-max-connections 400" }
 
 113   protect_system "strict"
 
 115   no_new_privileges true
 
 118 service "promscale" do
 
 119   action [:enable, :start]
 
 120   subscribes :restart, "remote_file[/opt/promscale/bin/promscale]"
 
 121   subscribes :restart, "systemd_service[promscale]"
 
 124 postgresql_extension "promscale" do
 
 125   cluster database_cluster
 
 127   notifies :restart, "service[promscale]"
 
 130 systemd_service "promscale-maintenance" do
 
 131   description "Promscale Maintenace"
 
 134   exec_start "/usr/bin/psql --command='CALL prom_api.execute_maintenance()' promscale"
 
 136   protect_system "strict"
 
 138   no_new_privileges true
 
 141 systemd_timer "promscale-maintenance" do
 
 142   description "Promscale Maintenace"
 
 144   on_unit_inactive_sec 1800
 
 149 search(:node, "recipes:prometheus\\:\\:default").sort_by(&:name).each do |client|
 
 150   if client[:prometheus][:mode] == "wireguard"
 
 151     node.default[:networking][:wireguard][:peers] << {
 
 152       :public_key => client[:networking][:wireguard][:public_key],
 
 153       :allowed_ips => client[:networking][:wireguard][:address],
 
 154       :endpoint => "#{client.name}:51820"
 
 158   client[:prometheus][:exporters].each do |key, exporter|
 
 159     if exporter.is_a?(Hash)
 
 160       name = exporter[:name]
 
 161       address = exporter[:address]
 
 168     jobs[name] << { :address => address, :name => client.name }
 
 172 template "/etc/prometheus/prometheus.yml" do
 
 173   source "prometheus.yml.erb"
 
 177   variables :jobs => jobs
 
 180 service "prometheus" do
 
 181   action [:enable, :start]
 
 182   subscribes :reload, "template[/etc/prometheus/prometheus.yml]"
 
 185 template "/etc/prometheus/alertmanager.yml" do
 
 186   source "alertmanager.yml.erb"
 
 192 service "prometheus-alertmanager" do
 
 193   action [:enable, :start]
 
 194   subscribes :reload, "template[/etc/prometheus/alertmanager.yml]"
 
 197 package "grafana-enterprise"
 
 199 template "/etc/grafana/grafana.ini" do
 
 200   source "grafana.ini.erb"
 
 204   variables :passwords => passwords
 
 207 service "grafana-server" do
 
 208   action [:enable, :start]
 
 209   subscribes :restart, "template[/etc/grafana/grafana.ini]"
 
 212 apache_module "alias"
 
 213 apache_module "proxy_http"
 
 215 ssl_certificate "prometheus.openstreetmap.org" do
 
 216   domains ["prometheus.openstreetmap.org", "prometheus.osm.org"]
 
 217   notifies :reload, "service[apache2]"
 
 220 apache_site "prometheus.openstreetmap.org" do
 
 221   template "apache.erb"