]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/prometheus/templates/default/prometheus.yml.erb
Collect alertmanager statistics
[chef.git] / cookbooks / prometheus / templates / default / prometheus.yml.erb
index 591c1e0ec5cdc579aaf60e5138bac7a4e1ccda26..b44654463a46473262c322809439a55037cb0a77 100644 (file)
@@ -4,6 +4,15 @@ global:
   scrape_interval: 15s
   evaluation_interval: 15s
 
+alerting:
+  alertmanagers:
+    - static_configs:
+        - targets:
+            - localhost:9093
+
+rule_files:
+  - /etc/prometheus/*_rules.yml
+
 scrape_configs:
   - job_name: prometheus
     scrape_interval: 5s
@@ -11,6 +20,10 @@ scrape_configs:
     static_configs:
       - targets:
           - localhost:9090
+  - job_name: alertmanager
+    static_configs:
+      - targets:
+          - localhost:9093
 <% @jobs.sort.each do |name, targets| -%>
   - job_name: <%= name %>
     static_configs:
@@ -22,8 +35,5 @@ scrape_configs:
 <% end -%>
 <% end -%>
 
-remote_write:
-  - url: "http://localhost:9201/write"
-
-remote_read:
-  - url: "http://localhost:9201/read"
+# remote_write:
+#   - url: "http://localhost:9201/write"