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