]> git.openstreetmap.org Git - chef.git/blob - cookbooks/prometheus/resources/exporter.rb
d3652d3b8242bb4b31e118935a475d515bba7c91
[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 :package, :kind_of => String
26 property :defaults, :kind_of => String
27 property :service, :kind_of => String
28
29 action :create do
30   package package_name
31
32   template defaults_name do
33     source "defaults.erb"
34     owner "root"
35     group "root"
36     mode "644"
37     variables new_resource.to_hash.merge(:listen_address => listen_address)
38   end
39
40   service service_name do
41     action [:enable, :start]
42     subscribes :restart, "template[#{defaults_name}]"
43   end
44
45   node.default[:prometheus][:exporters][new_resource.exporter] = listen_address
46 end
47
48 action :delete do
49   service service_name do
50     action [:disable, :stop]
51   end
52
53   package package_name do
54     action :purge
55   end
56 end
57
58 action_class do
59   def package_name
60     new_resource.package || "prometheus-#{new_resource.exporter}-exporter"
61   end
62
63   def defaults_name
64     new_resource.defaults || "/etc/default/prometheus-#{new_resource.exporter}-exporter"
65   end
66
67   def listen_address
68     "#{node.internal_ipaddress}:#{new_resource.port}"
69   end
70
71   def service_name
72     new_resource.service || "prometheus-#{new_resource.exporter}-exporter"
73   end
74 end