]> git.openstreetmap.org Git - chef.git/blob - cookbooks/prometheus/templates/default/prometheus.yml.erb
Add some additional prometheus alerts
[chef.git] / cookbooks / prometheus / templates / default / prometheus.yml.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 global:
4   scrape_interval: 15s
5   evaluation_interval: 15s
6
7 alerting:
8   alertmanagers:
9     - path_prefix: /alertmanager
10       static_configs:
11         - targets:
12             - localhost:9093
13
14 rule_files:
15   - /etc/prometheus/*_rules.yml
16
17 scrape_configs:
18   - job_name: prometheus
19     scrape_interval: 5s
20     scrape_timeout: 5s
21     metrics_path: /prometheus/metrics
22     static_configs:
23       - targets:
24           - localhost:9090
25   - job_name: alertmanager
26     metrics_path: /alertmanager/metrics
27     static_configs:
28       - targets:
29           - localhost:9093
30   - job_name: promscale
31     static_configs:
32       - targets:
33           - localhost:9201
34   - job_name: ssl
35     scrape_interval: 15m
36     metrics_path: /probe
37     static_configs:
38 <% @certificates.values.sort_by { |c| c[:domains].first }.each do |certificate| -%>
39       - targets:
40 <% certificate[:nodes].sort_by { |h| h[:name] }.each do |host| -%>
41           - <%= certificate[:domains].first %>/<%= host[:name] %>:443
42 <% end -%>
43         labels:
44           domain: <%= certificate[:domains].first %>
45 <% end -%>
46     relabel_configs:
47       - source_labels: [__address__]
48         regex: "([^/]+)/.*"
49         target_label: __param_module
50       - source_labels: [__address__]
51         regex: "[^/]+/(.*)"
52         target_label: __param_target
53       - source_labels: [__param_target]
54         regex: "([^.]+)\\..*"
55         target_label: instance
56       - target_label: __address__
57         replacement: 127.0.0.1:9219
58 <% @jobs.sort.each do |name, targets| -%>
59   - job_name: <%= name %>
60     static_configs:
61 <% targets.each do |target| -%>
62       - targets:
63           - "<%= target[:address] %>"
64         labels:
65           instance: <%= target[:instance] %>
66 <% end -%>
67     metric_relabel_configs:
68 <% targets.each do |target| -%>
69 <% target[:metric_relabel].each do |relabel| -%>
70       - source_labels: [instance,<%= relabel[:source_labels] %>]
71         regex: "<%= target[:instance] %>;<%= relabel[:regex] %>"
72         action: <%= relabel[:action] %>
73 <% end -%>
74 <% end -%>
75 <% end -%>
76
77 remote_write:
78   - url: "http://localhost:9201/write"
79     write_relabel_configs:
80       - source_labels: [__name__]
81         regex: "go_.*"
82         action: drop
83       - source_labels: [__name__]
84         regex: "promhttp_.*"
85         action: drop
86     queue_config:
87       capacity: 10000
88       min_shards: 4
89       batch_send_deadline: 30s
90       max_backoff: 1s