blob: 67e71ecf0cbf92ad3a1c439fb9ddd80155fe2f20 [file] [log] [blame]
Christopher Fauletf959d082019-02-07 15:38:42 +01001/*
2 * Promex is a Prometheus exporter for HAProxy
3 *
4 * It is highly inspired by the official Prometheus exporter.
5 * See: https://github.com/prometheus/haproxy_exporter
6 *
7 * Copyright 2019 Christopher Faulet <cfaulet@haproxy.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 */
15
16#include <common/cfgparse.h>
17#include <common/config.h>
18#include <common/buffer.h>
19#include <common/htx.h>
20#include <common/initcall.h>
21#include <common/memory.h>
22#include <common/mini-clist.h>
23
24#include <types/global.h>
25
26#include <proto/action.h>
27#include <proto/applet.h>
28#include <proto/backend.h>
29#include <proto/compression.h>
30#include <proto/frontend.h>
31#include <proto/listener.h>
32#include <proto/http_htx.h>
33#include <proto/pipe.h>
34#include <proto/proxy.h>
35#include <proto/sample.h>
36#include <proto/server.h>
37#include <proto/ssl_sock.h>
38#include <proto/stats.h>
39#include <proto/stream.h>
40#include <proto/stream_interface.h>
41#include <proto/task.h>
42
43/* Prometheus exporter applet states (appctx->st0) */
44enum {
45 PROMEX_ST_INIT = 0, /* initialized */
46 PROMEX_ST_HEAD, /* send headers before dump */
47 PROMEX_ST_DUMP, /* dumping stats */
48 PROMEX_ST_DONE, /* finished */
Christopher Faulet9744f7c2019-03-27 15:48:53 +010049 PROMEX_ST_END, /* treatment terminated */
Christopher Fauletf959d082019-02-07 15:38:42 +010050};
51
52/* Prometheus exporter dumper states (appctx->st1) */
53enum {
54 PROMEX_DUMPER_INIT = 0, /* initialized */
55 PROMEX_DUMPER_GLOBAL, /* dump metrics of globals */
56 PROMEX_DUMPER_FRONT, /* dump metrics of frontend proxies */
57 PROMEX_DUMPER_BACK, /* dump metrics of backend proxies */
58 PROMEX_DUMPER_LI, /* dump metrics of listeners */
59 PROMEX_DUMPER_SRV, /* dump metrics of servers */
60 PROMEX_DUMPER_DONE, /* finished */
61};
62
63/* Prometheus exporter flags (appctx->ctx.stats.flags) */
64#define PROMEX_FL_METRIC_HDR 0x00000001
65#define PROMEX_FL_INFO_METRIC 0x00000002
66#define PROMEX_FL_STATS_METRIC 0x00000004
67
68/* The max length for metrics name. It is a hard limit but it should be
69 * enougth.
70 */
71#define PROMEX_MAX_NAME_LEN 128
72
73/* The expected max length for a metric dump, including its header lines. It is
74 * just a soft limit to avoid extra work. We don't try to dump a metric if less
75 * than this size is available in the HTX.
76 */
77#define PROMEX_MAX_METRIC_LENGTH 512
78
79/* Matrix used to dump global metrics. Each metric points to the next one to be
80 * processed or 0 to stop the dump. */
81const int promex_global_metrics[INF_TOTAL_FIELDS] = {
82 [INF_NAME] = INF_NBTHREAD,
83 [INF_VERSION] = 0,
84 [INF_RELEASE_DATE] = 0,
85 [INF_NBTHREAD] = INF_NBPROC,
86 [INF_NBPROC] = INF_PROCESS_NUM,
87 [INF_PROCESS_NUM] = INF_UPTIME_SEC,
88 [INF_PID] = 0,
89 [INF_UPTIME] = 0,
90 [INF_UPTIME_SEC] = INF_MEMMAX_MB,
91 [INF_MEMMAX_MB] = INF_POOL_ALLOC_MB,
92 [INF_POOL_ALLOC_MB] = INF_POOL_USED_MB,
93 [INF_POOL_USED_MB] = INF_POOL_FAILED,
94 [INF_POOL_FAILED] = INF_ULIMIT_N,
95 [INF_ULIMIT_N] = INF_MAXSOCK,
96 [INF_MAXSOCK] = INF_MAXCONN,
97 [INF_MAXCONN] = INF_HARD_MAXCONN,
98 [INF_HARD_MAXCONN] = INF_CURR_CONN,
99 [INF_CURR_CONN] = INF_CUM_CONN,
100 [INF_CUM_CONN] = INF_CUM_REQ,
101 [INF_CUM_REQ] = INF_MAX_SSL_CONNS,
102 [INF_MAX_SSL_CONNS] = INF_CURR_SSL_CONNS,
103 [INF_CURR_SSL_CONNS] = INF_CUM_SSL_CONNS,
104 [INF_CUM_SSL_CONNS] = INF_MAXPIPES,
105 [INF_MAXPIPES] = INF_PIPES_USED,
106 [INF_PIPES_USED] = INF_PIPES_FREE,
107 [INF_PIPES_FREE] = INF_CONN_RATE,
108 [INF_CONN_RATE] = INF_CONN_RATE_LIMIT,
109 [INF_CONN_RATE_LIMIT] = INF_MAX_CONN_RATE,
110 [INF_MAX_CONN_RATE] = INF_SESS_RATE,
111 [INF_SESS_RATE] = INF_SESS_RATE_LIMIT,
112 [INF_SESS_RATE_LIMIT] = INF_MAX_SESS_RATE,
113 [INF_MAX_SESS_RATE] = INF_SSL_RATE,
114 [INF_SSL_RATE] = INF_SSL_RATE_LIMIT,
115 [INF_SSL_RATE_LIMIT] = INF_MAX_SSL_RATE,
116 [INF_MAX_SSL_RATE] = INF_SSL_FRONTEND_KEY_RATE,
117 [INF_SSL_FRONTEND_KEY_RATE] = INF_SSL_FRONTEND_MAX_KEY_RATE,
118 [INF_SSL_FRONTEND_MAX_KEY_RATE] = INF_SSL_FRONTEND_SESSION_REUSE_PCT,
119 [INF_SSL_FRONTEND_SESSION_REUSE_PCT] = INF_SSL_BACKEND_KEY_RATE,
120 [INF_SSL_BACKEND_KEY_RATE] = INF_SSL_BACKEND_MAX_KEY_RATE,
121 [INF_SSL_BACKEND_MAX_KEY_RATE] = INF_SSL_CACHE_LOOKUPS,
122 [INF_SSL_CACHE_LOOKUPS] = INF_SSL_CACHE_MISSES,
123 [INF_SSL_CACHE_MISSES] = INF_COMPRESS_BPS_IN,
124 [INF_COMPRESS_BPS_IN] = INF_COMPRESS_BPS_OUT,
125 [INF_COMPRESS_BPS_OUT] = INF_COMPRESS_BPS_RATE_LIM,
126 [INF_COMPRESS_BPS_RATE_LIM] = INF_ZLIB_MEM_USAGE,
127 [INF_ZLIB_MEM_USAGE] = INF_MAX_ZLIB_MEM_USAGE,
128 [INF_MAX_ZLIB_MEM_USAGE] = INF_TASKS,
129 [INF_TASKS] = INF_RUN_QUEUE,
130 [INF_RUN_QUEUE] = INF_IDLE_PCT,
131 [INF_IDLE_PCT] = INF_STOPPING,
132 [INF_NODE] = 0,
133 [INF_DESCRIPTION] = 0,
134 [INF_STOPPING] = INF_JOBS,
135 [INF_JOBS] = INF_UNSTOPPABLE_JOBS,
136 [INF_UNSTOPPABLE_JOBS] = INF_LISTENERS,
137 [INF_LISTENERS] = INF_ACTIVE_PEERS,
138 [INF_ACTIVE_PEERS] = INF_CONNECTED_PEERS,
139 [INF_CONNECTED_PEERS] = INF_DROPPED_LOGS,
140 [INF_DROPPED_LOGS] = INF_BUSY_POLLING,
141 [INF_BUSY_POLLING] = 0,
142};
143
144/* Matrix used to dump frontend metrics. Each metric points to the next one to be
145 * processed or 0 to stop the dump. */
146const int promex_front_metrics[ST_F_TOTAL_FIELDS] = {
147 [ST_F_PXNAME] = ST_F_STATUS,
148 [ST_F_SVNAME] = 0,
149 [ST_F_QCUR] = 0,
150 [ST_F_QMAX] = 0,
151 [ST_F_SCUR] = ST_F_SMAX,
152 [ST_F_SMAX] = ST_F_SLIM,
153 [ST_F_SLIM] = ST_F_STOT,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200154 [ST_F_STOT] = ST_F_RATE_LIM,
Christopher Fauletf959d082019-02-07 15:38:42 +0100155 [ST_F_BIN] = ST_F_BOUT,
156 [ST_F_BOUT] = ST_F_DREQ,
157 [ST_F_DREQ] = ST_F_DRESP,
158 [ST_F_DRESP] = ST_F_EREQ,
159 [ST_F_EREQ] = ST_F_DCON,
160 [ST_F_ECON] = 0,
161 [ST_F_ERESP] = 0,
162 [ST_F_WRETR] = 0,
163 [ST_F_WREDIS] = 0,
164 [ST_F_STATUS] = ST_F_SCUR,
165 [ST_F_WEIGHT] = 0,
166 [ST_F_ACT] = 0,
167 [ST_F_BCK] = 0,
168 [ST_F_CHKFAIL] = 0,
169 [ST_F_CHKDOWN] = 0,
170 [ST_F_LASTCHG] = 0,
171 [ST_F_DOWNTIME] = 0,
172 [ST_F_QLIMIT] = 0,
173 [ST_F_PID] = 0,
174 [ST_F_IID] = 0,
175 [ST_F_SID] = 0,
176 [ST_F_THROTTLE] = 0,
177 [ST_F_LBTOT] = 0,
178 [ST_F_TRACKED] = 0,
179 [ST_F_TYPE] = 0,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200180 [ST_F_RATE] = 0,
Christopher Fauletf959d082019-02-07 15:38:42 +0100181 [ST_F_RATE_LIM] = ST_F_RATE_MAX,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200182 [ST_F_RATE_MAX] = ST_F_CONN_RATE_MAX,
Christopher Fauletf959d082019-02-07 15:38:42 +0100183 [ST_F_CHECK_STATUS] = 0,
184 [ST_F_CHECK_CODE] = 0,
185 [ST_F_CHECK_DURATION] = 0,
186 [ST_F_HRSP_1XX] = ST_F_HRSP_2XX,
187 [ST_F_HRSP_2XX] = ST_F_HRSP_3XX,
188 [ST_F_HRSP_3XX] = ST_F_HRSP_4XX,
189 [ST_F_HRSP_4XX] = ST_F_HRSP_5XX,
190 [ST_F_HRSP_5XX] = ST_F_HRSP_OTHER,
191 [ST_F_HRSP_OTHER] = ST_F_INTERCEPTED,
192 [ST_F_HANAFAIL] = 0,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200193 [ST_F_REQ_RATE] = 0,
Christopher Fauletf959d082019-02-07 15:38:42 +0100194 [ST_F_REQ_RATE_MAX] = ST_F_REQ_TOT,
195 [ST_F_REQ_TOT] = ST_F_HRSP_1XX,
196 [ST_F_CLI_ABRT] = 0,
197 [ST_F_SRV_ABRT] = 0,
198 [ST_F_COMP_IN] = ST_F_COMP_OUT,
199 [ST_F_COMP_OUT] = ST_F_COMP_BYP,
200 [ST_F_COMP_BYP] = ST_F_COMP_RSP,
201 [ST_F_COMP_RSP] = 0,
202 [ST_F_LASTSESS] = 0,
203 [ST_F_LAST_CHK] = 0,
204 [ST_F_LAST_AGT] = 0,
205 [ST_F_QTIME] = 0,
206 [ST_F_CTIME] = 0,
207 [ST_F_RTIME] = 0,
208 [ST_F_TTIME] = 0,
209 [ST_F_AGENT_STATUS] = 0,
210 [ST_F_AGENT_CODE] = 0,
211 [ST_F_AGENT_DURATION] = 0,
212 [ST_F_CHECK_DESC] = 0,
213 [ST_F_AGENT_DESC] = 0,
214 [ST_F_CHECK_RISE] = 0,
215 [ST_F_CHECK_FALL] = 0,
216 [ST_F_CHECK_HEALTH] = 0,
217 [ST_F_AGENT_RISE] = 0,
218 [ST_F_AGENT_FALL] = 0,
219 [ST_F_AGENT_HEALTH] = 0,
220 [ST_F_ADDR] = 0,
221 [ST_F_COOKIE] = 0,
222 [ST_F_MODE] = 0,
223 [ST_F_ALGO] = 0,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200224 [ST_F_CONN_RATE] = 0,
Christopher Fauletf959d082019-02-07 15:38:42 +0100225 [ST_F_CONN_RATE_MAX] = ST_F_CONN_TOT,
226 [ST_F_CONN_TOT] = ST_F_BIN,
227 [ST_F_INTERCEPTED] = ST_F_CACHE_LOOKUPS,
228 [ST_F_DCON] = ST_F_DSES,
229 [ST_F_DSES] = ST_F_WREW,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200230 [ST_F_WREW] = ST_F_REQ_RATE_MAX,
Christopher Fauletf959d082019-02-07 15:38:42 +0100231 [ST_F_CONNECT] = 0,
232 [ST_F_REUSE] = 0,
233 [ST_F_CACHE_LOOKUPS] = ST_F_CACHE_HITS,
234 [ST_F_CACHE_HITS] = ST_F_COMP_IN,
Christopher Fauletbd767f72019-11-08 15:24:32 +0100235 [ST_F_SRV_ICUR] = 0,
236 [ST_F_SRV_ILIM] = 0,
Christopher Faulet5df597a2019-11-08 15:05:31 +0100237 [ST_F_QT_MAX] = 0,
238 [ST_F_CT_MAX] = 0,
239 [ST_F_RT_MAX] = 0,
240 [ST_F_TT_MAX] = 0,
Christopher Fauletf959d082019-02-07 15:38:42 +0100241};
242
243/* Matrix used to dump backend metrics. Each metric points to the next one to be
244 * processed or 0 to stop the dump. */
245const int promex_back_metrics[ST_F_TOTAL_FIELDS] = {
246 [ST_F_PXNAME] = ST_F_STATUS,
247 [ST_F_SVNAME] = 0,
248 [ST_F_QCUR] = ST_F_QMAX,
249 [ST_F_QMAX] = ST_F_CONNECT,
250 [ST_F_SCUR] = ST_F_SMAX,
251 [ST_F_SMAX] = ST_F_SLIM,
252 [ST_F_SLIM] = ST_F_STOT,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200253 [ST_F_STOT] = ST_F_RATE_MAX,
Christopher Fauletf959d082019-02-07 15:38:42 +0100254 [ST_F_BIN] = ST_F_BOUT,
255 [ST_F_BOUT] = ST_F_QTIME,
256 [ST_F_DREQ] = ST_F_DRESP,
257 [ST_F_DRESP] = ST_F_ECON,
258 [ST_F_EREQ] = 0,
259 [ST_F_ECON] = ST_F_ERESP,
260 [ST_F_ERESP] = ST_F_WRETR,
261 [ST_F_WRETR] = ST_F_WREDIS,
262 [ST_F_WREDIS] = ST_F_WREW,
263 [ST_F_STATUS] = ST_F_SCUR,
264 [ST_F_WEIGHT] = ST_F_ACT,
265 [ST_F_ACT] = ST_F_BCK,
266 [ST_F_BCK] = ST_F_CHKDOWN,
267 [ST_F_CHKFAIL] = 0,
268 [ST_F_CHKDOWN] = ST_F_LASTCHG,
269 [ST_F_LASTCHG] = ST_F_DOWNTIME,
270 [ST_F_DOWNTIME] = ST_F_LBTOT,
271 [ST_F_QLIMIT] = 0,
272 [ST_F_PID] = 0,
273 [ST_F_IID] = 0,
274 [ST_F_SID] = 0,
275 [ST_F_THROTTLE] = 0,
276 [ST_F_LBTOT] = ST_F_REQ_TOT,
277 [ST_F_TRACKED] = 9,
278 [ST_F_TYPE] = 0,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200279 [ST_F_RATE] = 0,
Christopher Fauletf959d082019-02-07 15:38:42 +0100280 [ST_F_RATE_LIM] = 0,
281 [ST_F_RATE_MAX] = ST_F_LASTSESS,
282 [ST_F_CHECK_STATUS] = 0,
283 [ST_F_CHECK_CODE] = 0,
284 [ST_F_CHECK_DURATION] = 0,
285 [ST_F_HRSP_1XX] = ST_F_HRSP_2XX,
286 [ST_F_HRSP_2XX] = ST_F_HRSP_3XX,
287 [ST_F_HRSP_3XX] = ST_F_HRSP_4XX,
288 [ST_F_HRSP_4XX] = ST_F_HRSP_5XX,
289 [ST_F_HRSP_5XX] = ST_F_HRSP_OTHER,
290 [ST_F_HRSP_OTHER] = ST_F_CACHE_LOOKUPS,
291 [ST_F_HANAFAIL] = 0,
292 [ST_F_REQ_RATE] = 0,
293 [ST_F_REQ_RATE_MAX] = 0,
294 [ST_F_REQ_TOT] = ST_F_HRSP_1XX,
295 [ST_F_CLI_ABRT] = ST_F_SRV_ABRT,
296 [ST_F_SRV_ABRT] = ST_F_WEIGHT,
297 [ST_F_COMP_IN] = ST_F_COMP_OUT,
298 [ST_F_COMP_OUT] = ST_F_COMP_BYP,
299 [ST_F_COMP_BYP] = ST_F_COMP_RSP,
300 [ST_F_COMP_RSP] = 0,
301 [ST_F_LASTSESS] = ST_F_QCUR,
302 [ST_F_LAST_CHK] = 0,
303 [ST_F_LAST_AGT] = 0,
304 [ST_F_QTIME] = ST_F_CTIME,
305 [ST_F_CTIME] = ST_F_RTIME,
306 [ST_F_RTIME] = ST_F_TTIME,
Christopher Faulet5df597a2019-11-08 15:05:31 +0100307 [ST_F_TTIME] = ST_F_QT_MAX,
Christopher Fauletf959d082019-02-07 15:38:42 +0100308 [ST_F_AGENT_STATUS] = 0,
309 [ST_F_AGENT_CODE] = 0,
310 [ST_F_AGENT_DURATION] = 0,
311 [ST_F_CHECK_DESC] = 0,
312 [ST_F_AGENT_DESC] = 0,
313 [ST_F_CHECK_RISE] = 0,
314 [ST_F_CHECK_FALL] = 0,
315 [ST_F_CHECK_HEALTH] = 0,
316 [ST_F_AGENT_RISE] = 0,
317 [ST_F_AGENT_FALL] = 0,
318 [ST_F_AGENT_HEALTH] = 0,
319 [ST_F_ADDR] = 0,
320 [ST_F_COOKIE] = 0,
321 [ST_F_MODE] = 0,
322 [ST_F_ALGO] = 0,
323 [ST_F_CONN_RATE] = 0,
324 [ST_F_CONN_RATE_MAX] = 0,
325 [ST_F_CONN_TOT] = 0,
326 [ST_F_INTERCEPTED] = 0,
327 [ST_F_DCON] = 0,
328 [ST_F_DSES] = 0,
329 [ST_F_WREW] = ST_F_CLI_ABRT,
330 [ST_F_CONNECT] = ST_F_REUSE,
331 [ST_F_REUSE] = ST_F_BIN,
332 [ST_F_CACHE_LOOKUPS] = ST_F_CACHE_HITS,
333 [ST_F_CACHE_HITS] = ST_F_COMP_IN,
Christopher Fauletbd767f72019-11-08 15:24:32 +0100334 [ST_F_SRV_ICUR] = 0,
335 [ST_F_SRV_ILIM] = 0,
Christopher Faulet5df597a2019-11-08 15:05:31 +0100336 [ST_F_QT_MAX] = ST_F_CT_MAX,
337 [ST_F_CT_MAX] = ST_F_RT_MAX,
338 [ST_F_RT_MAX] = ST_F_TT_MAX,
339 [ST_F_TT_MAX] = ST_F_DREQ,
Christopher Fauletf959d082019-02-07 15:38:42 +0100340};
341
342/* Matrix used to dump server metrics. Each metric points to the next one to be
343 * processed or 0 to stop the dump. */
344const int promex_srv_metrics[ST_F_TOTAL_FIELDS] = {
345 [ST_F_PXNAME] = ST_F_STATUS,
346 [ST_F_SVNAME] = 0,
347 [ST_F_QCUR] = ST_F_QMAX,
348 [ST_F_QMAX] = ST_F_QLIMIT,
349 [ST_F_SCUR] = ST_F_SMAX,
350 [ST_F_SMAX] = ST_F_SLIM,
351 [ST_F_SLIM] = ST_F_STOT,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200352 [ST_F_STOT] = ST_F_RATE_MAX,
Christopher Fauletf959d082019-02-07 15:38:42 +0100353 [ST_F_BIN] = ST_F_BOUT,
354 [ST_F_BOUT] = ST_F_QTIME,
355 [ST_F_DREQ] = 0,
356 [ST_F_DRESP] = ST_F_ECON,
357 [ST_F_EREQ] = 0,
358 [ST_F_ECON] = ST_F_ERESP,
359 [ST_F_ERESP] = ST_F_WRETR,
360 [ST_F_WRETR] = ST_F_WREDIS,
361 [ST_F_WREDIS] = ST_F_WREW,
362 [ST_F_STATUS] = ST_F_SCUR,
363 [ST_F_WEIGHT] = ST_F_CHKFAIL,
364 [ST_F_ACT] = 0,
365 [ST_F_BCK] = 0,
366 [ST_F_CHKFAIL] = ST_F_CHKDOWN,
367 [ST_F_CHKDOWN] = ST_F_DOWNTIME,
368 [ST_F_LASTCHG] = ST_F_THROTTLE,
369 [ST_F_DOWNTIME] = ST_F_LASTCHG,
370 [ST_F_QLIMIT] = ST_F_BIN,
371 [ST_F_PID] = 0,
372 [ST_F_IID] = 0,
373 [ST_F_SID] = 0,
374 [ST_F_THROTTLE] = ST_F_LBTOT,
375 [ST_F_LBTOT] = ST_F_HRSP_1XX,
376 [ST_F_TRACKED] = 0,
377 [ST_F_TYPE] = 0,
Christopher Fauletc58fc0d2019-04-18 10:10:49 +0200378 [ST_F_RATE] = 0,
Christopher Fauletf959d082019-02-07 15:38:42 +0100379 [ST_F_RATE_LIM] = 0,
380 [ST_F_RATE_MAX] = ST_F_LASTSESS,
381 [ST_F_CHECK_STATUS] = 0,
382 [ST_F_CHECK_CODE] = 0,
383 [ST_F_CHECK_DURATION] = 0,
384 [ST_F_HRSP_1XX] = ST_F_HRSP_2XX,
385 [ST_F_HRSP_2XX] = ST_F_HRSP_3XX,
386 [ST_F_HRSP_3XX] = ST_F_HRSP_4XX,
387 [ST_F_HRSP_4XX] = ST_F_HRSP_5XX,
388 [ST_F_HRSP_5XX] = ST_F_HRSP_OTHER,
Christopher Fauletbd767f72019-11-08 15:24:32 +0100389 [ST_F_HRSP_OTHER] = ST_F_SRV_ICUR,
Christopher Fauletf959d082019-02-07 15:38:42 +0100390 [ST_F_HANAFAIL] = 0,
391 [ST_F_REQ_RATE] = 0,
392 [ST_F_REQ_RATE_MAX] = 0,
393 [ST_F_REQ_TOT] = 0,
394 [ST_F_CLI_ABRT] = ST_F_SRV_ABRT,
395 [ST_F_SRV_ABRT] = ST_F_WEIGHT,
396 [ST_F_COMP_IN] = 0,
397 [ST_F_COMP_OUT] = 0,
398 [ST_F_COMP_BYP] = 0,
399 [ST_F_COMP_RSP] = 0,
400 [ST_F_LASTSESS] = ST_F_QCUR,
401 [ST_F_LAST_CHK] = 0,
402 [ST_F_LAST_AGT] = 0,
403 [ST_F_QTIME] = ST_F_CTIME,
404 [ST_F_CTIME] = ST_F_RTIME,
405 [ST_F_RTIME] = ST_F_TTIME,
Christopher Faulet5df597a2019-11-08 15:05:31 +0100406 [ST_F_TTIME] = ST_F_QT_MAX,
Christopher Fauletf959d082019-02-07 15:38:42 +0100407 [ST_F_AGENT_STATUS] = 0,
408 [ST_F_AGENT_CODE] = 0,
409 [ST_F_AGENT_DURATION] = 0,
410 [ST_F_CHECK_DESC] = 0,
411 [ST_F_AGENT_DESC] = 0,
412 [ST_F_CHECK_RISE] = 0,
413 [ST_F_CHECK_FALL] = 0,
414 [ST_F_CHECK_HEALTH] = 0,
415 [ST_F_AGENT_RISE] = 0,
416 [ST_F_AGENT_FALL] = 0,
417 [ST_F_AGENT_HEALTH] = 0,
418 [ST_F_ADDR] = 0,
419 [ST_F_COOKIE] = 0,
420 [ST_F_MODE] = 0,
421 [ST_F_ALGO] = 0,
422 [ST_F_CONN_RATE] = 0,
423 [ST_F_CONN_RATE_MAX] = 0,
424 [ST_F_CONN_TOT] = 0,
425 [ST_F_INTERCEPTED] = 0,
426 [ST_F_DCON] = 0,
427 [ST_F_DSES] = 0,
428 [ST_F_WREW] = ST_F_CLI_ABRT,
429 [ST_F_CONNECT] = ST_F_REUSE,
430 [ST_F_REUSE] = ST_F_DRESP,
431 [ST_F_CACHE_LOOKUPS] = 0,
432 [ST_F_CACHE_HITS] = 0,
Christopher Fauletbd767f72019-11-08 15:24:32 +0100433 [ST_F_SRV_ICUR] = ST_F_SRV_ILIM,
434 [ST_F_SRV_ILIM] = 0,
Christopher Faulet5df597a2019-11-08 15:05:31 +0100435 [ST_F_QT_MAX] = ST_F_CT_MAX,
436 [ST_F_CT_MAX] = ST_F_RT_MAX,
437 [ST_F_RT_MAX] = ST_F_TT_MAX,
438 [ST_F_TT_MAX] = ST_F_CONNECT,
Christopher Fauletf959d082019-02-07 15:38:42 +0100439};
440
441/* Name of all info fields */
442const struct ist promex_inf_metric_names[INF_TOTAL_FIELDS] = {
443 [INF_NAME] = IST("name"),
444 [INF_VERSION] = IST("version"),
445 [INF_RELEASE_DATE] = IST("release_date"),
446 [INF_NBTHREAD] = IST("nbthread"),
447 [INF_NBPROC] = IST("nbproc"),
448 [INF_PROCESS_NUM] = IST("relative_process_id"),
449 [INF_PID] = IST("pid"),
450 [INF_UPTIME] = IST("uptime"),
Christopher Faulet8c8e4b12019-04-18 10:15:15 +0200451 [INF_UPTIME_SEC] = IST("start_time_seconds"),
452 [INF_MEMMAX_MB] = IST("max_memory_bytes"),
453 [INF_POOL_ALLOC_MB] = IST("pool_allocated_bytes"),
454 [INF_POOL_USED_MB] = IST("pool_used_bytes"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100455 [INF_POOL_FAILED] = IST("pool_failures_total"),
456 [INF_ULIMIT_N] = IST("max_fds"),
457 [INF_MAXSOCK] = IST("max_sockets"),
458 [INF_MAXCONN] = IST("max_connections"),
459 [INF_HARD_MAXCONN] = IST("hard_max_connections"),
460 [INF_CURR_CONN] = IST("current_connections"),
461 [INF_CUM_CONN] = IST("connections_total"),
462 [INF_CUM_REQ] = IST("requests_total"),
463 [INF_MAX_SSL_CONNS] = IST("max_ssl_connections"),
464 [INF_CURR_SSL_CONNS] = IST("current_ssl_connections"),
465 [INF_CUM_SSL_CONNS] = IST("ssl_connections_total"),
466 [INF_MAXPIPES] = IST("max_pipes"),
467 [INF_PIPES_USED] = IST("pipes_used_total"),
468 [INF_PIPES_FREE] = IST("pipes_free_total"),
469 [INF_CONN_RATE] = IST("current_connection_rate"),
470 [INF_CONN_RATE_LIMIT] = IST("limit_connection_rate"),
471 [INF_MAX_CONN_RATE] = IST("max_connection_rate"),
472 [INF_SESS_RATE] = IST("current_session_rate"),
473 [INF_SESS_RATE_LIMIT] = IST("limit_session_rate"),
474 [INF_MAX_SESS_RATE] = IST("max_session_rate"),
475 [INF_SSL_RATE] = IST("current_ssl_rate"),
476 [INF_SSL_RATE_LIMIT] = IST("limit_ssl_rate"),
477 [INF_MAX_SSL_RATE] = IST("max_ssl_rate"),
478 [INF_SSL_FRONTEND_KEY_RATE] = IST("current_frontend_ssl_key_rate"),
479 [INF_SSL_FRONTEND_MAX_KEY_RATE] = IST("max_frontend_ssl_key_rate"),
480 [INF_SSL_FRONTEND_SESSION_REUSE_PCT] = IST("frontent_ssl_reuse"),
481 [INF_SSL_BACKEND_KEY_RATE] = IST("current_backend_ssl_key_rate"),
482 [INF_SSL_BACKEND_MAX_KEY_RATE] = IST("max_backend_ssl_key_rate"),
Christopher Faulet8c8e4b12019-04-18 10:15:15 +0200483 [INF_SSL_CACHE_LOOKUPS] = IST("ssl_cache_lookups_total"),
484 [INF_SSL_CACHE_MISSES] = IST("ssl_cache_misses_total"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100485 [INF_COMPRESS_BPS_IN] = IST("http_comp_bytes_in_total"),
486 [INF_COMPRESS_BPS_OUT] = IST("http_comp_bytes_out_total"),
487 [INF_COMPRESS_BPS_RATE_LIM] = IST("limit_http_comp"),
488 [INF_ZLIB_MEM_USAGE] = IST("current_zlib_memory"),
489 [INF_MAX_ZLIB_MEM_USAGE] = IST("max_zlib_memory"),
490 [INF_TASKS] = IST("current_tasks"),
491 [INF_RUN_QUEUE] = IST("current_run_queue"),
492 [INF_IDLE_PCT] = IST("idle_time_percent"),
493 [INF_NODE] = IST("node"),
494 [INF_DESCRIPTION] = IST("description"),
495 [INF_STOPPING] = IST("stopping"),
496 [INF_JOBS] = IST("jobs"),
497 [INF_UNSTOPPABLE_JOBS] = IST("unstoppable_jobs"),
498 [INF_LISTENERS] = IST("listeners"),
499 [INF_ACTIVE_PEERS] = IST("active_peers"),
500 [INF_CONNECTED_PEERS] = IST("connected_peers"),
501 [INF_DROPPED_LOGS] = IST("dropped_logs_total"),
502 [INF_BUSY_POLLING] = IST("busy_polling_enabled"),
503};
504
505/* Name of all stats fields */
506const struct ist promex_st_metric_names[ST_F_TOTAL_FIELDS] = {
507 [ST_F_PXNAME] = IST("proxy_name"),
508 [ST_F_SVNAME] = IST("service_name"),
509 [ST_F_QCUR] = IST("current_queue"),
510 [ST_F_QMAX] = IST("max_queue"),
511 [ST_F_SCUR] = IST("current_sessions"),
512 [ST_F_SMAX] = IST("max_sessions"),
513 [ST_F_SLIM] = IST("limit_sessions"),
514 [ST_F_STOT] = IST("sessions_total"),
515 [ST_F_BIN] = IST("bytes_in_total"),
516 [ST_F_BOUT] = IST("bytes_out_total"),
517 [ST_F_DREQ] = IST("requests_denied_total"),
518 [ST_F_DRESP] = IST("responses_denied_total"),
519 [ST_F_EREQ] = IST("request_errors_total"),
520 [ST_F_ECON] = IST("connection_errors_total"),
521 [ST_F_ERESP] = IST("response_errors_total"),
522 [ST_F_WRETR] = IST("retry_warnings_total"),
523 [ST_F_WREDIS] = IST("redispatch_warnings_total"),
524 [ST_F_STATUS] = IST("status"),
525 [ST_F_WEIGHT] = IST("weight"),
526 [ST_F_ACT] = IST("active_servers"),
527 [ST_F_BCK] = IST("backup_servers"),
528 [ST_F_CHKFAIL] = IST("check_failures_total"),
529 [ST_F_CHKDOWN] = IST("check_up_down_total"),
530 [ST_F_LASTCHG] = IST("check_last_change_seconds"),
531 [ST_F_DOWNTIME] = IST("downtime_seconds_total"),
532 [ST_F_QLIMIT] = IST("queue_limit"),
533 [ST_F_PID] = IST("pid"),
534 [ST_F_IID] = IST("proxy_id"),
535 [ST_F_SID] = IST("server_id"),
536 [ST_F_THROTTLE] = IST("current_throttle"),
537 [ST_F_LBTOT] = IST("loadbalanced_total"),
538 [ST_F_TRACKED] = IST("tracked"),
539 [ST_F_TYPE] = IST("type"),
540 [ST_F_RATE] = IST("current_session_rate"),
541 [ST_F_RATE_LIM] = IST("limit_session_rate"),
542 [ST_F_RATE_MAX] = IST("max_session_rate"),
543 [ST_F_CHECK_STATUS] = IST("check_status"),
544 [ST_F_CHECK_CODE] = IST("check_code"),
545 [ST_F_CHECK_DURATION] = IST("check_duration_milliseconds"),
546 [ST_F_HRSP_1XX] = IST("http_responses_total"),
547 [ST_F_HRSP_2XX] = IST("http_responses_total"),
548 [ST_F_HRSP_3XX] = IST("http_responses_total"),
549 [ST_F_HRSP_4XX] = IST("http_responses_total"),
550 [ST_F_HRSP_5XX] = IST("http_responses_total"),
551 [ST_F_HRSP_OTHER] = IST("http_responses_total"),
552 [ST_F_HANAFAIL] = IST("check_analyses_failures_total"),
553 [ST_F_REQ_RATE] = IST("http_requests_rate_current"),
554 [ST_F_REQ_RATE_MAX] = IST("http_requests_rate_max"),
555 [ST_F_REQ_TOT] = IST("http_requests_total"),
556 [ST_F_CLI_ABRT] = IST("client_aborts_total"),
557 [ST_F_SRV_ABRT] = IST("server_aborts_total"),
558 [ST_F_COMP_IN] = IST("http_comp_bytes_in_total"),
559 [ST_F_COMP_OUT] = IST("http_comp_bytes_out_total"),
560 [ST_F_COMP_BYP] = IST("http_comp_bytes_bypassed_total"),
561 [ST_F_COMP_RSP] = IST("http_comp_responses_total"),
562 [ST_F_LASTSESS] = IST("last_session_seconds"),
563 [ST_F_LAST_CHK] = IST("check_last_content"),
564 [ST_F_LAST_AGT] = IST("agentcheck_last_content"),
Christopher Faulet3388fd22019-11-08 15:12:29 +0100565 [ST_F_QTIME] = IST("queue_time_average_seconds"),
566 [ST_F_CTIME] = IST("connect_time_average_seconds"),
567 [ST_F_RTIME] = IST("response_time_average_seconds"),
568 [ST_F_TTIME] = IST("total_time_average_seconds"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100569 [ST_F_AGENT_STATUS] = IST("agentcheck_status"),
570 [ST_F_AGENT_CODE] = IST("agentcheck_code"),
571 [ST_F_AGENT_DURATION] = IST("agentcheck_duration_milliseconds"),
572 [ST_F_CHECK_DESC] = IST("check_description"),
573 [ST_F_AGENT_DESC] = IST("agentcheck_description"),
574 [ST_F_CHECK_RISE] = IST("check_rise"),
575 [ST_F_CHECK_FALL] = IST("check_fall"),
576 [ST_F_CHECK_HEALTH] = IST("check_value"),
577 [ST_F_AGENT_RISE] = IST("agentcheck_rise"),
578 [ST_F_AGENT_FALL] = IST("agentcheck_fall"),
579 [ST_F_AGENT_HEALTH] = IST("agentcheck_value"),
580 [ST_F_ADDR] = IST("address"),
581 [ST_F_COOKIE] = IST("cookie"),
582 [ST_F_MODE] = IST("mode"),
583 [ST_F_ALGO] = IST("loadbalance_algorithm"),
584 [ST_F_CONN_RATE] = IST("connections_rate_current"),
585 [ST_F_CONN_RATE_MAX] = IST("connections_rate_max"),
586 [ST_F_CONN_TOT] = IST("connections_total"),
587 [ST_F_INTERCEPTED] = IST("intercepted_requests_total"),
588 [ST_F_DCON] = IST("denied_connections_total"),
589 [ST_F_DSES] = IST("denied_sessions_total"),
590 [ST_F_WREW] = IST("failed_header_rewriting_total"),
591 [ST_F_CONNECT] = IST("connection_attempts_total"),
592 [ST_F_REUSE] = IST("connection_reuses_total"),
593 [ST_F_CACHE_LOOKUPS] = IST("http_cache_lookups_total"),
594 [ST_F_CACHE_HITS] = IST("http_cache_hits_total"),
Christopher Fauletbd767f72019-11-08 15:24:32 +0100595 [ST_F_SRV_ICUR] = IST("server_idle_connections_current"),
596 [ST_F_SRV_ILIM] = IST("server_idle_connections_limit"),
Christopher Faulet5df597a2019-11-08 15:05:31 +0100597 [ST_F_QT_MAX] = IST("max_queue_time_seconds"),
598 [ST_F_CT_MAX] = IST("max_connect_time_seconds"),
599 [ST_F_RT_MAX] = IST("max_response_time_seconds"),
600 [ST_F_TT_MAX] = IST("max_total_time_seconds"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100601};
602
603/* Description of all info fields */
604const struct ist promex_inf_metric_desc[INF_TOTAL_FIELDS] = {
605 [INF_NAME] = IST("Product name."),
606 [INF_VERSION] = IST("HAProxy version."),
607 [INF_RELEASE_DATE] = IST("HAProxy realease date."),
608 [INF_NBTHREAD] = IST("Configured number of threads."),
609 [INF_NBPROC] = IST("Configured number of processes."),
610 [INF_PROCESS_NUM] = IST("Relative process id, starting at 1."),
611 [INF_PID] = IST("HAProxy PID."),
612 [INF_UPTIME] = IST("Uptime in a human readable format."),
Christopher Faulet8c8e4b12019-04-18 10:15:15 +0200613 [INF_UPTIME_SEC] = IST("Start time in seconds."),
614 [INF_MEMMAX_MB] = IST("Per-process memory limit (in bytes); 0=unset."),
615 [INF_POOL_ALLOC_MB] = IST("Total amount of memory allocated in pools (in bytes)."),
616 [INF_POOL_USED_MB] = IST("Total amount of memory used in pools (in bytes)."),
Christopher Fauletf959d082019-02-07 15:38:42 +0100617 [INF_POOL_FAILED] = IST("Total number of failed pool allocations."),
618 [INF_ULIMIT_N] = IST("Maximum number of open file descriptors; 0=unset."),
619 [INF_MAXSOCK] = IST("Maximum numer of open sockets."),
620 [INF_MAXCONN] = IST("Maximum number of concurrent connections."),
621 [INF_HARD_MAXCONN] = IST("Initial Maximum number of concurrent connections."),
622 [INF_CURR_CONN] = IST("Number of active sessions."),
Christopher Faulet8c8e4b12019-04-18 10:15:15 +0200623 [INF_CUM_CONN] = IST("Total number of created sessions."),
Christopher Fauletf959d082019-02-07 15:38:42 +0100624 [INF_CUM_REQ] = IST("Total number of requests (TCP or HTTP)."),
625 [INF_MAX_SSL_CONNS] = IST("Configured maximum number of concurrent SSL connections."),
626 [INF_CURR_SSL_CONNS] = IST("Number of opened SSL connections."),
627 [INF_CUM_SSL_CONNS] = IST("Total number of opened SSL connections."),
628 [INF_MAXPIPES] = IST("Configured maximum number of pipes."),
629 [INF_PIPES_USED] = IST("Number of pipes in used."),
630 [INF_PIPES_FREE] = IST("Number of pipes unused."),
631 [INF_CONN_RATE] = IST("Current number of connections per second over last elapsed second."),
632 [INF_CONN_RATE_LIMIT] = IST("Configured maximum number of connections per second."),
633 [INF_MAX_CONN_RATE] = IST("Maximum observed number of connections per second."),
634 [INF_SESS_RATE] = IST("Current number of sessions per second over last elapsed second."),
635 [INF_SESS_RATE_LIMIT] = IST("Configured maximum number of sessions per second."),
636 [INF_MAX_SESS_RATE] = IST("Maximum observed number of sessions per second."),
637 [INF_SSL_RATE] = IST("Current number of SSL sessions per second over last elapsed second."),
638 [INF_SSL_RATE_LIMIT] = IST("Configured maximum number of SSL sessions per second."),
639 [INF_MAX_SSL_RATE] = IST("Maximum observed number of SSL sessions per second."),
640 [INF_SSL_FRONTEND_KEY_RATE] = IST("Current frontend SSL Key computation per second over last elapsed second."),
641 [INF_SSL_FRONTEND_MAX_KEY_RATE] = IST("Maximum observed frontend SSL Key computation per second."),
642 [INF_SSL_FRONTEND_SESSION_REUSE_PCT] = IST("SSL session reuse ratio (percent)."),
643 [INF_SSL_BACKEND_KEY_RATE] = IST("Current backend SSL Key computation per second over last elapsed second."),
644 [INF_SSL_BACKEND_MAX_KEY_RATE] = IST("Maximum observed backend SSL Key computation per second."),
645 [INF_SSL_CACHE_LOOKUPS] = IST("Total number of SSL session cache lookups."),
646 [INF_SSL_CACHE_MISSES] = IST("Total number of SSL session cache misses."),
647 [INF_COMPRESS_BPS_IN] = IST("Number of bytes per second over last elapsed second, before http compression."),
648 [INF_COMPRESS_BPS_OUT] = IST("Number of bytes per second over last elapsed second, after http compression."),
649 [INF_COMPRESS_BPS_RATE_LIM] = IST("Configured maximum input compression rate in bytes."),
650 [INF_ZLIB_MEM_USAGE] = IST("Current memory used for zlib in bytes."),
651 [INF_MAX_ZLIB_MEM_USAGE] = IST("Configured maximum amount of memory for zlib in bytes."),
652 [INF_TASKS] = IST("Current number of tasks."),
653 [INF_RUN_QUEUE] = IST("Current number of tasks in the run-queue."),
654 [INF_IDLE_PCT] = IST("Idle to total ratio over last sample (percent)."),
655 [INF_NODE] = IST("Node name."),
656 [INF_DESCRIPTION] = IST("Node description."),
657 [INF_STOPPING] = IST("Non zero means stopping in progress."),
658 [INF_JOBS] = IST("Current number of active jobs (listeners, sessions, open devices)."),
659 [INF_UNSTOPPABLE_JOBS] = IST("Current number of active jobs that can't be stopped during a soft stop."),
660 [INF_LISTENERS] = IST("Current number of active listeners."),
661 [INF_ACTIVE_PEERS] = IST("Current number of active peers."),
662 [INF_CONNECTED_PEERS] = IST("Current number of connected peers."),
663 [INF_DROPPED_LOGS] = IST("Total number of dropped logs."),
664 [INF_BUSY_POLLING] = IST("Non zero if the busy polling is enabled."),
665};
666
667/* Description of all stats fields */
668const struct ist promex_st_metric_desc[ST_F_TOTAL_FIELDS] = {
669 [ST_F_PXNAME] = IST("The proxy name."),
670 [ST_F_SVNAME] = IST("The service name (FRONTEND for frontend, BACKEND for backend, any name for server/listener)."),
671 [ST_F_QCUR] = IST("Current number of queued requests."),
672 [ST_F_QMAX] = IST("Maximum observed number of queued requests."),
673 [ST_F_SCUR] = IST("Current number of active sessions."),
674 [ST_F_SMAX] = IST("Maximum observed number of active sessions."),
675 [ST_F_SLIM] = IST("Configured session limit."),
676 [ST_F_STOT] = IST("Total number of sessions."),
677 [ST_F_BIN] = IST("Current total of incoming bytes."),
678 [ST_F_BOUT] = IST("Current total of outgoing bytes."),
679 [ST_F_DREQ] = IST("Total number of denied requests."),
680 [ST_F_DRESP] = IST("Total number of denied responses."),
681 [ST_F_EREQ] = IST("Total number of request errors."),
682 [ST_F_ECON] = IST("Total number of connection errors."),
683 [ST_F_ERESP] = IST("Total number of response errors."),
684 [ST_F_WRETR] = IST("Total number of retry warnings."),
685 [ST_F_WREDIS] = IST("Total number of redispatch warnings."),
Christopher Faulet8e40fa22019-09-06 16:10:19 +0200686 [ST_F_STATUS] = IST("Current status of the service (frontend: 0=STOP, 1=UP, 2=FULL - backend: 0=DOWN, 1=UP - server: 0=DOWN, 1=UP, 2=MAINT, 3=DRAIN, 4=NOLB)."),
Christopher Fauletf959d082019-02-07 15:38:42 +0100687 [ST_F_WEIGHT] = IST("Service weight."),
688 [ST_F_ACT] = IST("Current number of active servers."),
689 [ST_F_BCK] = IST("Current number of backup servers."),
690 [ST_F_CHKFAIL] = IST("Total number of failed check (Only counts checks failed when the server is up)."),
691 [ST_F_CHKDOWN] = IST("Total number of UP->DOWN transitions."),
692 [ST_F_LASTCHG] = IST("Number of seconds since the last UP<->DOWN transition."),
693 [ST_F_DOWNTIME] = IST("Total downtime (in seconds) for the service."),
694 [ST_F_QLIMIT] = IST("Configured maxqueue for the server (0 meaning no limit)."),
695 [ST_F_PID] = IST("Process id (0 for first instance, 1 for second, ...)"),
696 [ST_F_IID] = IST("Unique proxy id."),
697 [ST_F_SID] = IST("Server id (unique inside a proxy)."),
698 [ST_F_THROTTLE] = IST("Current throttle percentage for the server, when slowstart is active, or no value if not in slowstart."),
699 [ST_F_LBTOT] = IST("Total number of times a service was selected, either for new sessions, or when redispatching."),
700 [ST_F_TRACKED] = IST("Id of proxy/server if tracking is enabled."),
701 [ST_F_TYPE] = IST("Service type (0=frontend, 1=backend, 2=server, 3=socket/listener)."),
702 [ST_F_RATE] = IST("Current number of sessions per second over last elapsed second."),
703 [ST_F_RATE_LIM] = IST("Configured limit on new sessions per second."),
704 [ST_F_RATE_MAX] = IST("Maximum observed number of sessions per second."),
705 [ST_F_CHECK_STATUS] = IST("Status of last health check (If a check is running, the status will be reported, prefixed with '* ')."),
706 [ST_F_CHECK_CODE] = IST("layer5-7 code, if available of the last health check."),
707 [ST_F_CHECK_DURATION] = IST("Time in ms took to finish last health check."),
708 [ST_F_HRSP_1XX] = IST("Total number of HTTP responses."),
709 [ST_F_HRSP_2XX] = IST("Total number of HTTP responses."),
710 [ST_F_HRSP_3XX] = IST("Total number of HTTP responses."),
711 [ST_F_HRSP_4XX] = IST("Total number of HTTP responses."),
712 [ST_F_HRSP_5XX] = IST("Total number of HTTP responses."),
713 [ST_F_HRSP_OTHER] = IST("Total number of HTTP responses."),
714 [ST_F_HANAFAIL] = IST("Total number of failed health checks."),
715 [ST_F_REQ_RATE] = IST("Current number of HTTP requests per second over last elapsed second."),
716 [ST_F_REQ_RATE_MAX] = IST("Maximum observed number of HTTP requests per second."),
717 [ST_F_REQ_TOT] = IST("Total number of HTTP requests received."),
718 [ST_F_CLI_ABRT] = IST("Total number of data transfers aborted by the client."),
719 [ST_F_SRV_ABRT] = IST("Total number of data transfers aborted by the server."),
720 [ST_F_COMP_IN] = IST("Total number of HTTP response bytes fed to the compressor."),
721 [ST_F_COMP_OUT] = IST("Total number of HTTP response bytes emitted by the compressor."),
722 [ST_F_COMP_BYP] = IST("Total number of bytes that bypassed the HTTP compressor (CPU/BW limit)."),
723 [ST_F_COMP_RSP] = IST("Total number of HTTP responses that were compressed."),
724 [ST_F_LASTSESS] = IST("Number of seconds since last session assigned to server/backend."),
725 [ST_F_LAST_CHK] = IST("Last health check contents or textual error"),
726 [ST_F_LAST_AGT] = IST("Last agent check contents or textual error"),
727 [ST_F_QTIME] = IST("Avg. queue time for last 1024 successful connections."),
728 [ST_F_CTIME] = IST("Avg. connect time for last 1024 successful connections."),
729 [ST_F_RTIME] = IST("Avg. response time for last 1024 successful connections."),
730 [ST_F_TTIME] = IST("Avg. total time for last 1024 successful connections."),
731 [ST_F_AGENT_STATUS] = IST("Status of last agent check."),
732 [ST_F_AGENT_CODE] = IST("Numeric code reported by agent if any (unused for now)."),
733 [ST_F_AGENT_DURATION] = IST("Time in ms taken to finish last agent check."),
734 [ST_F_CHECK_DESC] = IST("Short human-readable description of the last health status."),
735 [ST_F_AGENT_DESC] = IST("Short human-readable description of the last agent status."),
736 [ST_F_CHECK_RISE] = IST("Server's \"rise\" parameter used by health checks"),
737 [ST_F_CHECK_FALL] = IST("Server's \"fall\" parameter used by health checks"),
738 [ST_F_CHECK_HEALTH] = IST("Server's health check value between 0 and rise+fall-1"),
739 [ST_F_AGENT_RISE] = IST("Agent's \"rise\" parameter, normally 1."),
740 [ST_F_AGENT_FALL] = IST("Agent's \"fall\" parameter, normally 1."),
741 [ST_F_AGENT_HEALTH] = IST("Agent's health parameter, between 0 and rise+fall-1"),
742 [ST_F_ADDR] = IST("address:port or \"unix\". IPv6 has brackets around the address."),
743 [ST_F_COOKIE] = IST("Server's cookie value or backend's cookie name."),
744 [ST_F_MODE] = IST("Proxy mode (tcp, http, health, unknown)."),
745 [ST_F_ALGO] = IST("Load balancing algorithm."),
746 [ST_F_CONN_RATE] = IST("Current number of connections per second over the last elapsed second."),
747 [ST_F_CONN_RATE_MAX] = IST("Maximum observed number of connections per second."),
748 [ST_F_CONN_TOT] = IST("Total number of connections."),
749 [ST_F_INTERCEPTED] = IST("Total number of intercepted HTTP requests."),
750 [ST_F_DCON] = IST("Total number of requests denied by \"tcp-request connection\" rules."),
751 [ST_F_DSES] = IST("Total number of requests denied by \"tcp-request session\" rules."),
752 [ST_F_WREW] = IST("Total number of failed header rewriting warnings."),
753 [ST_F_CONNECT] = IST("Total number of connection establishment attempts."),
754 [ST_F_REUSE] = IST("Total number of connection reuses."),
755 [ST_F_CACHE_LOOKUPS] = IST("Total number of HTTP cache lookups."),
756 [ST_F_CACHE_HITS] = IST("Total number of HTTP cache hits."),
Christopher Fauletbd767f72019-11-08 15:24:32 +0100757 [ST_F_SRV_ICUR] = IST("Current number of idle connections available for reuse"),
758 [ST_F_SRV_ILIM] = IST("Limit on the number of available idle connections"),
Christopher Faulet5df597a2019-11-08 15:05:31 +0100759 [ST_F_QT_MAX] = IST("Maximum observed time spent in the queue"),
760 [ST_F_CT_MAX] = IST("Maximum observed time spent waiting for a connection to complete"),
761 [ST_F_RT_MAX] = IST("Maximum observed time spent waiting for a server response"),
762 [ST_F_TT_MAX] = IST("Maximum observed total request+response time (request+queue+connect+response+processing)"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100763};
764
765/* Specific labels for all info fields. Empty by default. */
766const struct ist promex_inf_metric_labels[INF_TOTAL_FIELDS] = {
767 [INF_NAME] = IST(""),
768 [INF_VERSION] = IST(""),
769 [INF_RELEASE_DATE] = IST(""),
770 [INF_NBTHREAD] = IST(""),
771 [INF_NBPROC] = IST(""),
772 [INF_PROCESS_NUM] = IST(""),
773 [INF_PID] = IST(""),
774 [INF_UPTIME] = IST(""),
775 [INF_UPTIME_SEC] = IST(""),
776 [INF_MEMMAX_MB] = IST(""),
777 [INF_POOL_ALLOC_MB] = IST(""),
778 [INF_POOL_USED_MB] = IST(""),
779 [INF_POOL_FAILED] = IST(""),
780 [INF_ULIMIT_N] = IST(""),
781 [INF_MAXSOCK] = IST(""),
782 [INF_MAXCONN] = IST(""),
783 [INF_HARD_MAXCONN] = IST(""),
784 [INF_CURR_CONN] = IST(""),
785 [INF_CUM_CONN] = IST(""),
786 [INF_CUM_REQ] = IST(""),
787 [INF_MAX_SSL_CONNS] = IST(""),
788 [INF_CURR_SSL_CONNS] = IST(""),
789 [INF_CUM_SSL_CONNS] = IST(""),
790 [INF_MAXPIPES] = IST(""),
791 [INF_PIPES_USED] = IST(""),
792 [INF_PIPES_FREE] = IST(""),
793 [INF_CONN_RATE] = IST(""),
794 [INF_CONN_RATE_LIMIT] = IST(""),
795 [INF_MAX_CONN_RATE] = IST(""),
796 [INF_SESS_RATE] = IST(""),
797 [INF_SESS_RATE_LIMIT] = IST(""),
798 [INF_MAX_SESS_RATE] = IST(""),
799 [INF_SSL_RATE] = IST(""),
800 [INF_SSL_RATE_LIMIT] = IST(""),
801 [INF_MAX_SSL_RATE] = IST(""),
802 [INF_SSL_FRONTEND_KEY_RATE] = IST(""),
803 [INF_SSL_FRONTEND_MAX_KEY_RATE] = IST(""),
804 [INF_SSL_FRONTEND_SESSION_REUSE_PCT] = IST(""),
805 [INF_SSL_BACKEND_KEY_RATE] = IST(""),
806 [INF_SSL_BACKEND_MAX_KEY_RATE] = IST(""),
807 [INF_SSL_CACHE_LOOKUPS] = IST(""),
808 [INF_SSL_CACHE_MISSES] = IST(""),
809 [INF_COMPRESS_BPS_IN] = IST(""),
810 [INF_COMPRESS_BPS_OUT] = IST(""),
811 [INF_COMPRESS_BPS_RATE_LIM] = IST(""),
812 [INF_ZLIB_MEM_USAGE] = IST(""),
813 [INF_MAX_ZLIB_MEM_USAGE] = IST(""),
814 [INF_TASKS] = IST(""),
815 [INF_RUN_QUEUE] = IST(""),
816 [INF_IDLE_PCT] = IST(""),
817 [INF_NODE] = IST(""),
818 [INF_DESCRIPTION] = IST(""),
819 [INF_STOPPING] = IST(""),
820 [INF_JOBS] = IST(""),
821 [INF_UNSTOPPABLE_JOBS] = IST(""),
822 [INF_LISTENERS] = IST(""),
823 [INF_ACTIVE_PEERS] = IST(""),
824 [INF_CONNECTED_PEERS] = IST(""),
825 [INF_DROPPED_LOGS] = IST(""),
826 [INF_BUSY_POLLING] = IST(""),
827};
828
829/* Specific labels for all stats fields. Empty by default. */
830const struct ist promex_st_metric_labels[ST_F_TOTAL_FIELDS] = {
831 [ST_F_PXNAME] = IST(""),
832 [ST_F_SVNAME] = IST(""),
833 [ST_F_QCUR] = IST(""),
834 [ST_F_QMAX] = IST(""),
835 [ST_F_SCUR] = IST(""),
836 [ST_F_SMAX] = IST(""),
837 [ST_F_SLIM] = IST(""),
838 [ST_F_STOT] = IST(""),
839 [ST_F_BIN] = IST(""),
840 [ST_F_BOUT] = IST(""),
841 [ST_F_DREQ] = IST(""),
842 [ST_F_DRESP] = IST(""),
843 [ST_F_EREQ] = IST(""),
844 [ST_F_ECON] = IST(""),
845 [ST_F_ERESP] = IST(""),
846 [ST_F_WRETR] = IST(""),
847 [ST_F_WREDIS] = IST(""),
848 [ST_F_STATUS] = IST(""),
849 [ST_F_WEIGHT] = IST(""),
850 [ST_F_ACT] = IST(""),
851 [ST_F_BCK] = IST(""),
852 [ST_F_CHKFAIL] = IST(""),
853 [ST_F_CHKDOWN] = IST(""),
854 [ST_F_LASTCHG] = IST(""),
855 [ST_F_DOWNTIME] = IST(""),
856 [ST_F_QLIMIT] = IST(""),
857 [ST_F_PID] = IST(""),
858 [ST_F_IID] = IST(""),
859 [ST_F_SID] = IST(""),
860 [ST_F_THROTTLE] = IST(""),
861 [ST_F_LBTOT] = IST(""),
862 [ST_F_TRACKED] = IST(""),
863 [ST_F_TYPE] = IST(""),
864 [ST_F_RATE] = IST(""),
865 [ST_F_RATE_LIM] = IST(""),
866 [ST_F_RATE_MAX] = IST(""),
867 [ST_F_CHECK_STATUS] = IST(""),
868 [ST_F_CHECK_CODE] = IST(""),
869 [ST_F_CHECK_DURATION] = IST(""),
870 [ST_F_HRSP_1XX] = IST("code=\"1xx\""),
871 [ST_F_HRSP_2XX] = IST("code=\"2xx\""),
872 [ST_F_HRSP_3XX] = IST("code=\"3xx\""),
873 [ST_F_HRSP_4XX] = IST("code=\"4xx\""),
874 [ST_F_HRSP_5XX] = IST("code=\"5xx\""),
875 [ST_F_HRSP_OTHER] = IST("code=\"other\""),
876 [ST_F_HANAFAIL] = IST(""),
877 [ST_F_REQ_RATE] = IST(""),
878 [ST_F_REQ_RATE_MAX] = IST(""),
879 [ST_F_REQ_TOT] = IST(""),
880 [ST_F_CLI_ABRT] = IST(""),
881 [ST_F_SRV_ABRT] = IST(""),
882 [ST_F_COMP_IN] = IST(""),
883 [ST_F_COMP_OUT] = IST(""),
884 [ST_F_COMP_BYP] = IST(""),
885 [ST_F_COMP_RSP] = IST(""),
886 [ST_F_LASTSESS] = IST(""),
887 [ST_F_LAST_CHK] = IST(""),
888 [ST_F_LAST_AGT] = IST(""),
889 [ST_F_QTIME] = IST(""),
890 [ST_F_CTIME] = IST(""),
891 [ST_F_RTIME] = IST(""),
892 [ST_F_TTIME] = IST(""),
893 [ST_F_AGENT_STATUS] = IST(""),
894 [ST_F_AGENT_CODE] = IST(""),
895 [ST_F_AGENT_DURATION] = IST(""),
896 [ST_F_CHECK_DESC] = IST(""),
897 [ST_F_AGENT_DESC] = IST(""),
898 [ST_F_CHECK_RISE] = IST(""),
899 [ST_F_CHECK_FALL] = IST(""),
900 [ST_F_CHECK_HEALTH] = IST(""),
901 [ST_F_AGENT_RISE] = IST(""),
902 [ST_F_AGENT_FALL] = IST(""),
903 [ST_F_AGENT_HEALTH] = IST(""),
904 [ST_F_ADDR] = IST(""),
905 [ST_F_COOKIE] = IST(""),
906 [ST_F_MODE] = IST(""),
907 [ST_F_ALGO] = IST(""),
908 [ST_F_CONN_RATE] = IST(""),
909 [ST_F_CONN_RATE_MAX] = IST(""),
910 [ST_F_CONN_TOT] = IST(""),
911 [ST_F_INTERCEPTED] = IST(""),
912 [ST_F_DCON] = IST(""),
913 [ST_F_DSES] = IST(""),
914 [ST_F_WREW] = IST(""),
915 [ST_F_CONNECT] = IST(""),
916 [ST_F_REUSE] = IST(""),
917 [ST_F_CACHE_LOOKUPS] = IST(""),
918 [ST_F_CACHE_HITS] = IST(""),
919};
920
921/* Type for all info fields. "untyped" is used for unsupported field. */
922const struct ist promex_inf_metric_types[INF_TOTAL_FIELDS] = {
923 [INF_NAME] = IST("untyped"),
924 [INF_VERSION] = IST("untyped"),
925 [INF_RELEASE_DATE] = IST("untyped"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200926 [INF_NBTHREAD] = IST("gauge"),
927 [INF_NBPROC] = IST("gauge"),
928 [INF_PROCESS_NUM] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100929 [INF_PID] = IST("untyped"),
930 [INF_UPTIME] = IST("untyped"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200931 [INF_UPTIME_SEC] = IST("gauge"),
932 [INF_MEMMAX_MB] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100933 [INF_POOL_ALLOC_MB] = IST("gauge"),
934 [INF_POOL_USED_MB] = IST("gauge"),
935 [INF_POOL_FAILED] = IST("counter"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200936 [INF_ULIMIT_N] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100937 [INF_MAXSOCK] = IST("gauge"),
938 [INF_MAXCONN] = IST("gauge"),
939 [INF_HARD_MAXCONN] = IST("gauge"),
940 [INF_CURR_CONN] = IST("gauge"),
941 [INF_CUM_CONN] = IST("counter"),
942 [INF_CUM_REQ] = IST("counter"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200943 [INF_MAX_SSL_CONNS] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100944 [INF_CURR_SSL_CONNS] = IST("gauge"),
945 [INF_CUM_SSL_CONNS] = IST("counter"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200946 [INF_MAXPIPES] = IST("gauge"),
947 [INF_PIPES_USED] = IST("counter"),
948 [INF_PIPES_FREE] = IST("counter"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100949 [INF_CONN_RATE] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200950 [INF_CONN_RATE_LIMIT] = IST("gauge"),
951 [INF_MAX_CONN_RATE] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100952 [INF_SESS_RATE] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200953 [INF_SESS_RATE_LIMIT] = IST("gauge"),
954 [INF_MAX_SESS_RATE] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100955 [INF_SSL_RATE] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200956 [INF_SSL_RATE_LIMIT] = IST("gauge"),
957 [INF_MAX_SSL_RATE] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100958 [INF_SSL_FRONTEND_KEY_RATE] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200959 [INF_SSL_FRONTEND_MAX_KEY_RATE] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100960 [INF_SSL_FRONTEND_SESSION_REUSE_PCT] = IST("gauge"),
961 [INF_SSL_BACKEND_KEY_RATE] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200962 [INF_SSL_BACKEND_MAX_KEY_RATE] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100963 [INF_SSL_CACHE_LOOKUPS] = IST("counter"),
964 [INF_SSL_CACHE_MISSES] = IST("counter"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200965 [INF_COMPRESS_BPS_IN] = IST("counter"),
966 [INF_COMPRESS_BPS_OUT] = IST("counter"),
967 [INF_COMPRESS_BPS_RATE_LIM] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100968 [INF_ZLIB_MEM_USAGE] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200969 [INF_MAX_ZLIB_MEM_USAGE] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100970 [INF_TASKS] = IST("gauge"),
Christopher Fauletf782c232019-04-17 16:04:44 +0200971 [INF_RUN_QUEUE] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100972 [INF_IDLE_PCT] = IST("gauge"),
973 [INF_NODE] = IST("untyped"),
974 [INF_DESCRIPTION] = IST("untyped"),
975 [INF_STOPPING] = IST("gauge"),
976 [INF_JOBS] = IST("gauge"),
977 [INF_UNSTOPPABLE_JOBS] = IST("gauge"),
978 [INF_LISTENERS] = IST("gauge"),
979 [INF_ACTIVE_PEERS] = IST("gauge"),
980 [INF_CONNECTED_PEERS] = IST("gauge"),
981 [INF_DROPPED_LOGS] = IST("counter"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200982 [INF_BUSY_POLLING] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100983};
984
985/* Type for all stats fields. "untyped" is used for unsupported field. */
986const struct ist promex_st_metric_types[ST_F_TOTAL_FIELDS] = {
987 [ST_F_PXNAME] = IST("untyped"),
988 [ST_F_SVNAME] = IST("untyped"),
989 [ST_F_QCUR] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200990 [ST_F_QMAX] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100991 [ST_F_SCUR] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +0200992 [ST_F_SMAX] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100993 [ST_F_SLIM] = IST("gauge"),
994 [ST_F_STOT] = IST("counter"),
995 [ST_F_BIN] = IST("counter"),
996 [ST_F_BOUT] = IST("counter"),
997 [ST_F_DREQ] = IST("counter"),
998 [ST_F_DRESP] = IST("counter"),
999 [ST_F_EREQ] = IST("counter"),
1000 [ST_F_ECON] = IST("counter"),
1001 [ST_F_ERESP] = IST("counter"),
1002 [ST_F_WRETR] = IST("counter"),
1003 [ST_F_WREDIS] = IST("counter"),
1004 [ST_F_STATUS] = IST("gauge"),
1005 [ST_F_WEIGHT] = IST("gauge"),
1006 [ST_F_ACT] = IST("gauge"),
1007 [ST_F_BCK] = IST("gauge"),
1008 [ST_F_CHKFAIL] = IST("counter"),
1009 [ST_F_CHKDOWN] = IST("counter"),
1010 [ST_F_LASTCHG] = IST("gauge"),
1011 [ST_F_DOWNTIME] = IST("counter"),
1012 [ST_F_QLIMIT] = IST("gauge"),
1013 [ST_F_PID] = IST("untyped"),
1014 [ST_F_IID] = IST("untyped"),
1015 [ST_F_SID] = IST("untyped"),
1016 [ST_F_THROTTLE] = IST("gauge"),
1017 [ST_F_LBTOT] = IST("counter"),
1018 [ST_F_TRACKED] = IST("untyped"),
1019 [ST_F_TYPE] = IST("untyped"),
Christopher Fauletc58fc0d2019-04-18 10:10:49 +02001020 [ST_F_RATE] = IST("untyped"),
Christopher Fauletf959d082019-02-07 15:38:42 +01001021 [ST_F_RATE_LIM] = IST("gauge"),
Christopher Faulet769a92d2019-04-18 10:18:44 +02001022 [ST_F_RATE_MAX] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +01001023 [ST_F_CHECK_STATUS] = IST("untyped"),
1024 [ST_F_CHECK_CODE] = IST("untyped"),
1025 [ST_F_CHECK_DURATION] = IST("gauge"),
1026 [ST_F_HRSP_1XX] = IST("counter"),
1027 [ST_F_HRSP_2XX] = IST("counter"),
1028 [ST_F_HRSP_3XX] = IST("counter"),
1029 [ST_F_HRSP_4XX] = IST("counter"),
1030 [ST_F_HRSP_5XX] = IST("counter"),
1031 [ST_F_HRSP_OTHER] = IST("counter"),
1032 [ST_F_HANAFAIL] = IST("counter"),
Christopher Fauletc58fc0d2019-04-18 10:10:49 +02001033 [ST_F_REQ_RATE] = IST("untyped"),
Christopher Faulet769a92d2019-04-18 10:18:44 +02001034 [ST_F_REQ_RATE_MAX] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +01001035 [ST_F_REQ_TOT] = IST("counter"),
1036 [ST_F_CLI_ABRT] = IST("counter"),
1037 [ST_F_SRV_ABRT] = IST("counter"),
1038 [ST_F_COMP_IN] = IST("counter"),
1039 [ST_F_COMP_OUT] = IST("counter"),
1040 [ST_F_COMP_BYP] = IST("counter"),
1041 [ST_F_COMP_RSP] = IST("counter"),
1042 [ST_F_LASTSESS] = IST("gauge"),
1043 [ST_F_LAST_CHK] = IST("untyped"),
1044 [ST_F_LAST_AGT] = IST("untyped"),
1045 [ST_F_QTIME] = IST("gauge"),
1046 [ST_F_CTIME] = IST("gauge"),
1047 [ST_F_RTIME] = IST("gauge"),
1048 [ST_F_TTIME] = IST("gauge"),
1049 [ST_F_AGENT_STATUS] = IST("untyped"),
1050 [ST_F_AGENT_CODE] = IST("untyped"),
1051 [ST_F_AGENT_DURATION] = IST("gauge"),
1052 [ST_F_CHECK_DESC] = IST("untyped"),
1053 [ST_F_AGENT_DESC] = IST("untyped"),
1054 [ST_F_CHECK_RISE] = IST("gauge"),
1055 [ST_F_CHECK_FALL] = IST("gauge"),
1056 [ST_F_CHECK_HEALTH] = IST("gauge"),
1057 [ST_F_AGENT_RISE] = IST("gauge"),
1058 [ST_F_AGENT_FALL] = IST("gauge"),
1059 [ST_F_AGENT_HEALTH] = IST("gauge"),
1060 [ST_F_ADDR] = IST("untyped"),
1061 [ST_F_COOKIE] = IST("untyped"),
1062 [ST_F_MODE] = IST("untyped"),
1063 [ST_F_ALGO] = IST("untyped"),
Christopher Fauletc58fc0d2019-04-18 10:10:49 +02001064 [ST_F_CONN_RATE] = IST("untyped"),
Christopher Faulet769a92d2019-04-18 10:18:44 +02001065 [ST_F_CONN_RATE_MAX] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +01001066 [ST_F_CONN_TOT] = IST("counter"),
1067 [ST_F_INTERCEPTED] = IST("counter"),
1068 [ST_F_DCON] = IST("counter"),
1069 [ST_F_DSES] = IST("counter"),
1070 [ST_F_WREW] = IST("counter"),
1071 [ST_F_CONNECT] = IST("counter"),
1072 [ST_F_REUSE] = IST("counter"),
1073 [ST_F_CACHE_LOOKUPS] = IST("counter"),
1074 [ST_F_CACHE_HITS] = IST("counter"),
Christopher Fauletbd767f72019-11-08 15:24:32 +01001075 [ST_F_SRV_ICUR] = IST("gauge"),
1076 [ST_F_SRV_ILIM] = IST("gauge"),
Christopher Faulet5df597a2019-11-08 15:05:31 +01001077 [ST_F_QT_MAX] = IST("gauge"),
1078 [ST_F_CT_MAX] = IST("gauge"),
1079 [ST_F_RT_MAX] = IST("gauge"),
1080 [ST_F_TT_MAX] = IST("gauge"),
Christopher Fauletf959d082019-02-07 15:38:42 +01001081};
1082
Christopher Faulet8e40fa22019-09-06 16:10:19 +02001083/* Return the server status: 0=DOWN, 1=UP, 2=MAINT, 3=DRAIN, 4=NOLB. */
Christopher Fauletf959d082019-02-07 15:38:42 +01001084static int promex_srv_status(struct server *sv)
1085{
Christopher Fauletf959d082019-02-07 15:38:42 +01001086 int state = 0;
1087
Christopher Fauletf959d082019-02-07 15:38:42 +01001088 if (sv->cur_state == SRV_ST_RUNNING || sv->cur_state == SRV_ST_STARTING) {
1089 state = 1;
1090 if (sv->cur_admin & SRV_ADMF_DRAIN)
Christopher Faulet8e40fa22019-09-06 16:10:19 +02001091 state = 3;
Christopher Fauletf959d082019-02-07 15:38:42 +01001092 }
Christopher Faulet8e40fa22019-09-06 16:10:19 +02001093 else if (sv->cur_state == SRV_ST_STOPPING)
1094 state = 4;
1095
1096 if (sv->cur_admin & SRV_ADMF_MAINT)
1097 state = 2;
Christopher Fauletf959d082019-02-07 15:38:42 +01001098
1099 return state;
1100}
1101
1102/* Convert a field to its string representation and write it in <out>, followed
1103 * by a newline, if there is enough space. non-numeric value are converted in
1104 * "Nan" because Prometheus only support numerical values (but it is unexepceted
1105 * to process this kind of value). It returns 1 on success. Otherwise, it
1106 * returns 0. The buffer's length must not exceed <max> value.
1107 */
1108static int promex_metric_to_str(struct buffer *out, struct field *f, size_t max)
1109{
1110 int ret = 0;
1111
1112 switch (field_format(f, 0)) {
1113 case FF_EMPTY: ret = chunk_strcat(out, "Nan\n"); break;
1114 case FF_S32: ret = chunk_appendf(out, "%d\n", f->u.s32); break;
1115 case FF_U32: ret = chunk_appendf(out, "%u\n", f->u.u32); break;
1116 case FF_S64: ret = chunk_appendf(out, "%lld\n", (long long)f->u.s64); break;
1117 case FF_U64: ret = chunk_appendf(out, "%llu\n", (unsigned long long)f->u.u64); break;
Christopher Faulete86bf652019-09-24 16:35:19 +02001118 case FF_FLT: ret = chunk_appendf(out, "%f\n", f->u.flt); break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001119 case FF_STR: ret = chunk_strcat(out, "Nan\n"); break;
1120 default: ret = chunk_strcat(out, "Nan\n"); break;
1121 }
1122 if (!ret || out->data > max)
1123 return 0;
1124 return 1;
1125}
1126
1127/* Concatenate the <prefix> with the field name using the array
1128 * <promex_st_metric_names> and store it in <name>. The field type is in
1129 * <appctx->st2>. This function never fails but relies on
1130 * <PROMEX_MAX_NAME_LEN>. So by sure the result is small enougth to be copied in
1131 * <name>
1132 */
1133static void promex_metric_name(struct appctx *appctx, struct ist *name, const struct ist prefix)
1134{
1135 const struct ist *names;
1136
1137 names = ((appctx->ctx.stats.flags & PROMEX_FL_INFO_METRIC)
1138 ? promex_inf_metric_names
1139 : promex_st_metric_names);
1140
1141 istcat(name, prefix, PROMEX_MAX_NAME_LEN);
1142 istcat(name, names[appctx->st2], PROMEX_MAX_NAME_LEN);
1143}
1144
1145/* Dump the header lines for <metric>. It is its #HELP and #TYPE strings. It
1146 * returns 1 on success. Otherwise, if <out> length exceeds <max>, it returns 0.
1147 */
1148static int promex_dump_metric_header(struct appctx *appctx, struct htx *htx,
1149 const struct ist name, struct ist *out, size_t max)
1150{
1151 const struct ist *desc, *types;
1152
1153 if (appctx->ctx.stats.flags & PROMEX_FL_INFO_METRIC) {
1154 desc = promex_inf_metric_desc;
1155 types = promex_inf_metric_types;
1156 }
1157 else {
1158 desc = promex_st_metric_desc;
1159 types = promex_st_metric_types;
1160 }
1161
Anthonin Bonnefoydd4e4ef2019-08-07 17:45:25 +02001162 if (istcat(out, ist("# HELP "), max) == -1 ||
Christopher Fauletf959d082019-02-07 15:38:42 +01001163 istcat(out, name, max) == -1 ||
1164 istcat(out, ist(" "), max) == -1 ||
1165 istcat(out, desc[appctx->st2], max) == -1 ||
Anthonin Bonnefoydd4e4ef2019-08-07 17:45:25 +02001166 istcat(out, ist("\n# TYPE "), max) == -1 ||
Christopher Fauletf959d082019-02-07 15:38:42 +01001167 istcat(out, name, max) == -1 ||
1168 istcat(out, ist(" "), max) == -1 ||
1169 istcat(out, types[appctx->st2], max) == -1 ||
1170 istcat(out, ist("\n"), max) == -1)
1171 goto full;
1172
1173 return 1;
1174
1175 full:
1176 return 0;
1177}
1178
1179/* Dump the line for <metric>. It starts by the metric name followed by its
1180 * labels (proxy name, server name...) between braces and finally its value. If
1181 * not already done, the header lines are dumped first. It returns 1 on
1182 * success. Otherwise if <out> length exceeds <max>, it returns 0.
1183 */
1184static int promex_dump_metric(struct appctx *appctx, struct htx *htx,
1185 const struct ist prefix, struct field *metric,
1186 struct ist *out, size_t max)
1187{
1188 struct ist name = { .ptr = (char[PROMEX_MAX_NAME_LEN]){ 0 }, .len = 0 };
1189 size_t len = out->len;
1190
1191 if (out->len + PROMEX_MAX_METRIC_LENGTH > max)
1192 return 0;
1193
1194 promex_metric_name(appctx, &name, prefix);
1195 if ((appctx->ctx.stats.flags & PROMEX_FL_METRIC_HDR) &&
1196 !promex_dump_metric_header(appctx, htx, name, out, max))
1197 goto full;
1198
1199 if (appctx->ctx.stats.flags & PROMEX_FL_INFO_METRIC) {
1200 const struct ist label = promex_inf_metric_labels[appctx->st2];
1201
1202 if (istcat(out, name, max) == -1 ||
1203 (label.len && istcat(out, ist("{"), max) == -1) ||
1204 (label.len && istcat(out, label, max) == -1) ||
1205 (label.len && istcat(out, ist("}"), max) == -1) ||
1206 istcat(out, ist(" "), max) == -1)
1207 goto full;
1208 }
1209 else {
1210 struct proxy *px = appctx->ctx.stats.px;
1211 struct server *srv = appctx->ctx.stats.sv;
1212 const struct ist label = promex_st_metric_labels[appctx->st2];
1213
1214 if (istcat(out, name, max) == -1 ||
1215 istcat(out, ist("{proxy=\""), max) == -1 ||
1216 istcat(out, ist2(px->id, strlen(px->id)), max) == -1 ||
1217 istcat(out, ist("\""), max) == -1 ||
1218 (srv && istcat(out, ist(",server=\""), max) == -1) ||
1219 (srv && istcat(out, ist2(srv->id, strlen(srv->id)), max) == -1) ||
1220 (srv && istcat(out, ist("\""), max) == -1) ||
1221 (label.len && istcat(out, ist(","), max) == -1) ||
1222 (label.len && istcat(out, label, max) == -1) ||
1223 istcat(out, ist("} "), max) == -1)
1224 goto full;
1225 }
1226
1227 trash.data = out->len;
1228 if (!promex_metric_to_str(&trash, metric, max))
1229 goto full;
1230 out->len = trash.data;
1231
1232 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1233 return 1;
1234 full:
1235 // Restore previous length
1236 out->len = len;
1237 return 0;
1238
1239}
1240
1241
1242/* Dump global metrics (prefixed by "haproxy_process_"). It returns 1 on sucess,
1243 * 0 if <htx> is full and -1 in case of any error. */
1244static int promex_dump_global_metrics(struct appctx *appctx, struct htx *htx)
1245{
1246 static struct ist prefix = IST("haproxy_process_");
1247 struct field metric;
1248 struct channel *chn = si_ic(appctx->owner);
1249 struct ist out = ist2(trash.area, 0);
Christopher Faulet94d837e2019-07-03 11:43:17 +02001250 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
Christopher Fauletf959d082019-02-07 15:38:42 +01001251 int ret = 1;
1252
1253#ifdef USE_OPENSSL
1254 int ssl_sess_rate = read_freq_ctr(&global.ssl_per_sec);
1255 int ssl_key_rate = read_freq_ctr(&global.ssl_fe_keys_per_sec);
1256 int ssl_reuse = 0;
1257
1258 if (ssl_key_rate < ssl_sess_rate) {
1259 /* count the ssl reuse ratio and avoid overflows in both directions */
1260 ssl_reuse = 100 - (100 * ssl_key_rate + (ssl_sess_rate - 1) / 2) / ssl_sess_rate;
1261 }
1262#endif
Christopher Fauletf959d082019-02-07 15:38:42 +01001263 while (appctx->st2 && appctx->st2 < INF_TOTAL_FIELDS) {
1264 switch (appctx->st2) {
1265 case INF_NBTHREAD:
1266 metric = mkf_u32(FO_CONFIG|FS_SERVICE, global.nbthread);
1267 break;
1268 case INF_NBPROC:
1269 metric = mkf_u32(FO_CONFIG|FS_SERVICE, global.nbproc);
1270 break;
1271 case INF_PROCESS_NUM:
1272 metric = mkf_u32(FO_KEY, relative_pid);
1273 break;
1274 case INF_UPTIME_SEC:
Christopher Faulet8c8e4b12019-04-18 10:15:15 +02001275 metric = mkf_u32(FN_DURATION, start_date.tv_sec);
Christopher Fauletf959d082019-02-07 15:38:42 +01001276 break;
1277 case INF_MEMMAX_MB:
Christopher Faulet8c8e4b12019-04-18 10:15:15 +02001278 metric = mkf_u64(FO_CONFIG|FN_LIMIT, global.rlimit_memmax * 1048576L);
Christopher Fauletf959d082019-02-07 15:38:42 +01001279 break;
1280 case INF_POOL_ALLOC_MB:
Christopher Faulet8c8e4b12019-04-18 10:15:15 +02001281 metric = mkf_u64(0, pool_total_allocated());
Christopher Fauletf959d082019-02-07 15:38:42 +01001282 break;
1283 case INF_POOL_USED_MB:
Christopher Faulet8c8e4b12019-04-18 10:15:15 +02001284 metric = mkf_u64(0, pool_total_used());
Christopher Fauletf959d082019-02-07 15:38:42 +01001285 break;
1286 case INF_POOL_FAILED:
1287 metric = mkf_u32(FN_COUNTER, pool_total_failures());
1288 break;
1289 case INF_ULIMIT_N:
1290 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_nofile);
1291 break;
1292 case INF_MAXSOCK:
1293 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxsock);
1294 break;
1295 case INF_MAXCONN:
1296 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxconn);
1297 break;
1298 case INF_HARD_MAXCONN:
1299 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.hardmaxconn);
1300 break;
1301 case INF_CURR_CONN:
1302 metric = mkf_u32(0, actconn);
1303 break;
1304 case INF_CUM_CONN:
1305 metric = mkf_u32(FN_COUNTER, totalconn);
1306 break;
1307 case INF_CUM_REQ:
1308 metric = mkf_u32(FN_COUNTER, global.req_count);
1309 break;
1310#ifdef USE_OPENSSL
1311 case INF_MAX_SSL_CONNS:
1312 metric = mkf_u32(FN_MAX, global.maxsslconn);
1313 break;
1314 case INF_CURR_SSL_CONNS:
1315 metric = mkf_u32(0, sslconns);
1316 break;
1317 case INF_CUM_SSL_CONNS:
1318 metric = mkf_u32(FN_COUNTER, totalsslconns);
1319 break;
1320#endif
1321 case INF_MAXPIPES:
1322 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxpipes);
1323 break;
1324 case INF_PIPES_USED:
1325 metric = mkf_u32(0, pipes_used);
1326 break;
1327 case INF_PIPES_FREE:
1328 metric = mkf_u32(0, pipes_free);
1329 break;
1330 case INF_CONN_RATE:
1331 metric = mkf_u32(FN_RATE, read_freq_ctr(&global.conn_per_sec));
1332 break;
1333 case INF_CONN_RATE_LIMIT:
1334 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.cps_lim);
1335 break;
1336 case INF_MAX_CONN_RATE:
1337 metric = mkf_u32(FN_MAX, global.cps_max);
1338 break;
1339 case INF_SESS_RATE:
1340 metric = mkf_u32(FN_RATE, read_freq_ctr(&global.sess_per_sec));
1341 break;
1342 case INF_SESS_RATE_LIMIT:
1343 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.sps_lim);
1344 break;
1345 case INF_MAX_SESS_RATE:
1346 metric = mkf_u32(FN_RATE, global.sps_max);
1347 break;
1348#ifdef USE_OPENSSL
1349 case INF_SSL_RATE:
1350 metric = mkf_u32(FN_RATE, ssl_sess_rate);
1351 break;
1352 case INF_SSL_RATE_LIMIT:
1353 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.ssl_lim);
1354 break;
1355 case INF_MAX_SSL_RATE:
1356 metric = mkf_u32(FN_MAX, global.ssl_max);
1357 break;
1358 case INF_SSL_FRONTEND_KEY_RATE:
1359 metric = mkf_u32(0, ssl_key_rate);
1360 break;
1361 case INF_SSL_FRONTEND_MAX_KEY_RATE:
1362 metric = mkf_u32(FN_MAX, global.ssl_fe_keys_max);
1363 break;
1364 case INF_SSL_FRONTEND_SESSION_REUSE_PCT:
1365 metric = mkf_u32(0, ssl_reuse);
1366 break;
1367 case INF_SSL_BACKEND_KEY_RATE:
1368 metric = mkf_u32(FN_RATE, read_freq_ctr(&global.ssl_be_keys_per_sec));
1369 break;
1370 case INF_SSL_BACKEND_MAX_KEY_RATE:
1371 metric = mkf_u32(FN_MAX, global.ssl_be_keys_max);
1372 break;
1373 case INF_SSL_CACHE_LOOKUPS:
1374 metric = mkf_u32(FN_COUNTER, global.shctx_lookups);
1375 break;
1376 case INF_SSL_CACHE_MISSES:
1377 metric = mkf_u32(FN_COUNTER, global.shctx_misses);
1378 break;
1379#endif
1380 case INF_COMPRESS_BPS_IN:
1381 metric = mkf_u32(FN_RATE, read_freq_ctr(&global.comp_bps_in));
1382 break;
1383 case INF_COMPRESS_BPS_OUT:
1384 metric = mkf_u32(FN_RATE, read_freq_ctr(&global.comp_bps_out));
1385 break;
1386 case INF_COMPRESS_BPS_RATE_LIM:
1387 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.comp_rate_lim);
1388 break;
1389#ifdef USE_ZLIB
1390 case INF_ZLIB_MEM_USAGE:
1391 metric = mkf_u32(0, zlib_used_memory);
1392 break;
1393 case INF_MAX_ZLIB_MEM_USAGE:
1394 metric = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxzlibmem);
1395 break;
1396#endif
1397 case INF_TASKS:
1398 metric = mkf_u32(0, nb_tasks_cur);
1399 break;
1400 case INF_RUN_QUEUE:
1401 metric = mkf_u32(0, tasks_run_queue_cur);
1402 break;
1403 case INF_IDLE_PCT:
Willy Tarreau76824a82019-06-02 10:38:48 +02001404 metric = mkf_u32(FN_AVG, ti->idle_pct);
Christopher Fauletf959d082019-02-07 15:38:42 +01001405 break;
1406 case INF_STOPPING:
1407 metric = mkf_u32(0, stopping);
1408 break;
1409 case INF_JOBS:
1410 metric = mkf_u32(0, jobs);
1411 break;
1412 case INF_UNSTOPPABLE_JOBS:
1413 metric = mkf_u32(0, unstoppable_jobs);
1414 break;
1415 case INF_LISTENERS:
1416 metric = mkf_u32(0, listeners);
1417 break;
1418 case INF_ACTIVE_PEERS:
1419 metric = mkf_u32(0, active_peers);
1420 break;
1421 case INF_CONNECTED_PEERS:
1422 metric = mkf_u32(0, connected_peers);
1423 break;
1424 case INF_DROPPED_LOGS:
1425 metric = mkf_u32(0, dropped_logs);
1426 break;
1427 case INF_BUSY_POLLING:
1428 metric = mkf_u32(0, !!(global.tune.options & GTUNE_BUSY_POLLING));
1429 break;
1430
1431 default:
1432 goto next_metric;
1433 }
1434
1435 if (!promex_dump_metric(appctx, htx, prefix, &metric, &out, max))
1436 goto full;
1437
1438 next_metric:
1439 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
1440 appctx->st2 = promex_global_metrics[appctx->st2];
1441 }
1442
1443 end:
Christopher Faulet0f58c0b2019-07-04 10:03:28 +02001444 if (out.len) {
1445 if (!htx_add_data_atonce(htx, out))
1446 return -1; /* Unexpected and unrecoverable error */
1447 channel_add_input(chn, out.len);
1448 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001449 return ret;
1450 full:
1451 ret = 0;
1452 goto end;
1453}
1454
1455/* Dump frontends metrics (prefixed by "haproxy_frontend_"). It returns 1 on sucess,
1456 * 0 if <htx> is full and -1 in case of any error. */
1457static int promex_dump_front_metrics(struct appctx *appctx, struct htx *htx)
1458{
1459 static struct ist prefix = IST("haproxy_frontend_");
1460 struct proxy *px;
1461 struct field metric;
1462 struct channel *chn = si_ic(appctx->owner);
1463 struct ist out = ist2(trash.area, 0);
Christopher Faulet94d837e2019-07-03 11:43:17 +02001464 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
Christopher Fauletf959d082019-02-07 15:38:42 +01001465 int ret = 1;
1466
1467 while (appctx->st2 && appctx->st2 < ST_F_TOTAL_FIELDS) {
1468 while (appctx->ctx.stats.px) {
1469 px = appctx->ctx.stats.px;
1470
1471 /* skip the disabled proxies, global frontend and non-networked ones */
1472 if (px->state == PR_STSTOPPED || px->uuid <= 0 || !(px->cap & PR_CAP_FE))
1473 goto next_px;
1474
1475 switch (appctx->st2) {
1476 case ST_F_STATUS:
1477 metric = mkf_u32(FO_STATUS, px->state == PR_STREADY ? 1 : px->state == PR_STFULL ? 2 : 0);
1478 break;
1479 case ST_F_SCUR:
1480 metric = mkf_u32(0, px->feconn);
1481 break;
1482 case ST_F_SMAX:
1483 metric = mkf_u32(FN_MAX, px->fe_counters.conn_max);
1484 break;
1485 case ST_F_SLIM:
1486 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->maxconn);
1487 break;
1488 case ST_F_STOT:
1489 metric = mkf_u64(FN_COUNTER, px->fe_counters.cum_sess);
1490 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001491 case ST_F_RATE_LIM:
1492 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->fe_sps_lim);
1493 break;
1494 case ST_F_RATE_MAX:
1495 metric = mkf_u32(FN_MAX, px->fe_counters.sps_max);
1496 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001497 case ST_F_CONN_RATE_MAX:
1498 metric = mkf_u32(FN_MAX, px->fe_counters.cps_max);
1499 break;
1500 case ST_F_CONN_TOT:
1501 metric = mkf_u64(FN_COUNTER, px->fe_counters.cum_conn);
1502 break;
1503 case ST_F_BIN:
1504 metric = mkf_u64(FN_COUNTER, px->fe_counters.bytes_in);
1505 break;
1506 case ST_F_BOUT:
1507 metric = mkf_u64(FN_COUNTER, px->fe_counters.bytes_out);
1508 break;
1509 case ST_F_DREQ:
1510 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_req);
1511 break;
1512 case ST_F_DRESP:
1513 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_resp);
1514 break;
1515 case ST_F_EREQ:
1516 metric = mkf_u64(FN_COUNTER, px->fe_counters.failed_req);
1517 break;
1518 case ST_F_DCON:
1519 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_conn);
1520 break;
1521 case ST_F_DSES:
1522 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_sess);
1523 break;
1524 case ST_F_WREW:
1525 metric = mkf_u64(FN_COUNTER, px->fe_counters.failed_rewrites);
1526 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001527 case ST_F_REQ_RATE_MAX:
1528 if (px->mode != PR_MODE_HTTP)
1529 goto next_px;
1530 metric = mkf_u32(FN_MAX, px->fe_counters.p.http.rps_max);
1531 break;
1532 case ST_F_REQ_TOT:
1533 if (px->mode != PR_MODE_HTTP)
1534 goto next_px;
1535 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cum_req);
1536 break;
1537 case ST_F_HRSP_1XX:
1538 if (px->mode != PR_MODE_HTTP)
1539 goto next_px;
1540 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[1]);
1541 break;
1542 case ST_F_HRSP_2XX:
1543 if (px->mode != PR_MODE_HTTP)
1544 goto next_px;
1545 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1546 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[2]);
1547 break;
1548 case ST_F_HRSP_3XX:
1549 if (px->mode != PR_MODE_HTTP)
1550 goto next_px;
1551 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1552 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[3]);
1553 break;
1554 case ST_F_HRSP_4XX:
1555 if (px->mode != PR_MODE_HTTP)
1556 goto next_px;
1557 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1558 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[4]);
1559 break;
1560 case ST_F_HRSP_5XX:
1561 if (px->mode != PR_MODE_HTTP)
1562 goto next_px;
1563 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1564 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[5]);
1565 break;
1566 case ST_F_HRSP_OTHER:
1567 if (px->mode != PR_MODE_HTTP)
1568 goto next_px;
1569 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1570 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[0]);
1571 break;
1572 case ST_F_INTERCEPTED:
1573 if (px->mode != PR_MODE_HTTP)
1574 goto next_px;
1575 metric = mkf_u64(FN_COUNTER, px->fe_counters.intercepted_req);
1576 break;
1577 case ST_F_CACHE_LOOKUPS:
1578 if (px->mode != PR_MODE_HTTP)
1579 goto next_px;
1580 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cache_lookups);
1581 break;
1582 case ST_F_CACHE_HITS:
1583 if (px->mode != PR_MODE_HTTP)
1584 goto next_px;
1585 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cache_hits);
1586 break;
1587 case ST_F_COMP_IN:
1588 if (px->mode != PR_MODE_HTTP)
1589 goto next_px;
1590 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_in);
1591 break;
1592 case ST_F_COMP_OUT:
1593 if (px->mode != PR_MODE_HTTP)
1594 goto next_px;
1595 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_out);
1596 break;
1597 case ST_F_COMP_BYP:
1598 if (px->mode != PR_MODE_HTTP)
1599 goto next_px;
1600 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_byp);
1601 break;
1602 case ST_F_COMP_RSP:
1603 if (px->mode != PR_MODE_HTTP)
1604 goto next_px;
1605 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.comp_rsp);
1606 break;
1607
1608 default:
1609 goto next_metric;
1610 }
1611
1612 if (!promex_dump_metric(appctx, htx, prefix, &metric, &out, max))
1613 goto full;
1614 next_px:
1615 appctx->ctx.stats.px = px->next;
1616 }
1617 next_metric:
1618 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
1619 appctx->ctx.stats.px = proxies_list;
1620 appctx->st2 = promex_front_metrics[appctx->st2];
1621 }
1622
1623 end:
Christopher Faulet0f58c0b2019-07-04 10:03:28 +02001624 if (out.len) {
1625 if (!htx_add_data_atonce(htx, out))
1626 return -1; /* Unexpected and unrecoverable error */
1627 channel_add_input(chn, out.len);
1628 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001629 return ret;
1630 full:
1631 ret = 0;
1632 goto end;
1633}
1634
1635/* Dump backends metrics (prefixed by "haproxy_backend_"). It returns 1 on sucess,
1636 * 0 if <htx> is full and -1 in case of any error. */
1637static int promex_dump_back_metrics(struct appctx *appctx, struct htx *htx)
1638{
1639 static struct ist prefix = IST("haproxy_backend_");
1640 struct proxy *px;
1641 struct field metric;
1642 struct channel *chn = si_ic(appctx->owner);
1643 struct ist out = ist2(trash.area, 0);
Christopher Faulet94d837e2019-07-03 11:43:17 +02001644 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
Christopher Fauletf959d082019-02-07 15:38:42 +01001645 int ret = 1;
1646 uint32_t weight;
Christopher Faulete86bf652019-09-24 16:35:19 +02001647 double secs;
Christopher Fauletf959d082019-02-07 15:38:42 +01001648
1649 while (appctx->st2 && appctx->st2 < ST_F_TOTAL_FIELDS) {
1650 while (appctx->ctx.stats.px) {
1651 px = appctx->ctx.stats.px;
1652
1653 /* skip the disabled proxies, global frontend and non-networked ones */
1654 if (px->state == PR_STSTOPPED || px->uuid <= 0 || !(px->cap & PR_CAP_BE))
1655 goto next_px;
1656
1657 switch (appctx->st2) {
1658 case ST_F_STATUS:
1659 metric = mkf_u32(FO_STATUS, (px->lbprm.tot_weight > 0 || !px->srv) ? 1 : 0);
1660 break;
1661 case ST_F_SCUR:
1662 metric = mkf_u32(0, px->beconn);
1663 break;
1664 case ST_F_SMAX:
1665 metric = mkf_u32(FN_MAX, px->be_counters.conn_max);
1666 break;
1667 case ST_F_SLIM:
1668 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->fullconn);
1669 break;
1670 case ST_F_STOT:
1671 metric = mkf_u64(FN_COUNTER, px->be_counters.cum_conn);
1672 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001673 case ST_F_RATE_MAX:
1674 metric = mkf_u32(0, px->be_counters.sps_max);
1675 break;
1676 case ST_F_LASTSESS:
1677 metric = mkf_s32(FN_AGE, be_lastsession(px));
1678 break;
1679 case ST_F_QCUR:
1680 metric = mkf_u32(0, px->nbpend);
1681 break;
1682 case ST_F_QMAX:
1683 metric = mkf_u32(FN_MAX, px->be_counters.nbpend_max);
1684 break;
1685 case ST_F_CONNECT:
1686 metric = mkf_u64(FN_COUNTER, px->be_counters.connect);
1687 break;
1688 case ST_F_REUSE:
1689 metric = mkf_u64(FN_COUNTER, px->be_counters.reuse);
1690 break;
1691 case ST_F_BIN:
1692 metric = mkf_u64(FN_COUNTER, px->be_counters.bytes_in);
1693 break;
1694 case ST_F_BOUT:
1695 metric = mkf_u64(FN_COUNTER, px->be_counters.bytes_out);
1696 break;
1697 case ST_F_QTIME:
Christopher Faulete86bf652019-09-24 16:35:19 +02001698 secs = (double)swrate_avg(px->be_counters.q_time, TIME_STATS_SAMPLES) / 1000.0;
1699 metric = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001700 break;
1701 case ST_F_CTIME:
Christopher Faulete86bf652019-09-24 16:35:19 +02001702 secs = (double)swrate_avg(px->be_counters.c_time, TIME_STATS_SAMPLES) / 1000.0;
1703 metric = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001704 break;
1705 case ST_F_RTIME:
Christopher Faulete86bf652019-09-24 16:35:19 +02001706 secs = (double)swrate_avg(px->be_counters.d_time, TIME_STATS_SAMPLES) / 1000.0;
1707 metric = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001708 break;
1709 case ST_F_TTIME:
Christopher Faulete86bf652019-09-24 16:35:19 +02001710 secs = (double)swrate_avg(px->be_counters.t_time, TIME_STATS_SAMPLES) / 1000.0;
1711 metric = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001712 break;
Christopher Faulet5df597a2019-11-08 15:05:31 +01001713 case ST_F_QT_MAX:
1714 secs = (double)px->be_counters.qtime_max / 1000.0;
1715 metric = mkf_flt(FN_MAX, secs);
1716 break;
1717 case ST_F_CT_MAX:
1718 secs = (double)px->be_counters.ctime_max / 1000.0;
1719 metric = mkf_flt(FN_MAX, secs);
1720 break;
1721 case ST_F_RT_MAX:
1722 secs = (double)px->be_counters.dtime_max / 1000.0;
1723 metric = mkf_flt(FN_MAX, secs);
1724 break;
1725 case ST_F_TT_MAX:
1726 secs = (double)px->be_counters.ttime_max / 1000.0;
1727 metric = mkf_flt(FN_MAX, secs);
1728 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001729 case ST_F_DREQ:
1730 metric = mkf_u64(FN_COUNTER, px->be_counters.denied_req);
1731 break;
1732 case ST_F_DRESP:
1733 metric = mkf_u64(FN_COUNTER, px->be_counters.denied_resp);
1734 break;
1735 case ST_F_ECON:
1736 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_conns);
1737 break;
1738 case ST_F_ERESP:
1739 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_resp);
1740 break;
1741 case ST_F_WRETR:
1742 metric = mkf_u64(FN_COUNTER, px->be_counters.retries);
1743 break;
1744 case ST_F_WREDIS:
1745 metric = mkf_u64(FN_COUNTER, px->be_counters.redispatches);
1746 break;
1747 case ST_F_WREW:
1748 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_rewrites);
1749 break;
1750 case ST_F_CLI_ABRT:
1751 metric = mkf_u64(FN_COUNTER, px->be_counters.cli_aborts);
1752 break;
1753 case ST_F_SRV_ABRT:
1754 metric = mkf_u64(FN_COUNTER, px->be_counters.srv_aborts);
1755 break;
1756 case ST_F_WEIGHT:
1757 weight = (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv;
1758 metric = mkf_u32(FN_AVG, weight);
1759 break;
1760 case ST_F_ACT:
1761 metric = mkf_u32(0, px->srv_act);
1762 break;
1763 case ST_F_BCK:
1764 metric = mkf_u32(0, px->srv_bck);
1765 break;
1766 case ST_F_CHKDOWN:
1767 metric = mkf_u64(FN_COUNTER, px->down_trans);
1768 break;
1769 case ST_F_LASTCHG:
1770 metric = mkf_u32(FN_AGE, now.tv_sec - px->last_change);
1771 break;
1772 case ST_F_DOWNTIME:
1773 metric = mkf_u32(FN_COUNTER, be_downtime(px));
1774 break;
1775 case ST_F_LBTOT:
1776 metric = mkf_u64(FN_COUNTER, px->be_counters.cum_lbconn);
1777 break;
1778 case ST_F_REQ_TOT:
1779 if (px->mode != PR_MODE_HTTP)
1780 goto next_px;
1781 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cum_req);
1782 break;
1783 case ST_F_HRSP_1XX:
1784 if (px->mode != PR_MODE_HTTP)
1785 goto next_px;
1786 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[1]);
1787 break;
1788 case ST_F_HRSP_2XX:
1789 if (px->mode != PR_MODE_HTTP)
1790 goto next_px;
1791 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1792 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[2]);
1793 break;
1794 case ST_F_HRSP_3XX:
1795 if (px->mode != PR_MODE_HTTP)
1796 goto next_px;
1797 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1798 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[3]);
1799 break;
1800 case ST_F_HRSP_4XX:
1801 if (px->mode != PR_MODE_HTTP)
1802 goto next_px;
1803 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1804 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[4]);
1805 break;
1806 case ST_F_HRSP_5XX:
1807 if (px->mode != PR_MODE_HTTP)
1808 goto next_px;
1809 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1810 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[5]);
1811 break;
1812 case ST_F_HRSP_OTHER:
1813 if (px->mode != PR_MODE_HTTP)
1814 goto next_px;
1815 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
1816 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[0]);
1817 break;
1818 case ST_F_CACHE_LOOKUPS:
1819 if (px->mode != PR_MODE_HTTP)
1820 goto next_px;
1821 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_lookups);
1822 break;
1823 case ST_F_CACHE_HITS:
1824 if (px->mode != PR_MODE_HTTP)
1825 goto next_px;
1826 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_hits);
1827 break;
1828 case ST_F_COMP_IN:
1829 if (px->mode != PR_MODE_HTTP)
1830 goto next_px;
1831 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_in);
1832 break;
1833 case ST_F_COMP_OUT:
1834 if (px->mode != PR_MODE_HTTP)
1835 goto next_px;
1836 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_out);
1837 break;
1838 case ST_F_COMP_BYP:
1839 if (px->mode != PR_MODE_HTTP)
1840 goto next_px;
1841 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_byp);
1842 break;
1843 case ST_F_COMP_RSP:
1844 if (px->mode != PR_MODE_HTTP)
1845 goto next_px;
1846 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.comp_rsp);
1847 break;
1848
1849 default:
1850 goto next_metric;
1851 }
1852
1853 if (!promex_dump_metric(appctx, htx, prefix, &metric, &out, max))
1854 goto full;
1855 next_px:
1856 appctx->ctx.stats.px = px->next;
1857 }
1858 next_metric:
1859 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
1860 appctx->ctx.stats.px = proxies_list;
1861 appctx->st2 = promex_back_metrics[appctx->st2];
1862 }
1863
1864 end:
Christopher Faulet0f58c0b2019-07-04 10:03:28 +02001865 if (out.len) {
1866 if (!htx_add_data_atonce(htx, out))
1867 return -1; /* Unexpected and unrecoverable error */
1868 channel_add_input(chn, out.len);
1869 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001870 return ret;
1871 full:
1872 ret = 0;
1873 goto end;
1874}
1875
1876/* Dump servers metrics (prefixed by "haproxy_server_"). It returns 1 on sucess,
1877 * 0 if <htx> is full and -1 in case of any error. */
1878static int promex_dump_srv_metrics(struct appctx *appctx, struct htx *htx)
1879{
1880 static struct ist prefix = IST("haproxy_server_");
1881 struct proxy *px;
1882 struct server *sv;
1883 struct field metric;
1884 struct channel *chn = si_ic(appctx->owner);
1885 struct ist out = ist2(trash.area, 0);
Christopher Faulet94d837e2019-07-03 11:43:17 +02001886 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
Christopher Fauletf959d082019-02-07 15:38:42 +01001887 int ret = 1;
1888 uint32_t weight;
Christopher Faulete86bf652019-09-24 16:35:19 +02001889 double secs;
Christopher Fauletf959d082019-02-07 15:38:42 +01001890
1891 while (appctx->st2 && appctx->st2 < ST_F_TOTAL_FIELDS) {
1892 while (appctx->ctx.stats.px) {
1893 px = appctx->ctx.stats.px;
1894
1895 /* skip the disabled proxies, global frontend and non-networked ones */
1896 if (px->state == PR_STSTOPPED || px->uuid <= 0 || !(px->cap & PR_CAP_BE))
1897 goto next_px;
1898
1899 while (appctx->ctx.stats.sv) {
1900 sv = appctx->ctx.stats.sv;
1901
1902 switch (appctx->st2) {
1903 case ST_F_STATUS:
1904 metric = mkf_u32(FO_STATUS, promex_srv_status(sv));
1905 break;
1906 case ST_F_SCUR:
1907 metric = mkf_u32(0, sv->cur_sess);
1908 break;
1909 case ST_F_SMAX:
1910 metric = mkf_u32(FN_MAX, sv->counters.cur_sess_max);
1911 break;
1912 case ST_F_SLIM:
1913 metric = mkf_u32(FO_CONFIG|FN_LIMIT, sv->maxconn);
1914 break;
1915 case ST_F_STOT:
1916 metric = mkf_u64(FN_COUNTER, sv->counters.cum_sess);
1917 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001918 case ST_F_RATE_MAX:
1919 metric = mkf_u32(FN_MAX, sv->counters.sps_max);
1920 break;
1921 case ST_F_LASTSESS:
1922 metric = mkf_s32(FN_AGE, srv_lastsession(sv));
1923 break;
1924 case ST_F_QCUR:
1925 metric = mkf_u32(0, sv->nbpend);
1926 break;
1927 case ST_F_QMAX:
1928 metric = mkf_u32(FN_MAX, sv->counters.nbpend_max);
1929 break;
1930 case ST_F_QLIMIT:
1931 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->maxqueue);
1932 break;
1933 case ST_F_BIN:
1934 metric = mkf_u64(FN_COUNTER, sv->counters.bytes_in);
1935 break;
1936 case ST_F_BOUT:
1937 metric = mkf_u64(FN_COUNTER, sv->counters.bytes_out);
1938 break;
1939 case ST_F_QTIME:
Christopher Faulete86bf652019-09-24 16:35:19 +02001940 secs = (double)swrate_avg(sv->counters.q_time, TIME_STATS_SAMPLES) / 1000.0;
1941 metric = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001942 break;
1943 case ST_F_CTIME:
Christopher Faulete86bf652019-09-24 16:35:19 +02001944 secs = (double)swrate_avg(sv->counters.c_time, TIME_STATS_SAMPLES) / 1000.0;
1945 metric = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001946 break;
1947 case ST_F_RTIME:
Christopher Faulete86bf652019-09-24 16:35:19 +02001948 secs = (double)swrate_avg(sv->counters.d_time, TIME_STATS_SAMPLES) / 1000.0;
1949 metric = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001950 break;
1951 case ST_F_TTIME:
Christopher Faulete86bf652019-09-24 16:35:19 +02001952 secs = (double)swrate_avg(sv->counters.t_time, TIME_STATS_SAMPLES) / 1000.0;
1953 metric = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001954 break;
Christopher Faulet5df597a2019-11-08 15:05:31 +01001955 case ST_F_QT_MAX:
1956 secs = (double)sv->counters.qtime_max / 1000.0;
1957 metric = mkf_flt(FN_MAX, secs);
1958 break;
1959 case ST_F_CT_MAX:
1960 secs = (double)sv->counters.ctime_max / 1000.0;
1961 metric = mkf_flt(FN_MAX, secs);
1962 break;
1963 case ST_F_RT_MAX:
1964 secs = (double)sv->counters.dtime_max / 1000.0;
1965 metric = mkf_flt(FN_MAX, secs);
1966 break;
1967 case ST_F_TT_MAX:
1968 secs = (double)sv->counters.ttime_max / 1000.0;
1969 metric = mkf_flt(FN_MAX, secs);
1970 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001971 case ST_F_CONNECT:
1972 metric = mkf_u64(FN_COUNTER, sv->counters.connect);
1973 break;
1974 case ST_F_REUSE:
1975 metric = mkf_u64(FN_COUNTER, sv->counters.reuse);
1976 break;
1977 case ST_F_DRESP:
1978 metric = mkf_u64(FN_COUNTER, sv->counters.failed_secu);
1979 break;
1980 case ST_F_ECON:
1981 metric = mkf_u64(FN_COUNTER, sv->counters.failed_conns);
1982 break;
1983 case ST_F_ERESP:
1984 metric = mkf_u64(FN_COUNTER, sv->counters.failed_resp);
1985 break;
1986 case ST_F_WRETR:
1987 metric = mkf_u64(FN_COUNTER, sv->counters.retries);
1988 break;
1989 case ST_F_WREDIS:
1990 metric = mkf_u64(FN_COUNTER, sv->counters.redispatches);
1991 break;
1992 case ST_F_WREW:
1993 metric = mkf_u64(FN_COUNTER, sv->counters.failed_rewrites);
1994 break;
1995 case ST_F_CLI_ABRT:
1996 metric = mkf_u64(FN_COUNTER, sv->counters.cli_aborts);
1997 break;
1998 case ST_F_SRV_ABRT:
1999 metric = mkf_u64(FN_COUNTER, sv->counters.srv_aborts);
2000 break;
2001 case ST_F_WEIGHT:
2002 weight = (sv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv;
2003 metric = mkf_u32(FN_AVG, weight);
2004 break;
2005 case ST_F_CHKFAIL:
2006 metric = mkf_u64(FN_COUNTER, sv->counters.failed_checks);
2007 break;
2008 case ST_F_CHKDOWN:
2009 metric = mkf_u64(FN_COUNTER, sv->counters.down_trans);
2010 break;
2011 case ST_F_DOWNTIME:
2012 metric = mkf_u32(FN_COUNTER, srv_downtime(sv));
2013 break;
2014 case ST_F_LASTCHG:
2015 metric = mkf_u32(FN_AGE, now.tv_sec - sv->last_change);
2016 break;
2017 case ST_F_THROTTLE:
2018 metric = mkf_u32(FN_AVG, server_throttle_rate(sv));
2019 break;
2020 case ST_F_LBTOT:
2021 metric = mkf_u64(FN_COUNTER, sv->counters.cum_lbconn);
2022 break;
2023 case ST_F_HRSP_1XX:
2024 if (px->mode != PR_MODE_HTTP)
2025 goto next_px;
2026 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[1]);
2027 break;
2028 case ST_F_HRSP_2XX:
2029 if (px->mode != PR_MODE_HTTP)
2030 goto next_px;
2031 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
2032 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[2]);
2033 break;
2034 case ST_F_HRSP_3XX:
2035 if (px->mode != PR_MODE_HTTP)
2036 goto next_px;
2037 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
2038 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[3]);
2039 break;
2040 case ST_F_HRSP_4XX:
2041 if (px->mode != PR_MODE_HTTP)
2042 goto next_px;
2043 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
2044 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[4]);
2045 break;
2046 case ST_F_HRSP_5XX:
2047 if (px->mode != PR_MODE_HTTP)
2048 goto next_px;
2049 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
2050 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[5]);
2051 break;
2052 case ST_F_HRSP_OTHER:
2053 if (px->mode != PR_MODE_HTTP)
2054 goto next_px;
2055 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
2056 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[0]);
2057 break;
Christopher Fauletbd767f72019-11-08 15:24:32 +01002058 case ST_F_SRV_ICUR:
2059 metric = mkf_u32(0, sv->curr_idle_conns);
2060 break;
2061 case ST_F_SRV_ILIM:
2062 metric = mkf_u32(FO_CONFIG|FN_LIMIT, (sv->max_idle_conns == -1) ? 0 : sv->max_idle_conns);
2063 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01002064
2065 default:
2066 goto next_metric;
2067 }
2068
2069 if (!promex_dump_metric(appctx, htx, prefix, &metric, &out, max))
2070 goto full;
2071
2072 appctx->ctx.stats.sv = sv->next;
2073 }
2074
2075 next_px:
2076 appctx->ctx.stats.px = px->next;
2077 appctx->ctx.stats.sv = (appctx->ctx.stats.px ? appctx->ctx.stats.px->srv : NULL);
2078 }
2079 next_metric:
2080 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
2081 appctx->ctx.stats.px = proxies_list;
2082 appctx->ctx.stats.sv = (appctx->ctx.stats.px ? appctx->ctx.stats.px->srv : NULL);
2083 appctx->st2 = promex_srv_metrics[appctx->st2];
2084 }
2085
2086
2087 end:
Christopher Faulet0f58c0b2019-07-04 10:03:28 +02002088 if (out.len) {
2089 if (!htx_add_data_atonce(htx, out))
2090 return -1; /* Unexpected and unrecoverable error */
2091 channel_add_input(chn, out.len);
2092 }
Christopher Fauletf959d082019-02-07 15:38:42 +01002093 return ret;
2094 full:
2095 ret = 0;
2096 goto end;
2097}
2098
2099/* Dump all metrics (global, frontends, backends and servers) depending on the
2100 * dumper state (appctx->st1). It returns 1 on success, 0 if <htx> is full and
2101 * -1 in case of any error. */
2102static int promex_dump_metrics(struct appctx *appctx, struct stream_interface *si, struct htx *htx)
2103{
2104 int ret;
2105
2106 switch (appctx->st1) {
2107 case PROMEX_DUMPER_INIT:
2108 appctx->ctx.stats.px = NULL;
2109 appctx->ctx.stats.sv = NULL;
2110 appctx->ctx.stats.flags = (PROMEX_FL_METRIC_HDR|PROMEX_FL_INFO_METRIC);
2111 appctx->st2 = promex_global_metrics[INF_NAME];
2112 appctx->st1 = PROMEX_DUMPER_GLOBAL;
2113 /* fall through */
2114
2115 case PROMEX_DUMPER_GLOBAL:
2116 ret = promex_dump_global_metrics(appctx, htx);
2117 if (ret <= 0) {
2118 if (ret == -1)
2119 goto error;
2120 goto full;
2121 }
2122
2123 appctx->ctx.stats.px = proxies_list;
2124 appctx->ctx.stats.sv = NULL;
2125 appctx->ctx.stats.flags = (PROMEX_FL_METRIC_HDR|PROMEX_FL_STATS_METRIC);
2126 appctx->st2 = promex_front_metrics[ST_F_PXNAME];
2127 appctx->st1 = PROMEX_DUMPER_FRONT;
2128 /* fall through */
2129
2130 case PROMEX_DUMPER_FRONT:
2131 ret = promex_dump_front_metrics(appctx, htx);
2132 if (ret <= 0) {
2133 if (ret == -1)
2134 goto error;
2135 goto full;
2136 }
2137
2138 appctx->ctx.stats.px = proxies_list;
2139 appctx->ctx.stats.sv = NULL;
2140 appctx->ctx.stats.flags = (PROMEX_FL_METRIC_HDR|PROMEX_FL_STATS_METRIC);
2141 appctx->st2 = promex_back_metrics[ST_F_PXNAME];
2142 appctx->st1 = PROMEX_DUMPER_BACK;
2143 /* fall through */
2144
2145 case PROMEX_DUMPER_BACK:
2146 ret = promex_dump_back_metrics(appctx, htx);
2147 if (ret <= 0) {
2148 if (ret == -1)
2149 goto error;
2150 goto full;
2151 }
2152
2153 appctx->ctx.stats.px = proxies_list;
2154 appctx->ctx.stats.sv = (appctx->ctx.stats.px ? appctx->ctx.stats.px->srv : NULL);
2155 appctx->ctx.stats.flags = (PROMEX_FL_METRIC_HDR|PROMEX_FL_STATS_METRIC);
2156 appctx->st2 = promex_srv_metrics[ST_F_PXNAME];
2157 appctx->st1 = PROMEX_DUMPER_SRV;
2158 /* fall through */
2159
2160 case PROMEX_DUMPER_SRV:
2161 ret = promex_dump_srv_metrics(appctx, htx);
2162 if (ret <= 0) {
2163 if (ret == -1)
2164 goto error;
2165 goto full;
2166 }
2167
2168 appctx->ctx.stats.px = NULL;
2169 appctx->ctx.stats.sv = NULL;
2170 appctx->ctx.stats.flags = 0;
2171 appctx->st2 = 0;
2172 appctx->st1 = PROMEX_DUMPER_DONE;
2173 /* fall through */
2174
2175 case PROMEX_DUMPER_DONE:
2176 default:
2177 break;
2178 }
2179
2180 return 1;
2181
2182 full:
2183 si_rx_room_blk(si);
2184 return 0;
2185 error:
2186 /* unrecoverable error */
2187 appctx->ctx.stats.px = NULL;
2188 appctx->ctx.stats.sv = NULL;
2189 appctx->ctx.stats.flags = 0;
2190 appctx->st2 = 0;
2191 appctx->st1 = PROMEX_DUMPER_DONE;
2192 return -1;
2193}
2194
2195/* Send HTTP headers of the response. It returns 1 on success and 0 if <htx> is
2196 * full. */
2197static int promex_send_headers(struct appctx *appctx, struct stream_interface *si, struct htx *htx)
2198{
Christopher Faulet9744f7c2019-03-27 15:48:53 +01002199 struct channel *chn = si_ic(appctx->owner);
Christopher Fauletf959d082019-02-07 15:38:42 +01002200 struct htx_sl *sl;
2201 unsigned int flags;
2202
2203 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_ENC|HTX_SL_F_XFER_LEN|HTX_SL_F_CHNK);
2204 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("200"), ist("OK"));
2205 if (!sl)
2206 goto full;
2207 sl->info.res.status = 200;
2208 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
2209 !htx_add_header(htx, ist("Connection"), ist("close")) ||
2210 !htx_add_header(htx, ist("Content-Type"), ist("text/plain; version=0.0.4")) ||
2211 !htx_add_header(htx, ist("Transfer-Encoding"), ist("chunked")) ||
2212 !htx_add_endof(htx, HTX_BLK_EOH))
2213 goto full;
2214
Christopher Faulet9744f7c2019-03-27 15:48:53 +01002215 channel_add_input(chn, htx->data);
Christopher Fauletf959d082019-02-07 15:38:42 +01002216 return 1;
2217 full:
2218 htx_reset(htx);
2219 si_rx_room_blk(si);
2220 return 0;
2221}
2222
2223/* The function returns 1 if the initialisation is complete, 0 if
2224 * an errors occurs and -1 if more data are required for initializing
2225 * the applet.
2226 */
2227static int promex_appctx_init(struct appctx *appctx, struct proxy *px, struct stream *strm)
2228{
2229 appctx->st0 = PROMEX_ST_INIT;
2230 return 1;
2231}
2232
2233/* The main I/O handler for the promex applet. */
2234static void promex_appctx_handle_io(struct appctx *appctx)
2235{
2236 struct stream_interface *si = appctx->owner;
2237 struct stream *s = si_strm(si);
2238 struct channel *req = si_oc(si);
2239 struct channel *res = si_ic(si);
2240 struct htx *req_htx, *res_htx;
2241 int ret;
2242
2243 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf959d082019-02-07 15:38:42 +01002244 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
2245 goto out;
2246
2247 /* Check if the input buffer is avalaible. */
2248 if (!b_size(&res->buf)) {
2249 si_rx_room_blk(si);
2250 goto out;
2251 }
2252
2253 switch (appctx->st0) {
2254 case PROMEX_ST_INIT:
2255 appctx->st0 = PROMEX_ST_HEAD;
2256 appctx->st1 = PROMEX_DUMPER_INIT;
2257 /* fall through */
2258
2259 case PROMEX_ST_HEAD:
2260 if (!promex_send_headers(appctx, si, res_htx))
2261 goto out;
2262 appctx->st0 = ((s->txn->meth == HTTP_METH_HEAD) ? PROMEX_ST_DONE : PROMEX_ST_DUMP);
2263 /* fall through */
2264
2265 case PROMEX_ST_DUMP:
2266 ret = promex_dump_metrics(appctx, si, res_htx);
2267 if (ret <= 0) {
2268 if (ret == -1)
2269 goto error;
2270 goto out;
2271 }
2272 appctx->st0 = PROMEX_ST_DONE;
2273 /* fall through */
2274
2275 case PROMEX_ST_DONE:
Christopher Faulet54b5e212019-06-04 10:08:28 +02002276 /* Don't add TLR because mux-h1 will take care of it */
Christopher Fauletf959d082019-02-07 15:38:42 +01002277 if (!htx_add_endof(res_htx, HTX_BLK_EOM)) {
2278 si_rx_room_blk(si);
2279 goto out;
2280 }
Christopher Faulet9744f7c2019-03-27 15:48:53 +01002281 channel_add_input(res, 1);
2282 appctx->st0 = PROMEX_ST_END;
2283 /* fall through */
Christopher Fauletf959d082019-02-07 15:38:42 +01002284
Christopher Faulet9744f7c2019-03-27 15:48:53 +01002285 case PROMEX_ST_END:
2286 if (!(res->flags & CF_SHUTR)) {
2287 res->flags |= CF_READ_NULL;
2288 si_shutr(si);
2289 }
Christopher Fauletf959d082019-02-07 15:38:42 +01002290 }
2291
Christopher Fauletf959d082019-02-07 15:38:42 +01002292 out:
2293 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9744f7c2019-03-27 15:48:53 +01002294
2295 /* eat the whole request */
2296 if (co_data(req)) {
2297 req_htx = htx_from_buf(&req->buf);
2298 co_htx_skip(req, req_htx, co_data(req));
2299 }
Christopher Fauletf959d082019-02-07 15:38:42 +01002300 return;
2301
2302 error:
2303 res->flags |= CF_READ_NULL;
2304 si_shutr(si);
2305 si_shutw(si);
2306}
2307
2308struct applet promex_applet = {
2309 .obj_type = OBJ_TYPE_APPLET,
2310 .name = "<PROMEX>", /* used for logging */
2311 .init = promex_appctx_init,
2312 .fct = promex_appctx_handle_io,
2313};
2314
2315static enum act_parse_ret service_parse_prometheus_exporter(const char **args, int *cur_arg, struct proxy *px,
2316 struct act_rule *rule, char **err)
2317{
2318 /* Prometheus exporter service is only available on "http-request" rulesets */
2319 if (rule->from != ACT_F_HTTP_REQ) {
2320 memprintf(err, "Prometheus exporter service only available on 'http-request' rulesets");
2321 return ACT_RET_PRS_ERR;
2322 }
2323 if (!(px->options2 & PR_O2_USE_HTX)) {
2324 memprintf(err, "Prometheus exporter service only available for HTX proxies");
2325 return ACT_RET_PRS_ERR;
2326 }
2327
2328 /* Add applet pointer in the rule. */
2329 rule->applet = promex_applet;
2330
2331 return ACT_RET_PRS_OK;
2332}
2333static void promex_register_build_options(void)
2334{
2335 char *ptr = NULL;
2336
2337 memprintf(&ptr, "Built with the Prometheus exporter as a service");
2338 hap_register_build_opts(ptr, 1);
2339}
2340
2341
2342static struct action_kw_list service_actions = { ILH, {
2343 { "prometheus-exporter", service_parse_prometheus_exporter },
2344 { /* END */ }
2345}};
2346
2347INITCALL1(STG_REGISTER, service_keywords_register, &service_actions);
2348INITCALL0(STG_REGISTER, promex_register_build_options);