]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/prometheus/recipes/default.rb
Update promscale to 0.2.0
[chef.git] / cookbooks / prometheus / recipes / default.rb
index caac9aeb77dd39e6c8e5eb07158119de6af36a14..2ad1d69aa7934eb0098f177721f0ce2032a1e966 100644 (file)
@@ -20,6 +20,8 @@
 include_recipe "git"
 include_recipe "networking"
 
+package "ruby"
+
 if node.internal_ipaddress
   node.default[:prometheus][:mode] = "internal"
   node.default[:prometheus][:address] = node.internal_ipaddress
@@ -85,6 +87,20 @@ template "/var/lib/prometheus/node-exporter/chef.prom" do
   mode "644"
 end
 
+metric_relabel = []
+
+node[:hardware][:hwmon].each do |chip, details|
+  next unless details[:ignore]
+
+  sensors = details[:ignore].join("|")
+
+  metric_relabel << {
+    :source_labels => "chip,sensor",
+    :regex => "#{chip};(#{sensors})",
+    :action => "drop"
+  }
+end
+
 prometheus_exporter "node" do
   port 9100
   options %w[
@@ -95,4 +111,5 @@ prometheus_exporter "node" do
     --collector.systemd
     --collector.tcpstat
   ]
+  metric_relabel metric_relabel
 end