Skip to content

Commit f1b9a05

Browse files
committed
Remove duplication
1 parent 11f14fd commit f1b9a05

File tree

1 file changed

+43
-112
lines changed

1 file changed

+43
-112
lines changed

provision-contest/ansible/roles/grafana/templates/prometheus.yml.j2

+43-112
Original file line numberDiff line numberDiff line change
@@ -9,91 +9,23 @@ scrape_configs:
99
- job_name: 'prometheus'
1010
static_configs:
1111
- targets: ['localhost:9090']
12-
- job_name: 'db'
13-
basic_auth:
14-
username: "prometheus"
15-
password: "{{ PROMETHEUS_PASS }}"
16-
tls_config:
17-
insecure_skip_verify: true
18-
scheme: https
19-
static_configs:
20-
- targets:
21-
{% for host in groups["domserver"] %}
22-
- {{ hostvars[host].ansible_host }}:9104
23-
{% endfor %}
24-
- job_name: node_domserver
25-
basic_auth:
26-
username: "prometheus"
27-
password: "{{ PROMETHEUS_PASS }}"
28-
tls_config:
29-
insecure_skip_verify: true
30-
scheme: https
31-
static_configs:
32-
- targets:
33-
{% for host in groups["domserver"] %}
34-
- {{ hostvars[host].ansible_host }}:9100
35-
{% endfor %}
12+
{% for group_prefix in GROUP_PREFIXES %}
13+
{% if groups[group_prefix+"judgehost"][0] is defined %}
3614
- job_name: node_judgehost
3715
basic_auth:
3816
username: "prometheus"
39-
password: "{{ PROMETHEUS_PASS }}"
40-
tls_config:
41-
insecure_skip_verify: true
42-
scheme: https
43-
static_configs:
44-
- targets:
45-
{% for host in groups["judgehost"] %}
46-
- {{ hostvars[host].ansible_host }}:9100
47-
{% endfor %}
48-
- job_name: node_grafana
49-
basic_auth:
50-
username: "prometheus"
51-
password: "{{ PROMETHEUS_PASS }}"
52-
tls_config:
53-
insecure_skip_verify: true
54-
scheme: https
55-
static_configs:
56-
- targets:
57-
{% for host in groups["grafana"] %}
58-
- {{ hostvars[host].ansible_host }}:9100
59-
{% endfor %}
60-
- job_name: node_mgmt
61-
basic_auth:
62-
username: "prometheus"
63-
password: "{{ PROMETHEUS_PASS }}"
64-
tls_config:
65-
insecure_skip_verify: true
66-
scheme: https
67-
static_configs:
68-
- targets:
69-
{% for host in groups["mgmt"] %}
70-
- {{ hostvars[host].ansible_host }}:9100
71-
{% endfor %}
72-
- job_name: node_scoreboard
73-
basic_auth:
74-
username: "prometheus"
75-
password: "{{ PROMETHEUS_PASS }}"
76-
tls_config:
77-
insecure_skip_verify: true
78-
scheme: https
79-
static_configs:
80-
- targets:
81-
{% for host in groups["scoreboard"] %}
82-
- {{ hostvars[host].ansible_host }}:9100
83-
{% endfor %}
84-
- job_name: node_cds
85-
basic_auth:
86-
username: "prometheus"
87-
password: "{{ PROMETHEUS_PASS }}"
17+
password: "{{ groups[group_prefix+"judgehost"][0]['PROMETHEUS_PASS'] }}"
8818
tls_config:
8919
insecure_skip_verify: true
9020
scheme: https
9121
static_configs:
9222
- targets:
93-
{% for host in groups["cds"] %}
23+
{% for host in groups[group_prefix+"judgehost"] %}
9424
- {{ hostvars[host].ansible_host }}:9100
9525
{% endfor %}
96-
- job_name: domjudge
26+
{% endif %}
27+
{% if groups["domserver"][0] is defined %}
28+
- job_name: {{ group_prefix ~ domjudge }}
9729
basic_auth:
9830
username: admin
9931
password: {{ ADMIN_PASSWORD }}
@@ -103,58 +35,59 @@ scrape_configs:
10335
insecure_skip_verify: true
10436
static_configs:
10537
- targets:
106-
{% for host in groups["domserver"] %}
38+
{% for host in groups[group_prefix+"domserver"] %}
10739
- {{ hostvars[host].ansible_host }}
10840
{% endfor %}
109-
- job_name: 'web_nginx_cds'
41+
- job_name: {{ group_prefix ~ 'db' }}
11042
basic_auth:
11143
username: "prometheus"
112-
password: "{{ PROMETHEUS_PASS }}"
44+
password: "{{ groups[group_prefix+"domserver"][0]['PROMETHEUS_PASS'] }}"
11345
tls_config:
11446
insecure_skip_verify: true
11547
scheme: https
11648
static_configs:
11749
- targets:
118-
{% for host in groups["cds"] %}
119-
- {{ hostvars[host].ansible_host }}:9113
50+
{% for host in groups[group_prefix+"domserver"] %}
51+
- {{ hostvars[host].ansible_host }}:9104
12052
{% endfor %}
121-
- job_name: 'web_nginx_scoreboard'
53+
- job_name: {{ group_prefix ~ 'node_domserver' }}
12254
basic_auth:
12355
username: "prometheus"
124-
password: "{{ PROMETHEUS_PASS }}"
56+
password: "{{ groups[group_prefix+"domserver"][0]['PROMETHEUS_PASS'] }}"
12557
tls_config:
12658
insecure_skip_verify: true
12759
scheme: https
12860
static_configs:
12961
- targets:
130-
{% for host in groups["scoreboard"] %}
131-
- {{ hostvars[host].ansible_host }}:9113
62+
{% for host in groups["domserver"] %}
63+
- {{ hostvars[host].ansible_host }}:9100
13264
{% endfor %}
133-
- job_name: 'web_nginx_domserver'
65+
- job_name: {{ group_prefix ~ 'web_nginx_domserver' }}
13466
basic_auth:
13567
username: "prometheus"
136-
password: "{{ PROMETHEUS_PASS }}"
68+
password: "{{ groups[group_prefix+"domserver"][0]['PROMETHEUS_PASS'] }}"
13769
tls_config:
13870
insecure_skip_verify: true
13971
scheme: https
14072
static_configs:
14173
- targets:
142-
{% for host in groups["domserver"] %}
74+
{% for host in groups[group_prefix+"domserver"] %}
14375
- {{ hostvars[host].ansible_host }}:9113
14476
{% endfor %}
145-
- job_name: 'web_fpm_domserver'
77+
- job_name: {{ group_prefix ~ 'web_fpm_domserver' }}
14678
basic_auth:
14779
username: "prometheus"
148-
password: "{{ PROMETHEUS_PASS }}"
80+
password: "{{ groups[group_prefix+"domserver"][0]['PROMETHEUS_PASS'] }}"
14981
tls_config:
15082
insecure_skip_verify: true
15183
scheme: https
15284
static_configs:
15385
- targets:
154-
{% for host in groups["domserver"] %}
86+
{% for host in groups[group_prefix+"domserver"] %}
15587
- {{ hostvars[host].ansible_host }}:9253
15688
{% endfor %}
157-
- job_name: 'online-db'
89+
{% endif %}
90+
- job_name: node_grafana
15891
basic_auth:
15992
username: "prometheus"
16093
password: "{{ PROMETHEUS_PASS }}"
@@ -163,10 +96,10 @@ scrape_configs:
16396
scheme: https
16497
static_configs:
16598
- targets:
166-
{% for host in groups["online-domserver"] %}
167-
- {{ hostvars[host].ansible_host }}:9104
99+
{% for host in groups["grafana"] %}
100+
- {{ hostvars[host].ansible_host }}:9100
168101
{% endfor %}
169-
- job_name: node_domserver_online
102+
- job_name: node_mgmt
170103
basic_auth:
171104
username: "prometheus"
172105
password: "{{ PROMETHEUS_PASS }}"
@@ -175,23 +108,22 @@ scrape_configs:
175108
scheme: https
176109
static_configs:
177110
- targets:
178-
{% for host in groups["online-domserver"] %}
111+
{% for host in groups["mgmt"] %}
179112
- {{ hostvars[host].ansible_host }}:9100
180113
{% endfor %}
181-
- job_name: online-domjudge
114+
- job_name: node_scoreboard
182115
basic_auth:
183-
username: admin
184-
password: {{ ADMIN_PASSWORD }}
185-
metrics_path: /api/v4/metrics/prometheus
186-
scheme: https
116+
username: "prometheus"
117+
password: "{{ PROMETHEUS_PASS }}"
187118
tls_config:
188119
insecure_skip_verify: true
120+
scheme: https
189121
static_configs:
190122
- targets:
191-
{% for host in groups["online-domserver"] %}
192-
- {{ hostvars[host].ansible_host }}
123+
{% for host in groups["scoreboard"] %}
124+
- {{ hostvars[host].ansible_host }}:9100
193125
{% endfor %}
194-
- job_name: 'web_nginx_domserver_online'
126+
- job_name: node_cds
195127
basic_auth:
196128
username: "prometheus"
197129
password: "{{ PROMETHEUS_PASS }}"
@@ -200,10 +132,10 @@ scrape_configs:
200132
scheme: https
201133
static_configs:
202134
- targets:
203-
{% for host in groups["online-domserver"] %}
204-
- {{ hostvars[host].ansible_host }}:9113
135+
{% for host in groups["cds"] %}
136+
- {{ hostvars[host].ansible_host }}:9100
205137
{% endfor %}
206-
- job_name: 'web_fpm_domserver_online'
138+
- job_name: 'web_nginx_cds'
207139
basic_auth:
208140
username: "prometheus"
209141
password: "{{ PROMETHEUS_PASS }}"
@@ -212,10 +144,10 @@ scrape_configs:
212144
scheme: https
213145
static_configs:
214146
- targets:
215-
{% for host in groups["online-domserver"] %}
216-
- {{ hostvars[host].ansible_host }}:9253
147+
{% for host in groups["cds"] %}
148+
- {{ hostvars[host].ansible_host }}:9113
217149
{% endfor %}
218-
- job_name: node_judgehost_online
150+
- job_name: 'web_nginx_scoreboard'
219151
basic_auth:
220152
username: "prometheus"
221153
password: "{{ PROMETHEUS_PASS }}"
@@ -224,7 +156,6 @@ scrape_configs:
224156
scheme: https
225157
static_configs:
226158
- targets:
227-
{% for host in groups["online-judgehost"] %}
228-
- {{ hostvars[host].ansible_host }}:9100
159+
{% for host in groups["scoreboard"] %}
160+
- {{ hostvars[host].ansible_host }}:9113
229161
{% endfor %}
230-

0 commit comments

Comments
 (0)