@@ -9,91 +9,23 @@ scrape_configs:
9
9
- job_name: 'prometheus'
10
10
static_configs:
11
11
- 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 %}
36
14
- job_name: node_judgehost
37
15
basic_auth:
38
16
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'] }}"
88
18
tls_config:
89
19
insecure_skip_verify: true
90
20
scheme: https
91
21
static_configs:
92
22
- targets:
93
- {% for host in groups ["cds " ] %}
23
+ {% for host in groups [group_prefix + "judgehost " ] %}
94
24
- {{ hostvars[host] .ansible_host }}:9100
95
25
{% endfor %}
96
- - job_name: domjudge
26
+ {% endif %}
27
+ {% if groups ["domserver" ][0] is defined %}
28
+ - job_name: {{ group_prefix ~ domjudge }}
97
29
basic_auth:
98
30
username: admin
99
31
password: {{ ADMIN_PASSWORD }}
@@ -103,58 +35,59 @@ scrape_configs:
103
35
insecure_skip_verify: true
104
36
static_configs:
105
37
- targets:
106
- {% for host in groups ["domserver" ] %}
38
+ {% for host in groups [group_prefix + "domserver" ] %}
107
39
- {{ hostvars[host] .ansible_host }}
108
40
{% endfor %}
109
- - job_name: 'web_nginx_cds'
41
+ - job_name: {{ group_prefix ~ 'db' }}
110
42
basic_auth:
111
43
username: "prometheus"
112
- password: "{{ PROMETHEUS_PASS }}"
44
+ password: "{{ groups[group_prefix+"domserver "] [ 0] [' PROMETHEUS_PASS'] }}"
113
45
tls_config:
114
46
insecure_skip_verify: true
115
47
scheme: https
116
48
static_configs:
117
49
- 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
120
52
{% endfor %}
121
- - job_name: 'web_nginx_scoreboard'
53
+ - job_name: {{ group_prefix ~ 'node_domserver' }}
122
54
basic_auth:
123
55
username: "prometheus"
124
- password: "{{ PROMETHEUS_PASS }}"
56
+ password: "{{ groups[group_prefix+"domserver "] [ 0] [' PROMETHEUS_PASS'] }}"
125
57
tls_config:
126
58
insecure_skip_verify: true
127
59
scheme: https
128
60
static_configs:
129
61
- 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
132
64
{% endfor %}
133
- - job_name: 'web_nginx_domserver'
65
+ - job_name: {{ group_prefix ~ 'web_nginx_domserver' }}
134
66
basic_auth:
135
67
username: "prometheus"
136
- password: "{{ PROMETHEUS_PASS }}"
68
+ password: "{{ groups[group_prefix+"domserver "] [ 0] [' PROMETHEUS_PASS'] }}"
137
69
tls_config:
138
70
insecure_skip_verify: true
139
71
scheme: https
140
72
static_configs:
141
73
- targets:
142
- {% for host in groups ["domserver" ] %}
74
+ {% for host in groups [group_prefix + "domserver" ] %}
143
75
- {{ hostvars[host] .ansible_host }}:9113
144
76
{% endfor %}
145
- - job_name: 'web_fpm_domserver'
77
+ - job_name: {{ group_prefix ~ 'web_fpm_domserver' }}
146
78
basic_auth:
147
79
username: "prometheus"
148
- password: "{{ PROMETHEUS_PASS }}"
80
+ password: "{{ groups[group_prefix+"domserver "] [ 0] [' PROMETHEUS_PASS'] }}"
149
81
tls_config:
150
82
insecure_skip_verify: true
151
83
scheme: https
152
84
static_configs:
153
85
- targets:
154
- {% for host in groups ["domserver" ] %}
86
+ {% for host in groups [group_prefix + "domserver" ] %}
155
87
- {{ hostvars[host] .ansible_host }}:9253
156
88
{% endfor %}
157
- - job_name: 'online-db'
89
+ {% endif %}
90
+ - job_name: node_grafana
158
91
basic_auth:
159
92
username: "prometheus"
160
93
password: "{{ PROMETHEUS_PASS }}"
@@ -163,10 +96,10 @@ scrape_configs:
163
96
scheme: https
164
97
static_configs:
165
98
- 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
168
101
{% endfor %}
169
- - job_name: node_domserver_online
102
+ - job_name: node_mgmt
170
103
basic_auth:
171
104
username: "prometheus"
172
105
password: "{{ PROMETHEUS_PASS }}"
@@ -175,23 +108,22 @@ scrape_configs:
175
108
scheme: https
176
109
static_configs:
177
110
- targets:
178
- {% for host in groups ["online-domserver " ] %}
111
+ {% for host in groups ["mgmt " ] %}
179
112
- {{ hostvars[host] .ansible_host }}:9100
180
113
{% endfor %}
181
- - job_name: online-domjudge
114
+ - job_name: node_scoreboard
182
115
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 }}"
187
118
tls_config:
188
119
insecure_skip_verify: true
120
+ scheme: https
189
121
static_configs:
190
122
- 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
193
125
{% endfor %}
194
- - job_name: 'web_nginx_domserver_online'
126
+ - job_name: node_cds
195
127
basic_auth:
196
128
username: "prometheus"
197
129
password: "{{ PROMETHEUS_PASS }}"
@@ -200,10 +132,10 @@ scrape_configs:
200
132
scheme: https
201
133
static_configs:
202
134
- 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
205
137
{% endfor %}
206
- - job_name: 'web_fpm_domserver_online '
138
+ - job_name: 'web_nginx_cds '
207
139
basic_auth:
208
140
username: "prometheus"
209
141
password: "{{ PROMETHEUS_PASS }}"
@@ -212,10 +144,10 @@ scrape_configs:
212
144
scheme: https
213
145
static_configs:
214
146
- 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
217
149
{% endfor %}
218
- - job_name: node_judgehost_online
150
+ - job_name: 'web_nginx_scoreboard'
219
151
basic_auth:
220
152
username: "prometheus"
221
153
password: "{{ PROMETHEUS_PASS }}"
@@ -224,7 +156,6 @@ scrape_configs:
224
156
scheme: https
225
157
static_configs:
226
158
- 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
229
161
{% endfor %}
230
-
0 commit comments