]> git.openstreetmap.org Git - chef.git/blob - cookbooks/prometheus/recipes/smokeping.rb
Generate smokeping targets from all hosts known to DNS
[chef.git] / cookbooks / prometheus / recipes / smokeping.rb
1 #
2 # Cookbook:: prometheus
3 # Recipe:: smokeping
4 #
5 # Copyright:: 2023, OpenStreetMap Foundation
6 #
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
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 include_recipe "prometheus"
21
22 hosts = {}
23
24 %w[ipv4 ipv6].each do |protocol|
25   json_file = "#{Chef::Config[:file_cache_path]}/#{protocol}.json"
26
27   remote_file json_file do
28     source "https://dns.openstreetmap.org/#{protocol}.json"
29     compile_time true
30     ignore_failure true
31   end
32
33   hosts[protocol] = if File.exist?(json_file)
34                       JSON.parse(IO.read(json_file)).filter_map do |name, address|
35                         name unless address.start_with?("10.")
36                       end
37                     else
38                       []
39                     end
40 end
41
42 template "/etc/prometheus/exporters/smokeping.yml" do
43   source "smokeping.yml.erb"
44   owner "root"
45   group "root"
46   mode "644"
47   variables :ip4_hosts => hosts["ipv4"], :ip6_hosts => hosts["ipv6"]
48 end
49
50 prometheus_exporter "smokeping" do
51   port 9374
52   environment "GOMAXPROCS" => "1"
53   options "--config.file=/etc/prometheus/exporters/smokeping.yml"
54   capability_bounding_set "CAP_NET_RAW"
55   ambient_capabilities "CAP_NET_RAW"
56   private_users false
57   subscribes :restart, "template[/etc/prometheus/exporters/smokeping.yml]"
58 end