X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/497f7692972b1d9e158e2945ab57de63d9dd3cdd..2f0b6f10a1269e4a0a3ae8897d6fda10dd14fb4d:/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 01eb1fd4f..d972d2948 100644 --- a/cookbooks/prometheus/templates/default/prometheus.yml.erb +++ b/cookbooks/prometheus/templates/default/prometheus.yml.erb @@ -27,6 +27,10 @@ scrape_configs: static_configs: - targets: - localhost:9093 + - job_name: promscale + static_configs: + - targets: + - localhost:9201 - job_name: ssl scrape_interval: 15m metrics_path: /probe @@ -69,6 +73,31 @@ scrape_configs: <% end -%> <% end -%> <% end -%> + - job_name: snmp + scrape_interval: 5m + scrape_timeout: 1m + metrics_path: /snmp + static_configs: + - targets: +<% @snmp_targets.sort_by { |t| t[:instance] }.each do |target| -%> + - targets: + - "<%= target[:target] %>/<%= target[:module] %>/<%= target[:address] %>" + labels: + instance: <%= target[:instance] %> +<% target[:labels].sort.each do |name, value| -%> + <%= name %>: <%= value %> +<% end -%> +<% end -%> + relabel_configs: + - source_labels: [__address__] + regex: "([^/]+)/[^/]+/.*" + target_label: __param_target + - source_labels: [__address__] + regex: "[^/]+/([^/]+)/.*" + target_label: __param_module + - source_labels: [__address__] + regex: "[^/]+/[^/]+/(.*)" + target_label: __address__ remote_write: - url: "http://localhost:9201/write"