You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Number of connections over the last elapsed second (frontend). Corresponds to HAProxy's `conn_rate` metric.
59
-
stability:
60
-
level: development
61
-
enabled: true
62
-
gauge:
63
-
value_type: int
64
-
input_type: string
65
-
unit: "{connections}"
66
-
haproxy.sessions.count:
67
-
description: Current sessions. Corresponds to HAProxy's `scur` metric.
68
-
stability:
69
-
level: development
70
-
enabled: true
71
-
gauge:
72
-
value_type: int
73
-
input_type: string
74
-
unit: "{sessions}"
75
-
haproxy.connections.total:
76
-
description: Cumulative number of connections (frontend). Corresponds to HAProxy's `conn_tot` metric.
77
-
stability:
78
-
level: development
79
-
enabled: false
80
-
sum:
81
-
aggregation_temporality: cumulative
82
-
monotonic: true
83
-
value_type: int
84
-
input_type: string
85
-
unit: "{connections}"
86
-
haproxy.server_selected.total:
87
-
description: Number of times a server was selected, either for new sessions or when re-dispatching. Corresponds to HAProxy's `lbtot` metric.
88
-
stability:
89
-
level: development
90
-
enabled: true
91
-
sum:
92
-
aggregation_temporality: cumulative
93
-
monotonic: true
94
-
value_type: int
95
-
input_type: string
96
-
unit: "{selections}"
97
57
haproxy.bytes.input:
98
58
description: Bytes in. Corresponds to HAProxy's `bin` metric.
99
59
stability:
@@ -138,6 +98,17 @@ metrics:
138
98
value_type: int
139
99
input_type: string
140
100
unit: by
101
+
haproxy.compression.count:
102
+
description: Number of HTTP responses that were compressed. Corresponds to HAProxy's `comp_rsp` metric.
103
+
stability:
104
+
level: development
105
+
enabled: false
106
+
sum:
107
+
aggregation_temporality: cumulative
108
+
monotonic: true
109
+
value_type: int
110
+
input_type: string
111
+
unit: "{responses}"
141
112
haproxy.compression.input:
142
113
description: Number of HTTP response bytes fed to the compressor. Corresponds to HAProxy's `comp_in` metric.
143
114
stability:
@@ -160,19 +131,37 @@ metrics:
160
131
value_type: int
161
132
input_type: string
162
133
unit: by
163
-
haproxy.compression.count:
164
-
description: Number of HTTP responses that were compressed. Corresponds to HAProxy's `comp_rsp` metric.
134
+
haproxy.connections.average_time:
135
+
description: Average connect time in ms over the 1024 last requests. Corresponds to HAProxy's `ctime` metric.
165
136
stability:
166
137
level: development
167
138
enabled: false
139
+
gauge:
140
+
value_type: double
141
+
input_type: string
142
+
unit: ms
143
+
haproxy.connections.errors:
144
+
description: Number of requests that encountered an error trying to connect to a backend server. The backend stat is the sum of the stat. Corresponds to HAProxy's `econ` metric
145
+
stability:
146
+
level: development
147
+
enabled: true
168
148
sum:
169
149
aggregation_temporality: cumulative
170
150
monotonic: true
171
151
value_type: int
172
152
input_type: string
173
-
unit: "{responses}"
174
-
haproxy.requests.denied:
175
-
description: Requests denied because of security concerns. Corresponds to HAProxy's `dreq` metric
153
+
unit: "{errors}"
154
+
haproxy.connections.rate:
155
+
description: Number of connections over the last elapsed second (frontend). Corresponds to HAProxy's `conn_rate` metric.
156
+
stability:
157
+
level: development
158
+
enabled: true
159
+
gauge:
160
+
value_type: int
161
+
input_type: string
162
+
unit: "{connections}"
163
+
haproxy.connections.retries:
164
+
description: Number of times a connection to a server was retried. Corresponds to HAProxy's `wretr` metric.
176
165
stability:
177
166
level: development
178
167
enabled: true
@@ -181,20 +170,20 @@ metrics:
181
170
monotonic: true
182
171
value_type: int
183
172
input_type: string
184
-
unit: "{requests}"
185
-
haproxy.responses.denied:
186
-
description: Responses denied because of security concerns. Corresponds to HAProxy's `dresp` metric
173
+
unit: "{retries}"
174
+
haproxy.connections.total:
175
+
description: Cumulative number of connections (frontend). Corresponds to HAProxy's `conn_tot` metric.
187
176
stability:
188
177
level: development
189
-
enabled: true
178
+
enabled: false
190
179
sum:
191
180
aggregation_temporality: cumulative
192
181
monotonic: true
193
182
value_type: int
194
183
input_type: string
195
-
unit: "{responses}"
184
+
unit: "{connections}"
196
185
haproxy.downtime:
197
-
description: Total downtime (in seconds). The value for the backend is the downtime for the whole backend, not the sum of the server downtime. Corresponds to HAProxy's `downtime` metric
186
+
description: Total downtime (in seconds). The value for the backend is the downtime for the whole backend, not the sum of the server downtime. Corresponds to HAProxy's `downtime` metric
198
187
stability:
199
188
level: development
200
189
enabled: false
@@ -204,19 +193,28 @@ metrics:
204
193
value_type: int
205
194
input_type: string
206
195
unit: s
207
-
haproxy.connections.errors:
208
-
description: Number of requests that encountered an error trying to connect to a backend server. The backend stat is the sum of the stat. Corresponds to HAProxy's `econ` metric
196
+
haproxy.failed_checks:
197
+
description: Number of failed checks. (Only counts checks failed when the serveris up). Corresponds to HAProxy's `chkfail` metric.
209
198
stability:
210
199
level: development
211
-
enabled: true
200
+
enabled: false
212
201
sum:
213
202
aggregation_temporality: cumulative
214
203
monotonic: true
215
204
value_type: int
216
205
input_type: string
217
-
unit: "{errors}"
218
-
haproxy.requests.errors:
219
-
description: Cumulative number of request errors. Corresponds to HAProxy's `ereq` metric.
206
+
unit: "{checks}"
207
+
haproxy.requests.average_time:
208
+
description: Average queue time in ms over the 1024 last requests. Corresponds to HAProxy's `qtime` metric.
209
+
stability:
210
+
level: development
211
+
enabled: false
212
+
gauge:
213
+
value_type: double
214
+
input_type: string
215
+
unit: ms
216
+
haproxy.requests.denied:
217
+
description: Requests denied because of security concerns. Corresponds to HAProxy's `dreq` metric
220
218
stability:
221
219
level: development
222
220
enabled: true
@@ -225,28 +223,38 @@ metrics:
225
223
monotonic: true
226
224
value_type: int
227
225
input_type: string
228
-
unit: "{errors}"
229
-
haproxy.responses.errors:
230
-
description: Cumulative number of response errors. Corresponds to HAProxy's `eresp` metric, `srv_abrt` will be counted here also.
226
+
unit: "{requests}"
227
+
haproxy.requests.errors:
228
+
description: Cumulative number of request errors. Corresponds to HAProxy's `ereq` metric.
231
229
stability:
232
230
level: development
233
231
enabled: true
234
232
sum:
235
233
aggregation_temporality: cumulative
236
234
monotonic: true
237
235
value_type: int
236
+
input_type: string
238
237
unit: "{errors}"
239
-
haproxy.failed_checks:
240
-
description: Number of failed checks. (Only counts checks failed when the server is up). Corresponds to HAProxy's `chkfail` metric.
238
+
haproxy.requests.queued:
239
+
description: Current queued requests. For the backend this reports the number queued without a server assigned. Corresponds to HAProxy's `qcur` metric.
241
240
stability:
242
241
level: development
243
-
enabled: false
242
+
enabled: true
244
243
sum:
245
244
aggregation_temporality: cumulative
246
245
monotonic: true
247
246
value_type: int
248
247
input_type: string
249
-
unit: "{checks}"
248
+
unit: "{requests}"
249
+
haproxy.requests.rate:
250
+
description: HTTP requests per second over last elapsed second. Corresponds to HAProxy's `req_rate` metric.
251
+
stability:
252
+
level: development
253
+
enabled: true
254
+
gauge:
255
+
value_type: double
256
+
input_type: string
257
+
unit: "{requests}"
250
258
haproxy.requests.redispatched:
251
259
description: Number of times a request was redispatched to another server. Corresponds to HAProxy's `wredis` metric.
252
260
stability:
@@ -271,8 +279,17 @@ metrics:
271
279
unit: "{requests}"
272
280
attributes:
273
281
- status_code
274
-
haproxy.connections.retries:
275
-
description: Number of times a connection to a server was retried. Corresponds to HAProxy's `wretr` metric.
282
+
haproxy.responses.average_time:
283
+
description: Average response time in ms over the 1024 last requests. Corresponds to HAProxy's `rtime` metric.
284
+
stability:
285
+
level: development
286
+
enabled: false
287
+
gauge:
288
+
value_type: double
289
+
input_type: string
290
+
unit: ms
291
+
haproxy.responses.denied:
292
+
description: Responses denied because of security concerns. Corresponds to HAProxy's `dresp` metric
276
293
stability:
277
294
level: development
278
295
enabled: true
@@ -281,20 +298,19 @@ metrics:
281
298
monotonic: true
282
299
value_type: int
283
300
input_type: string
284
-
unit: "{retries}"
285
-
haproxy.sessions.total:
286
-
description: Cumulative number of sessions. Corresponds to HAProxy's `stot` metric.
301
+
unit: "{responses}"
302
+
haproxy.responses.errors:
303
+
description: Cumulative number of response errors. Corresponds to HAProxy's `eresp` metric, `srv_abrt` will be counted here also.
287
304
stability:
288
305
level: development
289
-
enabled: false
306
+
enabled: true
290
307
sum:
291
308
aggregation_temporality: cumulative
292
309
monotonic: true
293
310
value_type: int
294
-
input_type: string
295
-
unit: "{sessions}"
296
-
haproxy.requests.queued:
297
-
description: Current queued requests. For the backend this reports the number queued without a server assigned. Corresponds to HAProxy's `qcur` metric.
311
+
unit: "{errors}"
312
+
haproxy.server_selected.total:
313
+
description: Number of times a server was selected, either for new sessions or when re-dispatching. Corresponds to HAProxy's `lbtot` metric.
298
314
stability:
299
315
level: development
300
316
enabled: true
@@ -303,16 +319,7 @@ metrics:
303
319
monotonic: true
304
320
value_type: int
305
321
input_type: string
306
-
unit: "{requests}"
307
-
haproxy.requests.rate:
308
-
description: HTTP requests per second over last elapsed second. Corresponds to HAProxy's `req_rate` metric.
309
-
stability:
310
-
level: development
311
-
enabled: true
312
-
gauge:
313
-
value_type: double
314
-
input_type: string
315
-
unit: "{requests}"
322
+
unit: "{selections}"
316
323
haproxy.sessions.average:
317
324
description: Average total session time in ms over the last 1024 requests. Corresponds to HAProxy's `ttime` metric.
318
325
stability:
@@ -322,57 +329,50 @@ metrics:
322
329
value_type: double
323
330
input_type: string
324
331
unit: ms
325
-
haproxy.sessions.rate:
326
-
description: Number of sessions per second over last elapsed second. Corresponds to HAProxy's `rate` metric.
332
+
haproxy.sessions.count:
333
+
description: Current sessions. Corresponds to HAProxy's `scur` metric.
327
334
stability:
328
335
level: development
329
336
enabled: true
330
337
gauge:
331
-
value_type: double
338
+
value_type: int
332
339
input_type: string
333
340
unit: "{sessions}"
334
-
haproxy.weight:
335
-
description: Total effective weight (backend) or effective weight (server). Corresponds to HAProxy's `weight` metric.
341
+
haproxy.sessions.limit:
342
+
description: Configured session limit. Corresponds to HAProxy's `slim` metric.
336
343
stability:
337
344
level: development
338
345
enabled: false
339
346
gauge:
340
347
value_type: int
341
348
input_type: string
342
-
unit: "1"
343
-
haproxy.connections.average_time:
344
-
description: Average connect time in ms over the 1024 last requests. Corresponds to HAProxy's `ctime` metric.
345
-
stability:
346
-
level: development
347
-
enabled: false
348
-
gauge:
349
-
value_type: double
350
-
input_type: string
351
-
unit: ms
352
-
haproxy.requests.average_time:
353
-
description: Average queue time in ms over the 1024 last requests. Corresponds to HAProxy's `qtime` metric.
349
+
unit: "{sessions}"
350
+
haproxy.sessions.rate:
351
+
description: Number of sessions per second over last elapsed second. Corresponds to HAProxy's `rate` metric.
354
352
stability:
355
353
level: development
356
-
enabled: false
354
+
enabled: true
357
355
gauge:
358
356
value_type: double
359
357
input_type: string
360
-
unit: ms
361
-
haproxy.responses.average_time:
362
-
description: Average response time in ms over the 1024 last requests. Corresponds to HAProxy's `rtime` metric.
358
+
unit: "{sessions}"
359
+
haproxy.sessions.total:
360
+
description: Cumulative number of sessions. Corresponds to HAProxy's `stot` metric.
363
361
stability:
364
362
level: development
365
363
enabled: false
366
-
gauge:
367
-
value_type: double
364
+
sum:
365
+
aggregation_temporality: cumulative
366
+
monotonic: true
367
+
value_type: int
368
368
input_type: string
369
-
unit: ms
370
-
haproxy.sessions.limit:
371
-
description: Configured session limit. Corresponds to HAProxy's `slim` metric.
369
+
unit: "{sessions}"
370
+
haproxy.weight:
371
+
description: Total effective weight (backend) or effective weight (server). Corresponds to HAProxy's `weight` metric.
0 commit comments