]> git.openstreetmap.org Git - chef.git/blob - cookbooks/prometheus/resources/exporter.rb
82c2957c020a6235e76885380802c75c423169c5
[chef.git] / cookbooks / prometheus / resources / exporter.rb
1 #
2 # Cookbook:: prometheus
3 # Resource:: prometheus_exporter
4 #
5 # Copyright:: 2020, 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 default_action :create
21
22 property :exporter, :kind_of => String, :name_property => true
23 property :port, :kind_of => Integer, :required => [:create]
24 property :listen_switch, :kind_of => String, :default => "web.listen-address"
25 property :listen_type, :kind_of => String, :default => "address"
26 property :user, :kind_of => String, :default => "root"
27 property :options, :kind_of => [String, Array]
28 property :environment, :kind_of => Hash, :default => {}
29
30 action :create do
31   systemd_service service_name do
32     description "Prometheus #{new_resource.exporter} exporter"
33     type "simple"
34     user new_resource.user
35     environment new_resource.environment
36     exec_start "#{executable_path} #{executable_options}"
37     private_tmp true
38     protect_system "strict"
39     protect_home true
40     no_new_privileges true
41   end
42
43   service service_name do
44     action [:enable, :start]
45     subscribes :restart, "systemd_service[#{service_name}]"
46   end
47
48   firewall_rule "accept-prometheus-#{new_resource.exporter}" do
49     action :accept
50     source "osm"
51     dest "fw"
52     proto "tcp:syn"
53     dest_ports new_resource.port
54     only_if { node[:prometheus][:mode] == "external" }
55   end
56
57   node.default[:prometheus][:exporters][new_resource.exporter] = listen_address
58 end
59
60 action :delete do
61   service service_name do
62     action [:disable, :stop]
63   end
64
65   systemd_service service_name do
66     action :delete
67   end
68 end
69
70 action :restart do
71   service service_name do
72     action :restart
73   end
74 end
75
76 action_class do
77   def service_name
78     "prometheus-#{new_resource.exporter}-exporter"
79   end
80
81   def executable_path
82     "/opt/prometheus/exporters/#{new_resource.exporter}/#{new_resource.exporter}_exporter"
83   end
84
85   def executable_options
86     "--#{new_resource.listen_switch}=#{listen_argument} #{Array(new_resource.options).join(' ')}"
87   end
88
89   def listen_argument
90     case new_resource.listen_type
91     when "address" then listen_address
92     when "url" then "http://#{listen_address}/metrics"
93     end
94   end
95
96   def listen_address
97     if node[:prometheus][:mode] == "wireguard"
98       "[#{node[:prometheus][:address]}]:#{new_resource.port}"
99     else
100       "#{node[:prometheus][:address]}:#{new_resource.port}"
101     end
102   end
103 end
104
105 def after_created
106   subscribes :restart, "git[/opt/prometheus]"
107 end