X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b7bd2d4b83bbfb1d835bef90e50ae451105e3b06..1b601b3446d4698da91ed8eae089c9cbc72e98dc:/cookbooks/prometheus/recipes/default.rb diff --git a/cookbooks/prometheus/recipes/default.rb b/cookbooks/prometheus/recipes/default.rb index a9a1db6a2..20242a84d 100644 --- a/cookbooks/prometheus/recipes/default.rb +++ b/cookbooks/prometheus/recipes/default.rb @@ -17,6 +17,7 @@ # limitations under the License. # +include_recipe "git" include_recipe "networking" if node.internal_ipaddress @@ -38,8 +39,46 @@ else node.default[:prometheus][:address] = node.external_ipaddress(:family => :inet) end +directory "/opt/prometheus" do + action :delete + owner "root" + group "root" + mode "755" + recursive true + not_if { ::Dir.exist?("/opt/prometheus/.git") } +end + +git "/opt/prometheus" do + action :sync + repository "https://github.com/openstreetmap/prometheus-exporters.git" + revision "main" + depth 1 + user "root" + group "root" +end + +directory "/etc/prometheus/collectors" do + owner "root" + group "root" + mode "755" + recursive true +end + +directory "/var/lib/prometheus/node-exporter" do + owner "root" + group "adm" + mode "775" + recursive true +end + +template "/var/lib/prometheus/node-exporter/chef.prom" do + source "chef.prom.erb" + owner "root" + group "root" + mode "644" +end + prometheus_exporter "node" do port 9100 - package_options "--no-install-recommends" - exporter_options "--collector.ntp --collector.processes --collector.interrupts" + options "--collector.ntp --collector.processes --collector.interrupts --collector.tcpstat --collector.textfile.directory=/var/lib/prometheus/node-exporter" end