]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/prometheus/templates/default/prometheus.yml.erb
Exclude some exporter metrics from promscale archiving
[chef.git] / cookbooks / prometheus / templates / default / prometheus.yml.erb
index b7a3cf81ef49a54ceed3f91828af503164c7538b..71ccf68a1b9f2136591cae03ad0f40a36120c16c 100644 (file)
@@ -34,9 +34,24 @@ scrape_configs:
       - targets:
           - "<%= target[:address] %>"
         labels:
-          instance: <%= target[:name].split(".").first %>
+          instance: <%= target[:instance] %>
+<% end -%>
+    metric_relabel_configs:
+<% targets.each do |target| -%>
+<% target[:metric_relabel].each do |relabel| -%>
+      - source_labels: [instance,<%= relabel[:source_labels] %>]
+        regex: "<%= target[:instance] %>;<%= relabel[:regex] %>"
+        action: <%= relabel[:action] %>
+<% end -%>
 <% end -%>
 <% end -%>
 
-# remote_write:
-#   - url: "http://localhost:9201/write"
+remote_write:
+  - url: "http://localhost:9201/write"
+    write_relabel_configs:
+      - source_labels: [__name__]
+        regex: "go_.*"
+        action: drop
+      - source_labels: [__name__]
+        regex: "promhttp_.*"
+        action: drop