X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a2fcf073ea11dab5073424d9099420f933bf99d5..49e90bd4f3154ad5b3a542c7aad648b008dfe844:/cookbooks/prometheus/templates/default/prometheus.yml.erb diff --git a/cookbooks/prometheus/templates/default/prometheus.yml.erb b/cookbooks/prometheus/templates/default/prometheus.yml.erb index b00c6aaf0..b44654463 100644 --- a/cookbooks/prometheus/templates/default/prometheus.yml.erb +++ b/cookbooks/prometheus/templates/default/prometheus.yml.erb @@ -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,11 +20,20 @@ scrape_configs: static_configs: - targets: - localhost:9090 -<% @jobs.sort.each do |name, addresses| -%> + - job_name: alertmanager + static_configs: + - targets: + - localhost:9093 +<% @jobs.sort.each do |name, targets| -%> - job_name: <%= name %> static_configs: +<% targets.each do |target| -%> - targets: -<% addresses.sort.each do |address| -%> - - <%= address %> + - "<%= target[:address] %>" + labels: + instance: <%= target[:name].split(".").first %> <% end -%> <% end -%> + +# remote_write: +# - url: "http://localhost:9201/write"