X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/4d58dbbf44ec07022db6abfadc8a992a6496bc1b..a0aaf12636f979b4fbb9a6350cbf770cacae5361:/cookbooks/prometheus/recipes/default.rb diff --git a/cookbooks/prometheus/recipes/default.rb b/cookbooks/prometheus/recipes/default.rb index 85c5ec312..df3ec2ea5 100644 --- a/cookbooks/prometheus/recipes/default.rb +++ b/cookbooks/prometheus/recipes/default.rb @@ -43,14 +43,10 @@ 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 +git "/opt/prometheus-exporters" do action :sync repository "https://github.com/openstreetmap/prometheus-exporters.git" revision "main" @@ -103,21 +99,46 @@ end prometheus_exporter "node" do port 9100 + user "root" + proc_subset "all" + protect_clock false + restrict_address_families %w[AF_UNIX AF_NETLINK] + system_call_filter ["@system-service", "@clock"] options %w[ --collector.textfile.directory=/var/lib/prometheus/node-exporter --collector.interrupts - --collector.ntp --collector.processes + --collector.rapl.enable-zone-label --collector.systemd --collector.tcpstat ] metric_relabel metric_relabel end +unless node[:prometheus][:junos].empty? + targets = node[:prometheus][:junos].collect { |_, details| details[:address] }.sort.join(",") + + prometheus_exporter "junos" do + port 9326 + options %W[ + --ssh.user=prometheus + --ssh.keyfile=/var/lib/prometheus/junos-exporter/id_rsa + --ssh.targets=#{targets} + --bgp.enabled=false + --lacp.enabled=true + --ldp.enabled=false + --ospf.enabled=false + --power.enabled=false + ] + ssh true + register_target false + end +end + unless node[:prometheus][:snmp].empty? prometheus_exporter "snmp" do port 9116 - options "--config.file=/opt/prometheus/exporters/snmp/snmp.yml" + options "--config.file=/opt/prometheus-exporters/exporters/snmp/snmp.yml" register_target false end end