alerting:
alertmanagers:
- - static_configs:
+ - path_prefix: /alertmanager
+ static_configs:
- targets:
- localhost:9093
- job_name: prometheus
scrape_interval: 5s
scrape_timeout: 5s
+ metrics_path: /prometheus/metrics
static_configs:
- targets:
- localhost:9090
- job_name: alertmanager
+ metrics_path: /alertmanager/metrics
static_configs:
- targets:
- localhost:9093
- targets:
- "<%= target[:address] %>"
labels:
- instance: <%= target[:name].split(".").first %>
+ instance: <%= target[:instance] %>
+<% end -%>
+ metric_relabel_configs:
+<% targets.each do |target| -%>
+<% target[:metric_relabel].each do |relabel| -%>
+ - source_labels: [instance,<%= relabel[:source_labels] %>]
+ regex: "<%= target[:instance] %>;<%= relabel[:regex] %>"
+ action: <%= relabel[:action] %>
+<% end -%>
<% end -%>
<% end -%>