X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/524d90d022751710980613df6b943291fc1498d6..3f5db81b561764ab48ff6f8f3cd9846b59a76d5a:/cookbooks/prometheus/templates/default/prometheus.yml.erb?ds=sidebyside diff --git a/cookbooks/prometheus/templates/default/prometheus.yml.erb b/cookbooks/prometheus/templates/default/prometheus.yml.erb index 60345ef52..02c71fefd 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,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"