]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/prometheus/templates/default/prometheus.yml.erb
Configure prometheus alert manager
[chef.git] / cookbooks / prometheus / templates / default / prometheus.yml.erb
index 60345ef5258ee95577605a9b4901843154413e7c..c6ace499b22c8c47511fef36ada4e1a313275991 100644 (file)
@@ -11,11 +11,16 @@ scrape_configs:
     static_configs:
       - targets:
           - localhost:9090
-<% @clients.each do |client| -%>
-  - job_name: <%= client.name %>
+<% @jobs.sort.each do |name, targets| -%>
+  - job_name: <%= name %>
     static_configs:
+<% targets.each do |target| -%>
       - targets:
-<% client[:prometheus][:exporters].sort.each do |_,address| -%>
-          - <%= address %>
+          - "<%= target[:address] %>"
+        labels:
+          instance: <%= target[:name].split(".").first %>
 <% end -%>
 <% end -%>
+
+# remote_write:
+#   - url: "http://localhost:9201/write"