blob: d31b66687353b0ff79459e9bb494118e67335645 [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
Willy Tarreau122eba92020-06-04 10:15:32 +020016#include <haproxy/action-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020017#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020018#include <haproxy/applet.h>
Willy Tarreau49801602020-06-04 22:50:02 +020019#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020020#include <haproxy/cfgparse.h>
William Dauchyde3c3262021-02-01 13:11:51 +010021#include <haproxy/check.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020022#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020023#include <haproxy/global.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020024#include <haproxy/http.h>
Willy Tarreau87735332020-06-04 09:08:41 +020025#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020026#include <haproxy/htx.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020027#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020028#include <haproxy/listener.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020029#include <haproxy/log.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020030#include <haproxy/proxy.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020031#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020032#include <haproxy/server.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020033#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020034#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020035#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020036#include <haproxy/task.h>
Willy Tarreau0fd04fd2021-05-08 12:58:12 +020037#include <haproxy/tools.h>
William Dauchy5a982a72021-01-08 13:18:06 +010038#include <haproxy/version.h>
Christopher Fauletf959d082019-02-07 15:38:42 +010039
40/* Prometheus exporter applet states (appctx->st0) */
41enum {
42 PROMEX_ST_INIT = 0, /* initialized */
43 PROMEX_ST_HEAD, /* send headers before dump */
44 PROMEX_ST_DUMP, /* dumping stats */
45 PROMEX_ST_DONE, /* finished */
Christopher Faulet9744f7c2019-03-27 15:48:53 +010046 PROMEX_ST_END, /* treatment terminated */
Christopher Fauletf959d082019-02-07 15:38:42 +010047};
48
49/* Prometheus exporter dumper states (appctx->st1) */
50enum {
William Dauchy69164222021-02-07 20:42:38 +010051 PROMEX_DUMPER_INIT = 0, /* initialized */
52 PROMEX_DUMPER_GLOBAL, /* dump metrics of globals */
53 PROMEX_DUMPER_FRONT, /* dump metrics of frontend proxies */
54 PROMEX_DUMPER_BACK, /* dump metrics of backend proxies */
55 PROMEX_DUMPER_LI, /* dump metrics of listeners */
56 PROMEX_DUMPER_SRV, /* dump metrics of servers */
57 PROMEX_DUMPER_STICKTABLE, /* dump metrics of stick tables */
58 PROMEX_DUMPER_DONE, /* finished */
Christopher Fauletf959d082019-02-07 15:38:42 +010059};
60
61/* Prometheus exporter flags (appctx->ctx.stats.flags) */
William Dauchy69164222021-02-07 20:42:38 +010062#define PROMEX_FL_METRIC_HDR 0x00000001
63#define PROMEX_FL_INFO_METRIC 0x00000002
64#define PROMEX_FL_FRONT_METRIC 0x00000004
65#define PROMEX_FL_BACK_METRIC 0x00000008
66#define PROMEX_FL_SRV_METRIC 0x00000010
William Dauchye3f7bd52021-02-14 23:22:56 +010067#define PROMEX_FL_LI_METRIC 0x00000020
68#define PROMEX_FL_STICKTABLE_METRIC 0x00000040
69#define PROMEX_FL_SCOPE_GLOBAL 0x00000080
70#define PROMEX_FL_SCOPE_FRONT 0x00000100
71#define PROMEX_FL_SCOPE_BACK 0x00000200
72#define PROMEX_FL_SCOPE_SERVER 0x00000400
73#define PROMEX_FL_SCOPE_LI 0x00000800
74#define PROMEX_FL_SCOPE_STICKTABLE 0x00001000
75#define PROMEX_FL_NO_MAINT_SRV 0x00002000
Christopher Faulet78407ce2019-11-18 14:47:08 +010076
William Dauchy69164222021-02-07 20:42:38 +010077#define PROMEX_FL_SCOPE_ALL (PROMEX_FL_SCOPE_GLOBAL | PROMEX_FL_SCOPE_FRONT | \
William Dauchye3f7bd52021-02-14 23:22:56 +010078 PROMEX_FL_SCOPE_LI | PROMEX_FL_SCOPE_BACK | \
79 PROMEX_FL_SCOPE_SERVER | PROMEX_FL_SCOPE_STICKTABLE)
Christopher Fauletf959d082019-02-07 15:38:42 +010080
Christopher Faulet0312c0d2021-01-20 15:19:12 +010081/* Promtheus metric type (gauge or counter) */
82enum promex_mt_type {
83 PROMEX_MT_GAUGE = 1,
84 PROMEX_MT_COUNTER = 2,
85};
86
Christopher Fauletf959d082019-02-07 15:38:42 +010087/* The max length for metrics name. It is a hard limit but it should be
Ilya Shipitsince7b00f2020-03-23 22:28:40 +050088 * enough.
Christopher Fauletf959d082019-02-07 15:38:42 +010089 */
90#define PROMEX_MAX_NAME_LEN 128
91
92/* The expected max length for a metric dump, including its header lines. It is
93 * just a soft limit to avoid extra work. We don't try to dump a metric if less
94 * than this size is available in the HTX.
95 */
96#define PROMEX_MAX_METRIC_LENGTH 512
97
Christopher Faulet5a2f9382021-01-28 11:24:17 +010098/* The max number of labels per metric */
99#define PROMEX_MAX_LABELS 8
William Dauchy5a982a72021-01-08 13:18:06 +0100100
Christopher Faulet0312c0d2021-01-20 15:19:12 +0100101/* Describe a prometheus metric */
102struct promex_metric {
103 const struct ist n; /* The metric name */
104 enum promex_mt_type type; /* The metric type (gauge or counter) */
105 unsigned int flags; /* PROMEX_FL_* flags */
106};
107
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100108/* Describe a prometheus metric label. It is just a key/value pair */
109struct promex_label {
110 struct ist name;
111 struct ist value;
112};
113
Christopher Faulet37286a52021-01-20 15:20:53 +0100114/* Global metrics */
115const struct promex_metric promex_global_metrics[INF_TOTAL_FIELDS] = {
116 //[INF_NAME] ignored
117 //[INF_VERSION], ignored
118 //[INF_RELEASE_DATE] ignored
Christopher Faulet37286a52021-01-20 15:20:53 +0100119 [INF_NBTHREAD] = { .n = IST("nbthread"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
120 [INF_NBPROC] = { .n = IST("nbproc"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
121 [INF_PROCESS_NUM] = { .n = IST("relative_process_id"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
122 //[INF_PID] ignored
123 //[INF_UPTIME] ignored
124 [INF_UPTIME_SEC] = { .n = IST("uptime_seconds"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
125 [INF_START_TIME_SEC] = { .n = IST("start_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
William Dauchydf9a05d2021-02-01 13:11:59 +0100126 //[INF_MEMMAX_MB] ignored
Christopher Faulet37286a52021-01-20 15:20:53 +0100127 [INF_MEMMAX_BYTES] = { .n = IST("max_memory_bytes"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
William Dauchydf9a05d2021-02-01 13:11:59 +0100128 //[INF_POOL_ALLOC_MB] ignored
Christopher Faulet37286a52021-01-20 15:20:53 +0100129 [INF_POOL_ALLOC_BYTES] = { .n = IST("pool_allocated_bytes"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
William Dauchydf9a05d2021-02-01 13:11:59 +0100130 //[INF_POOL_USED_MB] ignored
Christopher Faulet37286a52021-01-20 15:20:53 +0100131 [INF_POOL_USED_BYTES] = { .n = IST("pool_used_bytes"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
132 [INF_POOL_FAILED] = { .n = IST("pool_failures_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
133 [INF_ULIMIT_N] = { .n = IST("max_fds"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
134 [INF_MAXSOCK] = { .n = IST("max_sockets"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
135 [INF_MAXCONN] = { .n = IST("max_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
136 [INF_HARD_MAXCONN] = { .n = IST("hard_max_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
137 [INF_CURR_CONN] = { .n = IST("current_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
138 [INF_CUM_CONN] = { .n = IST("connections_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
139 [INF_CUM_REQ] = { .n = IST("requests_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
140 [INF_MAX_SSL_CONNS] = { .n = IST("max_ssl_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
141 [INF_CURR_SSL_CONNS] = { .n = IST("current_ssl_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
142 [INF_CUM_SSL_CONNS] = { .n = IST("ssl_connections_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
143 [INF_MAXPIPES] = { .n = IST("max_pipes"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
144 [INF_PIPES_USED] = { .n = IST("pipes_used_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
145 [INF_PIPES_FREE] = { .n = IST("pipes_free_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
146 [INF_CONN_RATE] = { .n = IST("current_connection_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
147 [INF_CONN_RATE_LIMIT] = { .n = IST("limit_connection_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
148 [INF_MAX_CONN_RATE] = { .n = IST("max_connection_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
149 [INF_SESS_RATE] = { .n = IST("current_session_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
150 [INF_SESS_RATE_LIMIT] = { .n = IST("limit_session_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
151 [INF_MAX_SESS_RATE] = { .n = IST("max_session_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
152 [INF_SSL_RATE] = { .n = IST("current_ssl_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
153 [INF_SSL_RATE_LIMIT] = { .n = IST("limit_ssl_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
154 [INF_MAX_SSL_RATE] = { .n = IST("max_ssl_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
155 [INF_SSL_FRONTEND_KEY_RATE] = { .n = IST("current_frontend_ssl_key_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
156 [INF_SSL_FRONTEND_MAX_KEY_RATE] = { .n = IST("max_frontend_ssl_key_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
157 [INF_SSL_FRONTEND_SESSION_REUSE_PCT] = { .n = IST("frontend_ssl_reuse"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
158 [INF_SSL_BACKEND_KEY_RATE] = { .n = IST("current_backend_ssl_key_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
159 [INF_SSL_BACKEND_MAX_KEY_RATE] = { .n = IST("max_backend_ssl_key_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
160 [INF_SSL_CACHE_LOOKUPS] = { .n = IST("ssl_cache_lookups_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
161 [INF_SSL_CACHE_MISSES] = { .n = IST("ssl_cache_misses_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
162 [INF_COMPRESS_BPS_IN] = { .n = IST("http_comp_bytes_in_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
163 [INF_COMPRESS_BPS_OUT] = { .n = IST("http_comp_bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
164 [INF_COMPRESS_BPS_RATE_LIM] = { .n = IST("limit_http_comp"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
165 [INF_ZLIB_MEM_USAGE] = { .n = IST("current_zlib_memory"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
166 [INF_MAX_ZLIB_MEM_USAGE] = { .n = IST("max_zlib_memory"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
167 [INF_TASKS] = { .n = IST("current_tasks"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
168 [INF_RUN_QUEUE] = { .n = IST("current_run_queue"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
169 [INF_IDLE_PCT] = { .n = IST("idle_time_percent"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
170 //[INF_NODE] ignored
171 //[INF_DESCRIPTION] ignored
172 [INF_STOPPING] = { .n = IST("stopping"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
173 [INF_JOBS] = { .n = IST("jobs"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
174 [INF_UNSTOPPABLE_JOBS] = { .n = IST("unstoppable_jobs"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
175 [INF_LISTENERS] = { .n = IST("listeners"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
176 [INF_ACTIVE_PEERS] = { .n = IST("active_peers"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
177 [INF_CONNECTED_PEERS] = { .n = IST("connected_peers"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
178 [INF_DROPPED_LOGS] = { .n = IST("dropped_logs_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
179 [INF_BUSY_POLLING] = { .n = IST("busy_polling_enabled"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
180 [INF_FAILED_RESOLUTIONS] = { .n = IST("failed_resolutions"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
181 [INF_TOTAL_BYTES_OUT] = { .n = IST("bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
182 [INF_TOTAL_SPLICED_BYTES_OUT] = { .n = IST("spliced_bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
183 [INF_BYTES_OUT_RATE] = { .n = IST("bytes_out_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
184 //[INF_DEBUG_COMMANDS_ISSUED] ignored
William Dauchy7741c332021-02-01 13:11:57 +0100185 [INF_CUM_LOG_MSGS] = { .n = IST("recv_logs_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC },
William Dauchydf9a05d2021-02-01 13:11:59 +0100186 [INF_BUILD_INFO] = { .n = IST("build_info"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC },
Christopher Fauletf959d082019-02-07 15:38:42 +0100187};
188
Christopher Faulet37286a52021-01-20 15:20:53 +0100189/* frontend/backend/server fields */
190const struct promex_metric promex_st_metrics[ST_F_TOTAL_FIELDS] = {
William Dauchy9fea4572021-11-07 10:18:47 +0100191 //[ST_F_PXNAME] ignored
192 //[ST_F_SVNAME] ignored
193 [ST_F_QCUR] = { .n = IST("current_queue"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
194 [ST_F_QMAX] = { .n = IST("max_queue"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
195 [ST_F_SCUR] = { .n = IST("current_sessions"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
196 [ST_F_SMAX] = { .n = IST("max_sessions"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
197 [ST_F_SLIM] = { .n = IST("limit_sessions"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
198 [ST_F_STOT] = { .n = IST("sessions_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
199 [ST_F_BIN] = { .n = IST("bytes_in_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
200 [ST_F_BOUT] = { .n = IST("bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
201 [ST_F_DREQ] = { .n = IST("requests_denied_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC ) },
202 [ST_F_DRESP] = { .n = IST("responses_denied_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
203 [ST_F_EREQ] = { .n = IST("request_errors_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC ) },
204 [ST_F_ECON] = { .n = IST("connection_errors_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
205 [ST_F_ERESP] = { .n = IST("response_errors_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
206 [ST_F_WRETR] = { .n = IST("retry_warnings_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
207 [ST_F_WREDIS] = { .n = IST("redispatch_warnings_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
208 [ST_F_STATUS] = { .n = IST("status"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
209 [ST_F_WEIGHT] = { .n = IST("weight"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
210 [ST_F_ACT] = { .n = IST("active_servers"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC ) },
211 [ST_F_BCK] = { .n = IST("backup_servers"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC ) },
212 [ST_F_CHKFAIL] = { .n = IST("check_failures_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_SRV_METRIC) },
213 [ST_F_CHKDOWN] = { .n = IST("check_up_down_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
214 [ST_F_LASTCHG] = { .n = IST("check_last_change_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
215 [ST_F_DOWNTIME] = { .n = IST("downtime_seconds_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
216 [ST_F_QLIMIT] = { .n = IST("queue_limit"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
217 //[ST_F_PID] ignored
218 //[ST_F_IID] ignored
219 //[ST_F_SID] ignored
220 [ST_F_THROTTLE] = { .n = IST("current_throttle"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
221 [ST_F_LBTOT] = { .n = IST("loadbalanced_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
222 //[ST_F_TRACKED] ignored
223 //[ST_F_TYPE] ignored
224 //[ST_F_RATE] ignored
225 [ST_F_RATE_LIM] = { .n = IST("limit_session_rate"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC ) },
226 [ST_F_RATE_MAX] = { .n = IST("max_session_rate"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
227 [ST_F_CHECK_STATUS] = { .n = IST("check_status"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
228 [ST_F_CHECK_CODE] = { .n = IST("check_code"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
229 [ST_F_CHECK_DURATION] = { .n = IST("check_duration_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
230 [ST_F_HRSP_1XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
231 [ST_F_HRSP_2XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
232 [ST_F_HRSP_3XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
233 [ST_F_HRSP_4XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
234 [ST_F_HRSP_5XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
235 [ST_F_HRSP_OTHER] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
236 //[ST_F_HANAFAIL] ignored
237 //[ST_F_REQ_RATE] ignored
238 [ST_F_REQ_RATE_MAX] = { .n = IST("http_requests_rate_max"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC ) },
239 [ST_F_REQ_TOT] = { .n = IST("http_requests_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) },
240 [ST_F_CLI_ABRT] = { .n = IST("client_aborts_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
241 [ST_F_SRV_ABRT] = { .n = IST("server_aborts_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
242 [ST_F_COMP_IN] = { .n = IST("http_comp_bytes_in_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) },
243 [ST_F_COMP_OUT] = { .n = IST("http_comp_bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) },
244 [ST_F_COMP_BYP] = { .n = IST("http_comp_bytes_bypassed_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) },
245 [ST_F_COMP_RSP] = { .n = IST("http_comp_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) },
246 [ST_F_LASTSESS] = { .n = IST("last_session_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
247 //[ST_F_LAST_CHK] ignored
248 //[ST_F_LAST_AGT] ignored
249 [ST_F_QTIME] = { .n = IST("queue_time_average_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
250 [ST_F_CTIME] = { .n = IST("connect_time_average_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
251 [ST_F_RTIME] = { .n = IST("response_time_average_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
252 [ST_F_TTIME] = { .n = IST("total_time_average_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
253 //[ST_F_AGENT_STATUS] ignored
254 //[ST_F_AGENT_CODE] ignored
255 //[ST_F_AGENT_DURATION] ignored
256 //[ST_F_CHECK_DESC] ignored
257 //[ST_F_AGENT_DESC] ignored
258 //[ST_F_CHECK_RISE] ignored
259 //[ST_F_CHECK_FALL] ignored
260 //[ST_F_CHECK_HEALTH] ignored
261 //[ST_F_AGENT_RISE] ignored
262 //[ST_F_AGENT_FALL] ignored
263 //[ST_F_AGENT_HEALTH] ignored
264 //[ST_F_ADDR] ignored
265 //[ST_F_COOKIE] ignored
266 //[ST_F_MODE] ignored
267 //[ST_F_ALGO] ignored
268 //[ST_F_CONN_RATE] ignored
269 [ST_F_CONN_RATE_MAX] = { .n = IST("connections_rate_max"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC ) },
270 [ST_F_CONN_TOT] = { .n = IST("connections_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC ) },
271 [ST_F_INTERCEPTED] = { .n = IST("intercepted_requests_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC ) },
272 [ST_F_DCON] = { .n = IST("denied_connections_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC ) },
273 [ST_F_DSES] = { .n = IST("denied_sessions_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC ) },
274 [ST_F_WREW] = { .n = IST("failed_header_rewriting_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
275 [ST_F_CONNECT] = { .n = IST("connection_attempts_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
276 [ST_F_REUSE] = { .n = IST("connection_reuses_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
277 [ST_F_CACHE_LOOKUPS] = { .n = IST("http_cache_lookups_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) },
278 [ST_F_CACHE_HITS] = { .n = IST("http_cache_hits_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) },
279 [ST_F_SRV_ICUR] = { .n = IST("idle_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
280 [ST_F_SRV_ILIM] = { .n = IST("idle_connections_limit"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
281 [ST_F_QT_MAX] = { .n = IST("max_queue_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
282 [ST_F_CT_MAX] = { .n = IST("max_connect_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
283 [ST_F_RT_MAX] = { .n = IST("max_response_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
284 [ST_F_TT_MAX] = { .n = IST("max_total_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
285 [ST_F_EINT] = { .n = IST("internal_errors_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_LI_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
286 [ST_F_IDLE_CONN_CUR] = { .n = IST("unsafe_idle_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
287 [ST_F_SAFE_CONN_CUR] = { .n = IST("safe_idle_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
288 [ST_F_USED_CONN_CUR] = { .n = IST("used_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
289 [ST_F_NEED_CONN_EST] = { .n = IST("need_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) },
290 [ST_F_UWEIGHT] = { .n = IST("uweight"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) },
291 [ST_F_AGG_SRV_CHECK_STATUS] = { .n = IST("agg_server_check_status"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC ) },
Cedric Paillet1b3d31c2022-12-08 09:17:00 +0000292 [ST_F_AGG_SRV_STATUS ] = { .n = IST("agg_server_status"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC ) },
Cedric Pailletefe05e32022-12-08 09:17:01 +0000293 [ST_F_AGG_CHECK_STATUS] = { .n = IST("agg_check_status"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC ) },
Christopher Fauletf959d082019-02-07 15:38:42 +0100294};
295
Ilya Shipitsinacf84592021-02-06 22:29:08 +0500296/* Description of overridden stats fields */
Christopher Fauletf959d082019-02-07 15:38:42 +0100297const struct ist promex_st_metric_desc[ST_F_TOTAL_FIELDS] = {
William Dauchya1da7ba2021-02-01 13:11:52 +0100298 [ST_F_STATUS] = IST("Current status of the service, per state label value."),
William Dauchyde3c3262021-02-01 13:11:51 +0100299 [ST_F_CHECK_STATUS] = IST("Status of last health check, per state label value."),
Christopher Fauletf959d082019-02-07 15:38:42 +0100300 [ST_F_CHECK_CODE] = IST("layer5-7 code, if available of the last health check."),
Christopher Faulet2711e512020-02-27 16:12:07 +0100301 [ST_F_CHECK_DURATION] = IST("Total duration of the latest server health check, in seconds."),
Christopher Fauletf959d082019-02-07 15:38:42 +0100302 [ST_F_QTIME] = IST("Avg. queue time for last 1024 successful connections."),
303 [ST_F_CTIME] = IST("Avg. connect time for last 1024 successful connections."),
304 [ST_F_RTIME] = IST("Avg. response time for last 1024 successful connections."),
305 [ST_F_TTIME] = IST("Avg. total time for last 1024 successful connections."),
Christopher Faulet8fc027d2019-11-08 15:05:31 +0100306 [ST_F_QT_MAX] = IST("Maximum observed time spent in the queue"),
307 [ST_F_CT_MAX] = IST("Maximum observed time spent waiting for a connection to complete"),
308 [ST_F_RT_MAX] = IST("Maximum observed time spent waiting for a server response"),
309 [ST_F_TT_MAX] = IST("Maximum observed total request+response time (request+queue+connect+response+processing)"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100310};
311
William Dauchy69164222021-02-07 20:42:38 +0100312/* stick table base fields */
313enum sticktable_field {
314 STICKTABLE_SIZE = 0,
315 STICKTABLE_USED,
316 /* must always be the last one */
317 STICKTABLE_TOTAL_FIELDS
318};
319
320const struct promex_metric promex_sticktable_metrics[STICKTABLE_TOTAL_FIELDS] = {
321 [STICKTABLE_SIZE] = { .n = IST("size"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_STICKTABLE_METRIC },
322 [STICKTABLE_USED] = { .n = IST("used"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_STICKTABLE_METRIC },
323};
324
325/* stick table base description */
326const struct ist promex_sticktable_metric_desc[STICKTABLE_TOTAL_FIELDS] = {
327 [STICKTABLE_SIZE] = IST("Stick table size."),
328 [STICKTABLE_USED] = IST("Number of entries used in this stick table."),
329};
330
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100331/* Specific labels for all ST_F_HRSP_* fields */
332const struct ist promex_hrsp_code[1 + ST_F_HRSP_OTHER - ST_F_HRSP_1XX] = {
333 [ST_F_HRSP_1XX - ST_F_HRSP_1XX] = IST("1xx"),
334 [ST_F_HRSP_2XX - ST_F_HRSP_1XX] = IST("2xx"),
335 [ST_F_HRSP_3XX - ST_F_HRSP_1XX] = IST("3xx"),
336 [ST_F_HRSP_4XX - ST_F_HRSP_1XX] = IST("4xx"),
337 [ST_F_HRSP_5XX - ST_F_HRSP_1XX] = IST("5xx"),
338 [ST_F_HRSP_OTHER - ST_F_HRSP_1XX] = IST("other"),
Christopher Fauletf959d082019-02-07 15:38:42 +0100339};
340
William Dauchy54938212021-01-27 22:40:16 +0100341enum promex_front_state {
342 PROMEX_FRONT_STATE_DOWN = 0,
343 PROMEX_FRONT_STATE_UP,
344
345 PROMEX_FRONT_STATE_COUNT /* must be last */
346};
347
348const struct ist promex_front_st[PROMEX_FRONT_STATE_COUNT] = {
349 [PROMEX_FRONT_STATE_DOWN] = IST("DOWN"),
350 [PROMEX_FRONT_STATE_UP] = IST("UP"),
351};
352
353enum promex_back_state {
354 PROMEX_BACK_STATE_DOWN = 0,
355 PROMEX_BACK_STATE_UP,
356
357 PROMEX_BACK_STATE_COUNT /* must be last */
358};
359
360const struct ist promex_back_st[PROMEX_BACK_STATE_COUNT] = {
361 [PROMEX_BACK_STATE_DOWN] = IST("DOWN"),
362 [PROMEX_BACK_STATE_UP] = IST("UP"),
363};
364
365enum promex_srv_state {
366 PROMEX_SRV_STATE_DOWN = 0,
367 PROMEX_SRV_STATE_UP,
368 PROMEX_SRV_STATE_MAINT,
369 PROMEX_SRV_STATE_DRAIN,
370 PROMEX_SRV_STATE_NOLB,
371
372 PROMEX_SRV_STATE_COUNT /* must be last */
373};
374
375const struct ist promex_srv_st[PROMEX_SRV_STATE_COUNT] = {
376 [PROMEX_SRV_STATE_DOWN] = IST("DOWN"),
377 [PROMEX_SRV_STATE_UP] = IST("UP"),
378 [PROMEX_SRV_STATE_MAINT] = IST("MAINT"),
379 [PROMEX_SRV_STATE_DRAIN] = IST("DRAIN"),
380 [PROMEX_SRV_STATE_NOLB] = IST("NOLB"),
381};
382
383/* Return the server status. */
384enum promex_srv_state promex_srv_status(struct server *sv)
Christopher Fauletf959d082019-02-07 15:38:42 +0100385{
William Dauchy54938212021-01-27 22:40:16 +0100386 int state = PROMEX_SRV_STATE_DOWN;
Christopher Fauletf959d082019-02-07 15:38:42 +0100387
Christopher Fauletf959d082019-02-07 15:38:42 +0100388 if (sv->cur_state == SRV_ST_RUNNING || sv->cur_state == SRV_ST_STARTING) {
William Dauchy54938212021-01-27 22:40:16 +0100389 state = PROMEX_SRV_STATE_UP;
Christopher Fauletf959d082019-02-07 15:38:42 +0100390 if (sv->cur_admin & SRV_ADMF_DRAIN)
William Dauchy54938212021-01-27 22:40:16 +0100391 state = PROMEX_SRV_STATE_DRAIN;
Christopher Fauletf959d082019-02-07 15:38:42 +0100392 }
Christopher Fauletd45d1052019-09-06 16:10:19 +0200393 else if (sv->cur_state == SRV_ST_STOPPING)
William Dauchy54938212021-01-27 22:40:16 +0100394 state = PROMEX_SRV_STATE_NOLB;
Christopher Fauletd45d1052019-09-06 16:10:19 +0200395
396 if (sv->cur_admin & SRV_ADMF_MAINT)
William Dauchy54938212021-01-27 22:40:16 +0100397 state = PROMEX_SRV_STATE_MAINT;
Christopher Fauletf959d082019-02-07 15:38:42 +0100398
399 return state;
400}
401
402/* Convert a field to its string representation and write it in <out>, followed
403 * by a newline, if there is enough space. non-numeric value are converted in
William Dauchy18a2c6e2021-01-22 21:09:47 +0100404 * "NaN" because Prometheus only support numerical values (but it is unexepceted
Christopher Fauletf959d082019-02-07 15:38:42 +0100405 * to process this kind of value). It returns 1 on success. Otherwise, it
406 * returns 0. The buffer's length must not exceed <max> value.
407 */
408static int promex_metric_to_str(struct buffer *out, struct field *f, size_t max)
409{
410 int ret = 0;
411
412 switch (field_format(f, 0)) {
William Dauchy18a2c6e2021-01-22 21:09:47 +0100413 case FF_EMPTY: ret = chunk_strcat(out, "NaN\n"); break;
Christopher Fauletf959d082019-02-07 15:38:42 +0100414 case FF_S32: ret = chunk_appendf(out, "%d\n", f->u.s32); break;
415 case FF_U32: ret = chunk_appendf(out, "%u\n", f->u.u32); break;
416 case FF_S64: ret = chunk_appendf(out, "%lld\n", (long long)f->u.s64); break;
417 case FF_U64: ret = chunk_appendf(out, "%llu\n", (unsigned long long)f->u.u64); break;
Christopher Fauletaf4bf142019-09-24 16:35:19 +0200418 case FF_FLT: ret = chunk_appendf(out, "%f\n", f->u.flt); break;
William Dauchy18a2c6e2021-01-22 21:09:47 +0100419 case FF_STR: ret = chunk_strcat(out, "NaN\n"); break;
420 default: ret = chunk_strcat(out, "NaN\n"); break;
Christopher Fauletf959d082019-02-07 15:38:42 +0100421 }
422 if (!ret || out->data > max)
423 return 0;
424 return 1;
425}
426
Christopher Fauletf959d082019-02-07 15:38:42 +0100427/* Dump the header lines for <metric>. It is its #HELP and #TYPE strings. It
428 * returns 1 on success. Otherwise, if <out> length exceeds <max>, it returns 0.
429 */
430static int promex_dump_metric_header(struct appctx *appctx, struct htx *htx,
Christopher Faulet37286a52021-01-20 15:20:53 +0100431 const struct promex_metric *metric, const struct ist name,
432 struct ist *out, size_t max)
Christopher Fauletf959d082019-02-07 15:38:42 +0100433{
Christopher Faulet37286a52021-01-20 15:20:53 +0100434 struct ist type;
William Dauchy82b2ce22021-02-01 13:11:55 +0100435 struct ist desc;
Christopher Faulet37286a52021-01-20 15:20:53 +0100436
437 switch (metric->type) {
438 case PROMEX_MT_COUNTER:
439 type = ist("counter");
440 break;
441 default:
442 type = ist("gauge");
443 }
Christopher Fauletf959d082019-02-07 15:38:42 +0100444
William Dauchya191b772021-01-15 22:41:39 +0100445 if (istcat(out, ist("# HELP "), max) == -1 ||
446 istcat(out, name, max) == -1 ||
447 istcat(out, ist(" "), max) == -1)
448 goto full;
449
William Dauchy82b2ce22021-02-01 13:11:55 +0100450 if (metric->flags & PROMEX_FL_INFO_METRIC)
451 desc = ist(info_fields[appctx->st2].desc);
William Dauchy69164222021-02-07 20:42:38 +0100452 else if (metric->flags & PROMEX_FL_STICKTABLE_METRIC)
453 desc = promex_sticktable_metric_desc[appctx->st2];
William Dauchy82b2ce22021-02-01 13:11:55 +0100454 else if (!isttest(promex_st_metric_desc[appctx->st2]))
455 desc = ist(stat_fields[appctx->st2].desc);
456 else
457 desc = promex_st_metric_desc[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +0100458
William Dauchy82b2ce22021-02-01 13:11:55 +0100459 if (istcat(out, desc, max) == -1 ||
460 istcat(out, ist("\n# TYPE "), max) == -1 ||
Christopher Fauletf959d082019-02-07 15:38:42 +0100461 istcat(out, name, max) == -1 ||
462 istcat(out, ist(" "), max) == -1 ||
Christopher Faulet37286a52021-01-20 15:20:53 +0100463 istcat(out, type, max) == -1 ||
Christopher Fauletf959d082019-02-07 15:38:42 +0100464 istcat(out, ist("\n"), max) == -1)
465 goto full;
466
467 return 1;
468
469 full:
470 return 0;
471}
472
473/* Dump the line for <metric>. It starts by the metric name followed by its
474 * labels (proxy name, server name...) between braces and finally its value. If
475 * not already done, the header lines are dumped first. It returns 1 on
476 * success. Otherwise if <out> length exceeds <max>, it returns 0.
477 */
Christopher Faulet37286a52021-01-20 15:20:53 +0100478static int promex_dump_metric(struct appctx *appctx, struct htx *htx, struct ist prefix,
William Dauchyc6464592021-01-27 22:40:17 +0100479 const struct promex_metric *metric, struct field *val,
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100480 struct promex_label *labels, struct ist *out, size_t max)
Christopher Fauletf959d082019-02-07 15:38:42 +0100481{
482 struct ist name = { .ptr = (char[PROMEX_MAX_NAME_LEN]){ 0 }, .len = 0 };
483 size_t len = out->len;
484
485 if (out->len + PROMEX_MAX_METRIC_LENGTH > max)
486 return 0;
487
Christopher Faulet37286a52021-01-20 15:20:53 +0100488 /* Fill the metric name */
489 istcat(&name, prefix, PROMEX_MAX_NAME_LEN);
490 istcat(&name, metric->n, PROMEX_MAX_NAME_LEN);
491
492
Christopher Fauletf959d082019-02-07 15:38:42 +0100493 if ((appctx->ctx.stats.flags & PROMEX_FL_METRIC_HDR) &&
Christopher Faulet37286a52021-01-20 15:20:53 +0100494 !promex_dump_metric_header(appctx, htx, metric, name, out, max))
Christopher Fauletf959d082019-02-07 15:38:42 +0100495 goto full;
496
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100497 if (istcat(out, name, max) == -1)
498 goto full;
Christopher Fauletf959d082019-02-07 15:38:42 +0100499
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100500 if (isttest(labels[0].name)) {
501 int i;
502
503 if (istcat(out, ist("{"), max) == -1)
Christopher Fauletf959d082019-02-07 15:38:42 +0100504 goto full;
Christopher Fauletf959d082019-02-07 15:38:42 +0100505
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100506 for (i = 0; isttest(labels[i].name); i++) {
507 if (!isttest(labels[i].value))
508 continue;
509
510 if ((i && istcat(out, ist(","), max) == -1) ||
511 istcat(out, labels[i].name, max) == -1 ||
512 istcat(out, ist("=\""), max) == -1 ||
513 istcat(out, labels[i].value, max) == -1 ||
514 istcat(out, ist("\""), max) == -1)
515 goto full;
516 }
517
518 if (istcat(out, ist("}"), max) == -1)
Christopher Fauletf959d082019-02-07 15:38:42 +0100519 goto full;
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100520
Christopher Fauletf959d082019-02-07 15:38:42 +0100521 }
522
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100523 if (istcat(out, ist(" "), max) == -1)
524 goto full;
525
Christopher Fauletf959d082019-02-07 15:38:42 +0100526 trash.data = out->len;
Christopher Faulet37286a52021-01-20 15:20:53 +0100527 if (!promex_metric_to_str(&trash, val, max))
Christopher Fauletf959d082019-02-07 15:38:42 +0100528 goto full;
529 out->len = trash.data;
530
531 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
532 return 1;
533 full:
534 // Restore previous length
535 out->len = len;
536 return 0;
537
538}
539
540
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500541/* Dump global metrics (prefixed by "haproxy_process_"). It returns 1 on success,
Christopher Fauletf959d082019-02-07 15:38:42 +0100542 * 0 if <htx> is full and -1 in case of any error. */
543static int promex_dump_global_metrics(struct appctx *appctx, struct htx *htx)
544{
545 static struct ist prefix = IST("haproxy_process_");
Christopher Faulet37286a52021-01-20 15:20:53 +0100546 struct field val;
Christopher Fauletf959d082019-02-07 15:38:42 +0100547 struct channel *chn = si_ic(appctx->owner);
548 struct ist out = ist2(trash.area, 0);
Christopher Faulet11921e62019-07-03 11:43:17 +0200549 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
Christopher Fauletf959d082019-02-07 15:38:42 +0100550 int ret = 1;
551
Willy Tarreau0b26b382021-05-08 07:43:53 +0200552 if (!stats_fill_info(info, INF_TOTAL_FIELDS, 0))
William Dauchy5d9b8f32021-01-11 20:07:49 +0100553 return -1;
Christopher Fauletf959d082019-02-07 15:38:42 +0100554
Christopher Faulet37286a52021-01-20 15:20:53 +0100555 for (; appctx->st2 < INF_TOTAL_FIELDS; appctx->st2++) {
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100556 struct promex_label labels[PROMEX_MAX_LABELS-1] = {};
557
Christopher Faulet37286a52021-01-20 15:20:53 +0100558 if (!(promex_global_metrics[appctx->st2].flags & appctx->ctx.stats.flags))
559 continue;
560
Christopher Fauletf959d082019-02-07 15:38:42 +0100561 switch (appctx->st2) {
William Dauchy5a982a72021-01-08 13:18:06 +0100562 case INF_BUILD_INFO:
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100563 labels[0].name = ist("version");
564 labels[0].value = ist(HAPROXY_VERSION);
Christopher Faulet37286a52021-01-20 15:20:53 +0100565 val = mkf_u32(FN_GAUGE, 1);
William Dauchy5a982a72021-01-08 13:18:06 +0100566 break;
Christopher Fauletf959d082019-02-07 15:38:42 +0100567
568 default:
Christopher Faulet37286a52021-01-20 15:20:53 +0100569 val = info[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +0100570 }
571
William Dauchyc6464592021-01-27 22:40:17 +0100572 if (!promex_dump_metric(appctx, htx, prefix, &promex_global_metrics[appctx->st2],
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100573 &val, labels, &out, max))
Christopher Fauletf959d082019-02-07 15:38:42 +0100574 goto full;
575
Christopher Fauletf959d082019-02-07 15:38:42 +0100576 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
Christopher Fauletf959d082019-02-07 15:38:42 +0100577 }
578
579 end:
Christopher Faulet0c55a152019-07-04 10:03:28 +0200580 if (out.len) {
581 if (!htx_add_data_atonce(htx, out))
582 return -1; /* Unexpected and unrecoverable error */
583 channel_add_input(chn, out.len);
584 }
Christopher Fauletf959d082019-02-07 15:38:42 +0100585 return ret;
586 full:
587 ret = 0;
588 goto end;
589}
590
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500591/* Dump frontends metrics (prefixed by "haproxy_frontend_"). It returns 1 on success,
Christopher Fauletf959d082019-02-07 15:38:42 +0100592 * 0 if <htx> is full and -1 in case of any error. */
593static int promex_dump_front_metrics(struct appctx *appctx, struct htx *htx)
594{
595 static struct ist prefix = IST("haproxy_frontend_");
596 struct proxy *px;
Christopher Faulet37286a52021-01-20 15:20:53 +0100597 struct field val;
Christopher Fauletf959d082019-02-07 15:38:42 +0100598 struct channel *chn = si_ic(appctx->owner);
599 struct ist out = ist2(trash.area, 0);
Christopher Faulet11921e62019-07-03 11:43:17 +0200600 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
William Dauchyb9577452021-01-17 18:27:46 +0100601 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
Christopher Fauletf959d082019-02-07 15:38:42 +0100602 int ret = 1;
William Dauchyc6464592021-01-27 22:40:17 +0100603 enum promex_front_state state;
Christopher Fauletf959d082019-02-07 15:38:42 +0100604
Christopher Faulet37286a52021-01-20 15:20:53 +0100605 for (;appctx->st2 < ST_F_TOTAL_FIELDS; appctx->st2++) {
606 if (!(promex_st_metrics[appctx->st2].flags & appctx->ctx.stats.flags))
607 continue;
608
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200609 while (appctx->ctx.stats.obj1) {
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100610 struct promex_label labels[PROMEX_MAX_LABELS-1] = {};
611
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200612 px = appctx->ctx.stats.obj1;
Christopher Fauletf959d082019-02-07 15:38:42 +0100613
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100614 labels[0].name = ist("proxy");
615 labels[0].value = ist2(px->id, strlen(px->id));
616
Christopher Fauletf959d082019-02-07 15:38:42 +0100617 /* skip the disabled proxies, global frontend and non-networked ones */
Willy Tarreauc3914d42020-09-24 08:39:22 +0200618 if (px->disabled || px->uuid <= 0 || !(px->cap & PR_CAP_FE))
Christopher Fauletf959d082019-02-07 15:38:42 +0100619 goto next_px;
620
William Dauchyb9577452021-01-17 18:27:46 +0100621 if (!stats_fill_fe_stats(px, stats, ST_F_TOTAL_FIELDS, &(appctx->st2)))
622 return -1;
623
Christopher Fauletf959d082019-02-07 15:38:42 +0100624 switch (appctx->st2) {
625 case ST_F_STATUS:
William Dauchyc6464592021-01-27 22:40:17 +0100626 state = !px->disabled;
Christopher Faulet040b1192021-02-01 15:05:21 +0100627 for (; appctx->ctx.stats.st_code < PROMEX_FRONT_STATE_COUNT; appctx->ctx.stats.st_code++) {
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100628 labels[1].name = ist("state");
Christopher Faulet040b1192021-02-01 15:05:21 +0100629 labels[1].value = promex_front_st[appctx->ctx.stats.st_code];
630 val = mkf_u32(FO_STATUS, state == appctx->ctx.stats.st_code);
William Dauchyc6464592021-01-27 22:40:17 +0100631 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100632 &val, labels, &out, max))
William Dauchyc6464592021-01-27 22:40:17 +0100633 goto full;
634 }
Christopher Faulet040b1192021-02-01 15:05:21 +0100635 appctx->ctx.stats.st_code = 0;
William Dauchyc6464592021-01-27 22:40:17 +0100636 goto next_px;
Christopher Fauletf959d082019-02-07 15:38:42 +0100637 case ST_F_REQ_RATE_MAX:
Christopher Fauletf959d082019-02-07 15:38:42 +0100638 case ST_F_REQ_TOT:
Christopher Fauletf959d082019-02-07 15:38:42 +0100639 case ST_F_INTERCEPTED:
Christopher Fauletf959d082019-02-07 15:38:42 +0100640 case ST_F_CACHE_LOOKUPS:
Christopher Fauletf959d082019-02-07 15:38:42 +0100641 case ST_F_CACHE_HITS:
Christopher Fauletf959d082019-02-07 15:38:42 +0100642 case ST_F_COMP_IN:
Christopher Fauletf959d082019-02-07 15:38:42 +0100643 case ST_F_COMP_OUT:
Christopher Fauletf959d082019-02-07 15:38:42 +0100644 case ST_F_COMP_BYP:
William Dauchyb9577452021-01-17 18:27:46 +0100645 case ST_F_COMP_RSP:
Christopher Fauletf959d082019-02-07 15:38:42 +0100646 if (px->mode != PR_MODE_HTTP)
647 goto next_px;
Christopher Faulet37286a52021-01-20 15:20:53 +0100648 val = stats[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +0100649 break;
Christopher Faulet32ef48e2021-02-01 14:55:37 +0100650 case ST_F_HRSP_1XX:
William Dauchyb9577452021-01-17 18:27:46 +0100651 case ST_F_HRSP_2XX:
652 case ST_F_HRSP_3XX:
653 case ST_F_HRSP_4XX:
654 case ST_F_HRSP_5XX:
655 case ST_F_HRSP_OTHER:
Christopher Fauletf959d082019-02-07 15:38:42 +0100656 if (px->mode != PR_MODE_HTTP)
657 goto next_px;
Christopher Faulet32ef48e2021-02-01 14:55:37 +0100658 if (appctx->st2 != ST_F_HRSP_1XX)
659 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100660 labels[1].name = ist("code");
661 labels[1].value = promex_hrsp_code[appctx->st2 - ST_F_HRSP_1XX];
662 val = stats[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +0100663 break;
664
665 default:
Christopher Faulet37286a52021-01-20 15:20:53 +0100666 val = stats[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +0100667 }
668
William Dauchyc6464592021-01-27 22:40:17 +0100669 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100670 &val, labels, &out, max))
Christopher Fauletf959d082019-02-07 15:38:42 +0100671 goto full;
672 next_px:
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200673 appctx->ctx.stats.obj1 = px->next;
Christopher Fauletf959d082019-02-07 15:38:42 +0100674 }
Christopher Fauletf959d082019-02-07 15:38:42 +0100675 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200676 appctx->ctx.stats.obj1 = proxies_list;
Christopher Fauletf959d082019-02-07 15:38:42 +0100677 }
678
679 end:
Christopher Faulet0c55a152019-07-04 10:03:28 +0200680 if (out.len) {
681 if (!htx_add_data_atonce(htx, out))
682 return -1; /* Unexpected and unrecoverable error */
683 channel_add_input(chn, out.len);
684 }
Christopher Fauletf959d082019-02-07 15:38:42 +0100685 return ret;
686 full:
687 ret = 0;
688 goto end;
689}
690
William Dauchye3f7bd52021-02-14 23:22:56 +0100691/* Dump listener metrics (prefixed by "haproxy_listen_"). It returns 1 on
692 * success, 0 if <htx> is full and -1 in case of any error. */
693static int promex_dump_listener_metrics(struct appctx *appctx, struct htx *htx)
694{
695 static struct ist prefix = IST("haproxy_listener_");
696 struct proxy *px;
697 struct field val;
698 struct channel *chn = si_ic(appctx->owner);
699 struct ist out = ist2(trash.area, 0);
700 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
701 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
702 struct listener *li;
703 int ret = 1;
704 enum li_status status;
705
706 for (;appctx->st2 < ST_F_TOTAL_FIELDS; appctx->st2++) {
707 if (!(promex_st_metrics[appctx->st2].flags & appctx->ctx.stats.flags))
708 continue;
709
710 while (appctx->ctx.stats.obj1) {
711 struct promex_label labels[PROMEX_MAX_LABELS-1] = {};
712
713 px = appctx->ctx.stats.obj1;
714
715 labels[0].name = ist("proxy");
716 labels[0].value = ist2(px->id, strlen(px->id));
717
718 /* skip the disabled proxies, global frontend and non-networked ones */
719 if (px->disabled || px->uuid <= 0 || !(px->cap & PR_CAP_FE))
720 goto next_px;
721
722 li = appctx->ctx.stats.obj2;
723 list_for_each_entry_from(li, &px->conf.listeners, by_fe) {
724
William Dauchye3f7bd52021-02-14 23:22:56 +0100725 if (!li->counters)
726 continue;
727
William Dauchybaf22732021-02-25 00:53:13 +0100728 labels[1].name = ist("listener");
729 labels[1].value = ist2(li->name, strlen(li->name));
730
William Dauchye3f7bd52021-02-14 23:22:56 +0100731 if (!stats_fill_li_stats(px, li, 0, stats,
732 ST_F_TOTAL_FIELDS, &(appctx->st2)))
733 return -1;
734
735 switch (appctx->st2) {
736 case ST_F_STATUS:
737 status = get_li_status(li);
738 for (; appctx->ctx.stats.st_code < LI_STATE_COUNT; appctx->ctx.stats.st_code++) {
739 val = mkf_u32(FO_STATUS, status == appctx->ctx.stats.st_code);
740 labels[2].name = ist("state");
741 labels[2].value = ist(li_status_st[appctx->ctx.stats.st_code]);
742 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
743 &val, labels, &out, max))
744 goto full;
745 }
746 appctx->ctx.stats.st_code = 0;
747 continue;
748 default:
749 val = stats[appctx->st2];
750 }
751
752 if (!promex_dump_metric(appctx, htx, prefix,
753 &promex_st_metrics[appctx->st2],
754 &val, labels, &out, max))
755 goto full;
756 }
757
758 next_px:
759 px = px->next;
760 appctx->ctx.stats.obj1 = px;
761 appctx->ctx.stats.obj2 = (px ? LIST_NEXT(&px->conf.listeners, struct listener *, by_fe) : NULL);
762 }
763 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
764 appctx->ctx.stats.obj1 = proxies_list;
765 appctx->ctx.stats.obj2 = LIST_NEXT(&proxies_list->conf.listeners, struct listener *, by_fe);
766 }
767
768 end:
769 if (out.len) {
770 if (!htx_add_data_atonce(htx, out))
771 return -1; /* Unexpected and unrecoverable error */
772 channel_add_input(chn, out.len);
773 }
774 return ret;
775 full:
776 appctx->ctx.stats.obj2 = li;
777 ret = 0;
778 goto end;
779}
780
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500781/* Dump backends metrics (prefixed by "haproxy_backend_"). It returns 1 on success,
Christopher Fauletf959d082019-02-07 15:38:42 +0100782 * 0 if <htx> is full and -1 in case of any error. */
783static int promex_dump_back_metrics(struct appctx *appctx, struct htx *htx)
784{
785 static struct ist prefix = IST("haproxy_backend_");
786 struct proxy *px;
William Dauchy9fea4572021-11-07 10:18:47 +0100787 struct server *sv;
Christopher Faulet37286a52021-01-20 15:20:53 +0100788 struct field val;
Christopher Fauletf959d082019-02-07 15:38:42 +0100789 struct channel *chn = si_ic(appctx->owner);
790 struct ist out = ist2(trash.area, 0);
Christopher Faulet11921e62019-07-03 11:43:17 +0200791 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
William Dauchy3c6f0062021-01-25 17:29:02 +0100792 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
Christopher Fauletf959d082019-02-07 15:38:42 +0100793 int ret = 1;
Christopher Fauletaf4bf142019-09-24 16:35:19 +0200794 double secs;
William Dauchy9fea4572021-11-07 10:18:47 +0100795 enum promex_back_state bkd_state;
796 enum promex_srv_state srv_state;
Cedric Pailletefe05e32022-12-08 09:17:01 +0000797 enum healthcheck_status srv_check_status;
Christopher Fauletf959d082019-02-07 15:38:42 +0100798
Christopher Faulet37286a52021-01-20 15:20:53 +0100799 for (;appctx->st2 < ST_F_TOTAL_FIELDS; appctx->st2++) {
800 if (!(promex_st_metrics[appctx->st2].flags & appctx->ctx.stats.flags))
801 continue;
802
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200803 while (appctx->ctx.stats.obj1) {
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100804 struct promex_label labels[PROMEX_MAX_LABELS-1] = {};
William Dauchy9fea4572021-11-07 10:18:47 +0100805 unsigned int srv_state_count[PROMEX_SRV_STATE_COUNT] = { 0 };
Cedric Pailletefe05e32022-12-08 09:17:01 +0000806 unsigned int srv_check_count[HCHK_STATUS_SIZE] = { 0 };
807 const char *check_state;
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100808
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200809 px = appctx->ctx.stats.obj1;
Christopher Fauletf959d082019-02-07 15:38:42 +0100810
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100811 labels[0].name = ist("proxy");
812 labels[0].value = ist2(px->id, strlen(px->id));
813
Christopher Fauletf959d082019-02-07 15:38:42 +0100814 /* skip the disabled proxies, global frontend and non-networked ones */
Willy Tarreauc3914d42020-09-24 08:39:22 +0200815 if (px->disabled || px->uuid <= 0 || !(px->cap & PR_CAP_BE))
Christopher Fauletf959d082019-02-07 15:38:42 +0100816 goto next_px;
817
William Dauchy3c6f0062021-01-25 17:29:02 +0100818 if (!stats_fill_be_stats(px, 0, stats, ST_F_TOTAL_FIELDS, &(appctx->st2)))
819 return -1;
820
Christopher Fauletf959d082019-02-07 15:38:42 +0100821 switch (appctx->st2) {
Cedric Paillet1b3d31c2022-12-08 09:17:00 +0000822 case ST_F_AGG_SRV_CHECK_STATUS: // DEPRECATED
823 case ST_F_AGG_SRV_STATUS:
William Dauchy9fea4572021-11-07 10:18:47 +0100824 if (!px->srv)
825 goto next_px;
826 sv = px->srv;
827 while (sv) {
828 srv_state = promex_srv_status(sv);
829 srv_state_count[srv_state] += 1;
830 sv = sv->next;
831 }
832 for (; appctx->ctx.stats.st_code < PROMEX_SRV_STATE_COUNT; appctx->ctx.stats.st_code++) {
833 val = mkf_u32(FN_GAUGE, srv_state_count[appctx->ctx.stats.st_code]);
834 labels[1].name = ist("state");
835 labels[1].value = promex_srv_st[appctx->ctx.stats.st_code];
836 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
837 &val, labels, &out, max))
838 goto full;
839 }
840 appctx->ctx.stats.st_code = 0;
841 goto next_px;
Cedric Pailletefe05e32022-12-08 09:17:01 +0000842 case ST_F_AGG_CHECK_STATUS:
843 if (!px->srv)
844 goto next_px;
845 sv = px->srv;
846 while (sv) {
847 srv_check_status = sv->check.status;
848 srv_check_count[srv_check_status] += 1;
849 sv = sv->next;
850 }
851 for (; appctx->ctx.stats.st_code < HCHK_STATUS_SIZE; appctx->ctx.stats.st_code++) {
852 if (get_check_status_result(appctx->ctx.stats.st_code) < CHK_RES_FAILED)
853 continue;
854 val = mkf_u32(FO_STATUS, srv_check_count[appctx->ctx.stats.st_code]);
855 check_state = get_check_status_info(appctx->ctx.stats.st_code);
856 labels[1].name = ist("state");
857 labels[1].value = ist(check_state);
858 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
859 &val, labels, &out, max))
860 goto full;
861 }
862 appctx->ctx.stats.st_code = 0;
863 goto next_px;
Christopher Fauletf959d082019-02-07 15:38:42 +0100864 case ST_F_STATUS:
William Dauchy9fea4572021-11-07 10:18:47 +0100865 bkd_state = ((px->lbprm.tot_weight > 0 || !px->srv) ? 1 : 0);
Christopher Faulet040b1192021-02-01 15:05:21 +0100866 for (; appctx->ctx.stats.st_code < PROMEX_BACK_STATE_COUNT; appctx->ctx.stats.st_code++) {
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100867 labels[1].name = ist("state");
Christopher Faulet040b1192021-02-01 15:05:21 +0100868 labels[1].value = promex_back_st[appctx->ctx.stats.st_code];
William Dauchy9fea4572021-11-07 10:18:47 +0100869 val = mkf_u32(FO_STATUS, bkd_state == appctx->ctx.stats.st_code);
William Dauchyc6464592021-01-27 22:40:17 +0100870 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100871 &val, labels, &out, max))
William Dauchyc6464592021-01-27 22:40:17 +0100872 goto full;
873 }
Christopher Faulet040b1192021-02-01 15:05:21 +0100874 appctx->ctx.stats.st_code = 0;
William Dauchyc6464592021-01-27 22:40:17 +0100875 goto next_px;
Christopher Fauletf959d082019-02-07 15:38:42 +0100876 case ST_F_QTIME:
Christopher Fauletaf4bf142019-09-24 16:35:19 +0200877 secs = (double)swrate_avg(px->be_counters.q_time, TIME_STATS_SAMPLES) / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +0100878 val = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +0100879 break;
880 case ST_F_CTIME:
Christopher Fauletaf4bf142019-09-24 16:35:19 +0200881 secs = (double)swrate_avg(px->be_counters.c_time, TIME_STATS_SAMPLES) / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +0100882 val = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +0100883 break;
884 case ST_F_RTIME:
Christopher Fauletaf4bf142019-09-24 16:35:19 +0200885 secs = (double)swrate_avg(px->be_counters.d_time, TIME_STATS_SAMPLES) / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +0100886 val = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +0100887 break;
888 case ST_F_TTIME:
Christopher Fauletaf4bf142019-09-24 16:35:19 +0200889 secs = (double)swrate_avg(px->be_counters.t_time, TIME_STATS_SAMPLES) / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +0100890 val = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +0100891 break;
Christopher Faulet8fc027d2019-11-08 15:05:31 +0100892 case ST_F_QT_MAX:
893 secs = (double)px->be_counters.qtime_max / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +0100894 val = mkf_flt(FN_MAX, secs);
Christopher Faulet8fc027d2019-11-08 15:05:31 +0100895 break;
896 case ST_F_CT_MAX:
897 secs = (double)px->be_counters.ctime_max / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +0100898 val = mkf_flt(FN_MAX, secs);
Christopher Faulet8fc027d2019-11-08 15:05:31 +0100899 break;
900 case ST_F_RT_MAX:
901 secs = (double)px->be_counters.dtime_max / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +0100902 val = mkf_flt(FN_MAX, secs);
Christopher Faulet8fc027d2019-11-08 15:05:31 +0100903 break;
904 case ST_F_TT_MAX:
905 secs = (double)px->be_counters.ttime_max / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +0100906 val = mkf_flt(FN_MAX, secs);
Christopher Faulet8fc027d2019-11-08 15:05:31 +0100907 break;
Christopher Fauletf959d082019-02-07 15:38:42 +0100908 case ST_F_REQ_TOT:
William Dauchy3c6f0062021-01-25 17:29:02 +0100909 case ST_F_CACHE_LOOKUPS:
910 case ST_F_CACHE_HITS:
911 case ST_F_COMP_IN:
912 case ST_F_COMP_OUT:
913 case ST_F_COMP_BYP:
914 case ST_F_COMP_RSP:
Christopher Fauletf959d082019-02-07 15:38:42 +0100915 if (px->mode != PR_MODE_HTTP)
916 goto next_px;
William Dauchy3c6f0062021-01-25 17:29:02 +0100917 val = stats[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +0100918 break;
Christopher Faulet32ef48e2021-02-01 14:55:37 +0100919 case ST_F_HRSP_1XX:
Christopher Fauletf959d082019-02-07 15:38:42 +0100920 case ST_F_HRSP_2XX:
Christopher Fauletf959d082019-02-07 15:38:42 +0100921 case ST_F_HRSP_3XX:
Christopher Fauletf959d082019-02-07 15:38:42 +0100922 case ST_F_HRSP_4XX:
Christopher Fauletf959d082019-02-07 15:38:42 +0100923 case ST_F_HRSP_5XX:
Christopher Fauletf959d082019-02-07 15:38:42 +0100924 case ST_F_HRSP_OTHER:
925 if (px->mode != PR_MODE_HTTP)
926 goto next_px;
Christopher Faulet32ef48e2021-02-01 14:55:37 +0100927 if (appctx->st2 != ST_F_HRSP_1XX)
928 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100929 labels[1].name = ist("code");
930 labels[1].value = promex_hrsp_code[appctx->st2 - ST_F_HRSP_1XX];
William Dauchy3c6f0062021-01-25 17:29:02 +0100931 val = stats[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +0100932 break;
933
934 default:
William Dauchy3c6f0062021-01-25 17:29:02 +0100935 val = stats[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +0100936 }
937
William Dauchy3c6f0062021-01-25 17:29:02 +0100938 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100939 &val, labels, &out, max))
Christopher Fauletf959d082019-02-07 15:38:42 +0100940 goto full;
941 next_px:
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200942 appctx->ctx.stats.obj1 = px->next;
Christopher Fauletf959d082019-02-07 15:38:42 +0100943 }
Christopher Fauletf959d082019-02-07 15:38:42 +0100944 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200945 appctx->ctx.stats.obj1 = proxies_list;
Christopher Fauletf959d082019-02-07 15:38:42 +0100946 }
947
948 end:
Christopher Faulet0c55a152019-07-04 10:03:28 +0200949 if (out.len) {
950 if (!htx_add_data_atonce(htx, out))
951 return -1; /* Unexpected and unrecoverable error */
952 channel_add_input(chn, out.len);
953 }
Christopher Fauletf959d082019-02-07 15:38:42 +0100954 return ret;
955 full:
956 ret = 0;
957 goto end;
958}
959
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500960/* Dump servers metrics (prefixed by "haproxy_server_"). It returns 1 on success,
Christopher Fauletf959d082019-02-07 15:38:42 +0100961 * 0 if <htx> is full and -1 in case of any error. */
962static int promex_dump_srv_metrics(struct appctx *appctx, struct htx *htx)
963{
964 static struct ist prefix = IST("haproxy_server_");
965 struct proxy *px;
966 struct server *sv;
Christopher Faulet37286a52021-01-20 15:20:53 +0100967 struct field val;
Christopher Fauletf959d082019-02-07 15:38:42 +0100968 struct channel *chn = si_ic(appctx->owner);
969 struct ist out = ist2(trash.area, 0);
Christopher Faulet11921e62019-07-03 11:43:17 +0200970 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
William Dauchybde2bf62021-01-25 17:29:04 +0100971 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
Christopher Fauletf959d082019-02-07 15:38:42 +0100972 int ret = 1;
Christopher Fauletaf4bf142019-09-24 16:35:19 +0200973 double secs;
William Dauchyc6464592021-01-27 22:40:17 +0100974 enum promex_srv_state state;
William Dauchyde3c3262021-02-01 13:11:51 +0100975 const char *check_state;
Christopher Fauletf959d082019-02-07 15:38:42 +0100976
Christopher Faulet37286a52021-01-20 15:20:53 +0100977 for (;appctx->st2 < ST_F_TOTAL_FIELDS; appctx->st2++) {
978 if (!(promex_st_metrics[appctx->st2].flags & appctx->ctx.stats.flags))
979 continue;
980
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200981 while (appctx->ctx.stats.obj1) {
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100982 struct promex_label labels[PROMEX_MAX_LABELS-1] = {};
983
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200984 px = appctx->ctx.stats.obj1;
Christopher Fauletf959d082019-02-07 15:38:42 +0100985
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100986 labels[0].name = ist("proxy");
987 labels[0].value = ist2(px->id, strlen(px->id));
988
Christopher Fauletf959d082019-02-07 15:38:42 +0100989 /* skip the disabled proxies, global frontend and non-networked ones */
Willy Tarreauc3914d42020-09-24 08:39:22 +0200990 if (px->disabled || px->uuid <= 0 || !(px->cap & PR_CAP_BE))
Christopher Fauletf959d082019-02-07 15:38:42 +0100991 goto next_px;
992
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +0200993 while (appctx->ctx.stats.obj2) {
994 sv = appctx->ctx.stats.obj2;
Christopher Fauletf959d082019-02-07 15:38:42 +0100995
Christopher Faulet5a2f9382021-01-28 11:24:17 +0100996 labels[1].name = ist("server");
997 labels[1].value = ist2(sv->id, strlen(sv->id));
998
William Dauchybde2bf62021-01-25 17:29:04 +0100999 if (!stats_fill_sv_stats(px, sv, 0, stats, ST_F_TOTAL_FIELDS, &(appctx->st2)))
1000 return -1;
1001
Christopher Fauleteba22942019-11-19 14:18:24 +01001002 if ((appctx->ctx.stats.flags & PROMEX_FL_NO_MAINT_SRV) && (sv->cur_admin & SRV_ADMF_MAINT))
1003 goto next_sv;
1004
Christopher Fauletf959d082019-02-07 15:38:42 +01001005 switch (appctx->st2) {
1006 case ST_F_STATUS:
William Dauchyc6464592021-01-27 22:40:17 +01001007 state = promex_srv_status(sv);
William Dauchy64a38052021-02-14 22:26:24 +01001008 for (; appctx->ctx.stats.st_code < PROMEX_SRV_STATE_COUNT; appctx->ctx.stats.st_code++) {
Christopher Faulet040b1192021-02-01 15:05:21 +01001009 val = mkf_u32(FO_STATUS, state == appctx->ctx.stats.st_code);
Christopher Faulet5a2f9382021-01-28 11:24:17 +01001010 labels[2].name = ist("state");
Christopher Faulet040b1192021-02-01 15:05:21 +01001011 labels[2].value = promex_srv_st[appctx->ctx.stats.st_code];
William Dauchyc6464592021-01-27 22:40:17 +01001012 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
Christopher Faulet5a2f9382021-01-28 11:24:17 +01001013 &val, labels, &out, max))
William Dauchyc6464592021-01-27 22:40:17 +01001014 goto full;
1015 }
Christopher Faulet040b1192021-02-01 15:05:21 +01001016 appctx->ctx.stats.st_code = 0;
William Dauchyc6464592021-01-27 22:40:17 +01001017 goto next_sv;
Christopher Fauletf959d082019-02-07 15:38:42 +01001018 case ST_F_QTIME:
Christopher Fauletaf4bf142019-09-24 16:35:19 +02001019 secs = (double)swrate_avg(sv->counters.q_time, TIME_STATS_SAMPLES) / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001020 val = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001021 break;
1022 case ST_F_CTIME:
Christopher Fauletaf4bf142019-09-24 16:35:19 +02001023 secs = (double)swrate_avg(sv->counters.c_time, TIME_STATS_SAMPLES) / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001024 val = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001025 break;
1026 case ST_F_RTIME:
Christopher Fauletaf4bf142019-09-24 16:35:19 +02001027 secs = (double)swrate_avg(sv->counters.d_time, TIME_STATS_SAMPLES) / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001028 val = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001029 break;
1030 case ST_F_TTIME:
Christopher Fauletaf4bf142019-09-24 16:35:19 +02001031 secs = (double)swrate_avg(sv->counters.t_time, TIME_STATS_SAMPLES) / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001032 val = mkf_flt(FN_AVG, secs);
Christopher Fauletf959d082019-02-07 15:38:42 +01001033 break;
Christopher Faulet8fc027d2019-11-08 15:05:31 +01001034 case ST_F_QT_MAX:
1035 secs = (double)sv->counters.qtime_max / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001036 val = mkf_flt(FN_MAX, secs);
Christopher Faulet8fc027d2019-11-08 15:05:31 +01001037 break;
1038 case ST_F_CT_MAX:
1039 secs = (double)sv->counters.ctime_max / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001040 val = mkf_flt(FN_MAX, secs);
Christopher Faulet8fc027d2019-11-08 15:05:31 +01001041 break;
1042 case ST_F_RT_MAX:
1043 secs = (double)sv->counters.dtime_max / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001044 val = mkf_flt(FN_MAX, secs);
Christopher Faulet8fc027d2019-11-08 15:05:31 +01001045 break;
1046 case ST_F_TT_MAX:
1047 secs = (double)sv->counters.ttime_max / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001048 val = mkf_flt(FN_MAX, secs);
Christopher Faulet8fc027d2019-11-08 15:05:31 +01001049 break;
Christopher Fauletcf403f32019-11-21 14:35:46 +01001050 case ST_F_CHECK_STATUS:
1051 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) != CHK_ST_ENABLED)
1052 goto next_sv;
William Dauchyde3c3262021-02-01 13:11:51 +01001053
Christopher Faulet040b1192021-02-01 15:05:21 +01001054 for (; appctx->ctx.stats.st_code < HCHK_STATUS_SIZE; appctx->ctx.stats.st_code++) {
1055 if (get_check_status_result(appctx->ctx.stats.st_code) < CHK_RES_FAILED)
William Dauchyde3c3262021-02-01 13:11:51 +01001056 continue;
Christopher Faulet040b1192021-02-01 15:05:21 +01001057 val = mkf_u32(FO_STATUS, sv->check.status == appctx->ctx.stats.st_code);
1058 check_state = get_check_status_info(appctx->ctx.stats.st_code);
William Dauchyde3c3262021-02-01 13:11:51 +01001059 labels[2].name = ist("state");
1060 labels[2].value = ist2(check_state, strlen(check_state));
1061 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
1062 &val, labels, &out, max))
1063 goto full;
1064 }
Christopher Faulet040b1192021-02-01 15:05:21 +01001065 appctx->ctx.stats.st_code = 0;
William Dauchyde3c3262021-02-01 13:11:51 +01001066 goto next_sv;
Christopher Fauletcf403f32019-11-21 14:35:46 +01001067 case ST_F_CHECK_CODE:
1068 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) != CHK_ST_ENABLED)
1069 goto next_sv;
Christopher Faulet37286a52021-01-20 15:20:53 +01001070 val = mkf_u32(FN_OUTPUT, (sv->check.status < HCHK_STATUS_L57DATA) ? 0 : sv->check.code);
Christopher Fauletcf403f32019-11-21 14:35:46 +01001071 break;
Christopher Faulet2711e512020-02-27 16:12:07 +01001072 case ST_F_CHECK_DURATION:
1073 if (sv->check.status < HCHK_STATUS_CHECKED)
1074 goto next_sv;
1075 secs = (double)sv->check.duration / 1000.0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001076 val = mkf_flt(FN_DURATION, secs);
Christopher Faulet2711e512020-02-27 16:12:07 +01001077 break;
Marcin Deranek3c27dda2020-05-15 18:32:51 +02001078 case ST_F_REQ_TOT:
Christopher Fauletf959d082019-02-07 15:38:42 +01001079 if (px->mode != PR_MODE_HTTP)
1080 goto next_px;
William Dauchybde2bf62021-01-25 17:29:04 +01001081 val = stats[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +01001082 break;
Christopher Faulet32ef48e2021-02-01 14:55:37 +01001083 case ST_F_HRSP_1XX:
Christopher Fauletf959d082019-02-07 15:38:42 +01001084 case ST_F_HRSP_2XX:
Christopher Fauletf959d082019-02-07 15:38:42 +01001085 case ST_F_HRSP_3XX:
Christopher Fauletf959d082019-02-07 15:38:42 +01001086 case ST_F_HRSP_4XX:
Christopher Fauletf959d082019-02-07 15:38:42 +01001087 case ST_F_HRSP_5XX:
Christopher Fauletf959d082019-02-07 15:38:42 +01001088 case ST_F_HRSP_OTHER:
1089 if (px->mode != PR_MODE_HTTP)
1090 goto next_px;
Christopher Faulet32ef48e2021-02-01 14:55:37 +01001091 if (appctx->st2 != ST_F_HRSP_1XX)
1092 appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR;
Christopher Faulet5a2f9382021-01-28 11:24:17 +01001093 labels[2].name = ist("code");
1094 labels[2].value = promex_hrsp_code[appctx->st2 - ST_F_HRSP_1XX];
William Dauchybde2bf62021-01-25 17:29:04 +01001095 val = stats[appctx->st2];
Christopher Fauletc55a6262020-07-10 15:39:39 +02001096 break;
Christopher Fauletf959d082019-02-07 15:38:42 +01001097
1098 default:
William Dauchybde2bf62021-01-25 17:29:04 +01001099 val = stats[appctx->st2];
Christopher Fauletf959d082019-02-07 15:38:42 +01001100 }
1101
William Dauchyc6464592021-01-27 22:40:17 +01001102 if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2],
Christopher Faulet5a2f9382021-01-28 11:24:17 +01001103 &val, labels, &out, max))
Christopher Fauletf959d082019-02-07 15:38:42 +01001104 goto full;
Christopher Fauleteba22942019-11-19 14:18:24 +01001105 next_sv:
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001106 appctx->ctx.stats.obj2 = sv->next;
Christopher Fauletf959d082019-02-07 15:38:42 +01001107 }
1108
1109 next_px:
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001110 appctx->ctx.stats.obj1 = px->next;
1111 appctx->ctx.stats.obj2 = (appctx->ctx.stats.obj1 ? ((struct proxy *)appctx->ctx.stats.obj1)->srv : NULL);
Christopher Fauletf959d082019-02-07 15:38:42 +01001112 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001113 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001114 appctx->ctx.stats.obj1 = proxies_list;
1115 appctx->ctx.stats.obj2 = (appctx->ctx.stats.obj1 ? ((struct proxy *)appctx->ctx.stats.obj1)->srv : NULL);
Christopher Fauletf959d082019-02-07 15:38:42 +01001116 }
1117
1118
1119 end:
Christopher Faulet0c55a152019-07-04 10:03:28 +02001120 if (out.len) {
1121 if (!htx_add_data_atonce(htx, out))
1122 return -1; /* Unexpected and unrecoverable error */
1123 channel_add_input(chn, out.len);
1124 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001125 return ret;
1126 full:
1127 ret = 0;
1128 goto end;
1129}
1130
William Dauchy69164222021-02-07 20:42:38 +01001131/* Dump stick table metrics (prefixed by "haproxy_sticktable_"). It returns 1 on success,
1132 * 0 if <htx> is full and -1 in case of any error. */
1133static int promex_dump_sticktable_metrics(struct appctx *appctx, struct htx *htx)
1134{
1135 static struct ist prefix = IST("haproxy_sticktable_");
1136 struct field val;
1137 struct channel *chn = si_ic(appctx->owner);
1138 struct ist out = ist2(trash.area, 0);
1139 size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx));
1140 int ret = 1;
1141 struct stktable *t;
1142
1143 for (; appctx->st2 < STICKTABLE_TOTAL_FIELDS; appctx->st2++) {
1144 if (!(promex_sticktable_metrics[appctx->st2].flags & appctx->ctx.stats.flags))
1145 continue;
1146
1147 while (appctx->ctx.stats.obj1) {
1148 struct promex_label labels[PROMEX_MAX_LABELS - 1] = {};
1149
1150 t = appctx->ctx.stats.obj1;
1151 if (!t->size)
1152 goto next_px;
1153
1154 labels[0].name = ist("name");
1155 labels[0].value = ist2(t->id, strlen(t->id));
1156 labels[1].name = ist("type");
1157 labels[1].value = ist2(stktable_types[t->type].kw, strlen(stktable_types[t->type].kw));
1158 switch (appctx->st2) {
1159 case STICKTABLE_SIZE:
1160 val = mkf_u32(FN_GAUGE, t->size);
1161 break;
1162 case STICKTABLE_USED:
1163 val = mkf_u32(FN_GAUGE, t->current);
1164 break;
1165 default:
1166 goto next_px;
1167 }
1168
1169 if (!promex_dump_metric(appctx, htx, prefix,
1170 &promex_sticktable_metrics[appctx->st2],
1171 &val, labels, &out, max))
1172 goto full;
1173
1174 next_px:
1175 appctx->ctx.stats.obj1 = t->next;
1176 }
1177 appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR;
1178 appctx->ctx.stats.obj1 = stktables_list;
1179 }
1180
1181 end:
1182 if (out.len) {
1183 if (!htx_add_data_atonce(htx, out))
1184 return -1; /* Unexpected and unrecoverable error */
1185 channel_add_input(chn, out.len);
1186 }
1187 return ret;
1188 full:
1189 ret = 0;
1190 goto end;
1191}
1192
Christopher Fauletf959d082019-02-07 15:38:42 +01001193/* Dump all metrics (global, frontends, backends and servers) depending on the
1194 * dumper state (appctx->st1). It returns 1 on success, 0 if <htx> is full and
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001195 * -1 in case of any error.
1196 * Uses <appctx.ctx.stats.obj1> as a pointer to the current proxy and <obj2> as
1197 * a pointer to the current server/listener. */
Christopher Fauletf959d082019-02-07 15:38:42 +01001198static int promex_dump_metrics(struct appctx *appctx, struct stream_interface *si, struct htx *htx)
1199{
1200 int ret;
1201
1202 switch (appctx->st1) {
1203 case PROMEX_DUMPER_INIT:
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001204 appctx->ctx.stats.obj1 = NULL;
1205 appctx->ctx.stats.obj2 = NULL;
Christopher Fauletefde9552020-06-05 08:18:56 +02001206 appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_INFO_METRIC);
Christopher Faulet040b1192021-02-01 15:05:21 +01001207 appctx->ctx.stats.st_code = 0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001208 appctx->st2 = INF_NAME;
Christopher Fauletf959d082019-02-07 15:38:42 +01001209 appctx->st1 = PROMEX_DUMPER_GLOBAL;
1210 /* fall through */
1211
1212 case PROMEX_DUMPER_GLOBAL:
Christopher Faulet78407ce2019-11-18 14:47:08 +01001213 if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_GLOBAL) {
1214 ret = promex_dump_global_metrics(appctx, htx);
1215 if (ret <= 0) {
1216 if (ret == -1)
1217 goto error;
1218 goto full;
1219 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001220 }
1221
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001222 appctx->ctx.stats.obj1 = proxies_list;
1223 appctx->ctx.stats.obj2 = NULL;
Christopher Fauletefde9552020-06-05 08:18:56 +02001224 appctx->ctx.stats.flags &= ~PROMEX_FL_INFO_METRIC;
Christopher Fauletb713c4f2021-01-20 15:02:50 +01001225 appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_FRONT_METRIC);
Christopher Faulet040b1192021-02-01 15:05:21 +01001226 appctx->ctx.stats.st_code = 0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001227 appctx->st2 = ST_F_PXNAME;
Christopher Fauletf959d082019-02-07 15:38:42 +01001228 appctx->st1 = PROMEX_DUMPER_FRONT;
1229 /* fall through */
1230
1231 case PROMEX_DUMPER_FRONT:
Christopher Faulet78407ce2019-11-18 14:47:08 +01001232 if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_FRONT) {
1233 ret = promex_dump_front_metrics(appctx, htx);
1234 if (ret <= 0) {
1235 if (ret == -1)
1236 goto error;
1237 goto full;
1238 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001239 }
1240
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001241 appctx->ctx.stats.obj1 = proxies_list;
William Dauchye3f7bd52021-02-14 23:22:56 +01001242 appctx->ctx.stats.obj2 = LIST_NEXT(&proxies_list->conf.listeners, struct listener *, by_fe);
Christopher Fauletb713c4f2021-01-20 15:02:50 +01001243 appctx->ctx.stats.flags &= ~PROMEX_FL_FRONT_METRIC;
William Dauchye3f7bd52021-02-14 23:22:56 +01001244 appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_LI_METRIC);
1245 appctx->ctx.stats.st_code = 0;
1246 appctx->st2 = ST_F_PXNAME;
1247 appctx->st1 = PROMEX_DUMPER_LI;
1248 /* fall through */
1249
1250 case PROMEX_DUMPER_LI:
1251 if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_LI) {
1252 ret = promex_dump_listener_metrics(appctx, htx);
1253 if (ret <= 0) {
1254 if (ret == -1)
1255 goto error;
1256 goto full;
1257 }
1258 }
1259
1260 appctx->ctx.stats.obj1 = proxies_list;
1261 appctx->ctx.stats.obj2 = NULL;
1262 appctx->ctx.stats.flags &= ~PROMEX_FL_LI_METRIC;
Christopher Fauletb713c4f2021-01-20 15:02:50 +01001263 appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_BACK_METRIC);
Christopher Faulet040b1192021-02-01 15:05:21 +01001264 appctx->ctx.stats.st_code = 0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001265 appctx->st2 = ST_F_PXNAME;
Christopher Fauletf959d082019-02-07 15:38:42 +01001266 appctx->st1 = PROMEX_DUMPER_BACK;
1267 /* fall through */
1268
1269 case PROMEX_DUMPER_BACK:
Christopher Faulet78407ce2019-11-18 14:47:08 +01001270 if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_BACK) {
1271 ret = promex_dump_back_metrics(appctx, htx);
1272 if (ret <= 0) {
1273 if (ret == -1)
1274 goto error;
1275 goto full;
1276 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001277 }
1278
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001279 appctx->ctx.stats.obj1 = proxies_list;
1280 appctx->ctx.stats.obj2 = (appctx->ctx.stats.obj1 ? ((struct proxy *)appctx->ctx.stats.obj1)->srv : NULL);
Christopher Fauletb713c4f2021-01-20 15:02:50 +01001281 appctx->ctx.stats.flags &= ~PROMEX_FL_BACK_METRIC;
1282 appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_SRV_METRIC);
Christopher Faulet040b1192021-02-01 15:05:21 +01001283 appctx->ctx.stats.st_code = 0;
Christopher Faulet37286a52021-01-20 15:20:53 +01001284 appctx->st2 = ST_F_PXNAME;
Christopher Fauletf959d082019-02-07 15:38:42 +01001285 appctx->st1 = PROMEX_DUMPER_SRV;
1286 /* fall through */
1287
1288 case PROMEX_DUMPER_SRV:
Christopher Faulet78407ce2019-11-18 14:47:08 +01001289 if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_SERVER) {
1290 ret = promex_dump_srv_metrics(appctx, htx);
1291 if (ret <= 0) {
1292 if (ret == -1)
1293 goto error;
1294 goto full;
1295 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001296 }
1297
William Dauchy69164222021-02-07 20:42:38 +01001298 appctx->ctx.stats.obj1 = stktables_list;
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001299 appctx->ctx.stats.obj2 = NULL;
Christopher Fauletb713c4f2021-01-20 15:02:50 +01001300 appctx->ctx.stats.flags &= ~(PROMEX_FL_METRIC_HDR|PROMEX_FL_SRV_METRIC);
William Dauchy69164222021-02-07 20:42:38 +01001301 appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_STICKTABLE_METRIC);
1302 appctx->st2 = STICKTABLE_SIZE;
1303 appctx->st1 = PROMEX_DUMPER_STICKTABLE;
1304 /* fall through */
1305
1306 case PROMEX_DUMPER_STICKTABLE:
1307 if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_STICKTABLE) {
1308 ret = promex_dump_sticktable_metrics(appctx, htx);
1309 if (ret <= 0) {
1310 if (ret == -1)
1311 goto error;
1312 goto full;
1313 }
1314 }
1315
1316 appctx->ctx.stats.obj1 = NULL;
1317 appctx->ctx.stats.obj2 = NULL;
1318 appctx->ctx.stats.flags &= ~(PROMEX_FL_METRIC_HDR|PROMEX_FL_STICKTABLE_METRIC);
Christopher Fauletf959d082019-02-07 15:38:42 +01001319 appctx->st2 = 0;
1320 appctx->st1 = PROMEX_DUMPER_DONE;
1321 /* fall through */
1322
1323 case PROMEX_DUMPER_DONE:
1324 default:
1325 break;
1326 }
1327
1328 return 1;
1329
1330 full:
1331 si_rx_room_blk(si);
1332 return 0;
1333 error:
1334 /* unrecoverable error */
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02001335 appctx->ctx.stats.obj1 = NULL;
1336 appctx->ctx.stats.obj2 = NULL;
Christopher Fauletf959d082019-02-07 15:38:42 +01001337 appctx->ctx.stats.flags = 0;
1338 appctx->st2 = 0;
1339 appctx->st1 = PROMEX_DUMPER_DONE;
1340 return -1;
1341}
1342
Ilya Shipitsince7b00f2020-03-23 22:28:40 +05001343/* Parse the query string of request URI to filter the metrics. It returns 1 on
Christopher Faulet78407ce2019-11-18 14:47:08 +01001344 * success and -1 on error. */
1345static int promex_parse_uri(struct appctx *appctx, struct stream_interface *si)
1346{
1347 struct channel *req = si_oc(si);
1348 struct channel *res = si_ic(si);
1349 struct htx *req_htx, *res_htx;
1350 struct htx_sl *sl;
William Dauchyc65f6562019-11-26 12:56:26 +01001351 char *p, *key, *value;
1352 const char *end;
Christopher Faulet78407ce2019-11-18 14:47:08 +01001353 struct buffer *err;
1354 int default_scopes = PROMEX_FL_SCOPE_ALL;
1355 int len;
1356
1357 /* Get the query-string */
1358 req_htx = htxbuf(&req->buf);
1359 sl = http_get_stline(req_htx);
1360 if (!sl)
1361 goto error;
1362 p = http_find_param_list(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), '?');
1363 if (!p)
1364 goto end;
1365 end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Christopher Faulet78407ce2019-11-18 14:47:08 +01001366
William Dauchyc65f6562019-11-26 12:56:26 +01001367 /* copy the query-string */
1368 len = end - p;
Christopher Faulet78407ce2019-11-18 14:47:08 +01001369 chunk_reset(&trash);
1370 memcpy(trash.area, p, len);
1371 trash.area[len] = 0;
Christopher Faulet78407ce2019-11-18 14:47:08 +01001372 p = trash.area;
William Dauchyc65f6562019-11-26 12:56:26 +01001373 end = trash.area + len;
Christopher Faulet78407ce2019-11-18 14:47:08 +01001374
1375 /* Parse the query-string */
William Dauchyc65f6562019-11-26 12:56:26 +01001376 while (p < end && *p && *p != '#') {
1377 value = NULL;
1378
1379 /* decode parameter name */
1380 key = p;
1381 while (p < end && *p != '=' && *p != '&' && *p != '#')
Christopher Faulet78407ce2019-11-18 14:47:08 +01001382 ++p;
William Dauchyc65f6562019-11-26 12:56:26 +01001383 /* found a value */
1384 if (*p == '=') {
1385 *(p++) = 0;
1386 value = p;
1387 }
1388 else if (*p == '&')
1389 *(p++) = 0;
1390 else if (*p == '#')
1391 *p = 0;
Willy Tarreau62ba9ba2020-04-23 17:54:47 +02001392 len = url_decode(key, 1);
William Dauchyc65f6562019-11-26 12:56:26 +01001393 if (len == -1)
1394 goto error;
Christopher Faulet78407ce2019-11-18 14:47:08 +01001395
William Dauchyc65f6562019-11-26 12:56:26 +01001396 /* decode value */
1397 if (value) {
1398 while (p < end && *p != '=' && *p != '&' && *p != '#')
1399 ++p;
1400 if (*p == '=')
1401 goto error;
1402 if (*p == '&')
1403 *(p++) = 0;
1404 else if (*p == '#')
1405 *p = 0;
Willy Tarreau62ba9ba2020-04-23 17:54:47 +02001406 len = url_decode(value, 1);
William Dauchyc65f6562019-11-26 12:56:26 +01001407 if (len == -1)
1408 goto error;
1409 }
1410
Tim Duesterhus8cb12a82021-01-02 22:31:55 +01001411 if (strcmp(key, "scope") == 0) {
William Dauchyc65f6562019-11-26 12:56:26 +01001412 default_scopes = 0; /* at least a scope defined, unset default scopes */
1413 if (!value)
1414 goto error;
1415 else if (*value == 0)
Christopher Faulet78407ce2019-11-18 14:47:08 +01001416 appctx->ctx.stats.flags &= ~PROMEX_FL_SCOPE_ALL;
William Dauchyc65f6562019-11-26 12:56:26 +01001417 else if (*value == '*')
Christopher Faulet78407ce2019-11-18 14:47:08 +01001418 appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_ALL;
Tim Duesterhus8cb12a82021-01-02 22:31:55 +01001419 else if (strcmp(value, "global") == 0)
William Dauchyc65f6562019-11-26 12:56:26 +01001420 appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_GLOBAL;
Tim Duesterhus8cb12a82021-01-02 22:31:55 +01001421 else if (strcmp(value, "server") == 0)
William Dauchyc65f6562019-11-26 12:56:26 +01001422 appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_SERVER;
Tim Duesterhus8cb12a82021-01-02 22:31:55 +01001423 else if (strcmp(value, "backend") == 0)
Christopher Faulet78407ce2019-11-18 14:47:08 +01001424 appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_BACK;
Tim Duesterhus8cb12a82021-01-02 22:31:55 +01001425 else if (strcmp(value, "frontend") == 0)
Christopher Faulet78407ce2019-11-18 14:47:08 +01001426 appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_FRONT;
William Dauchye3f7bd52021-02-14 23:22:56 +01001427 else if (strcmp(value, "listener") == 0)
1428 appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_LI;
William Dauchy69164222021-02-07 20:42:38 +01001429 else if (strcmp(value, "sticktable") == 0)
1430 appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_STICKTABLE;
Christopher Faulet78407ce2019-11-18 14:47:08 +01001431 else
1432 goto error;
Christopher Faulet78407ce2019-11-18 14:47:08 +01001433 }
Tim Duesterhus8cb12a82021-01-02 22:31:55 +01001434 else if (strcmp(key, "no-maint") == 0)
Christopher Fauleteba22942019-11-19 14:18:24 +01001435 appctx->ctx.stats.flags |= PROMEX_FL_NO_MAINT_SRV;
Christopher Faulet78407ce2019-11-18 14:47:08 +01001436 }
1437
1438 end:
1439 appctx->ctx.stats.flags |= default_scopes;
1440 return 1;
1441
1442 error:
1443 err = &http_err_chunks[HTTP_ERR_400];
1444 channel_erase(res);
1445 res->buf.data = b_data(err);
1446 memcpy(res->buf.area, b_head(err), b_data(err));
1447 res_htx = htx_from_buf(&res->buf);
1448 channel_add_input(res, res_htx->data);
1449 appctx->st0 = PROMEX_ST_END;
1450 return -1;
1451}
1452
Christopher Fauletf959d082019-02-07 15:38:42 +01001453/* Send HTTP headers of the response. It returns 1 on success and 0 if <htx> is
1454 * full. */
1455static int promex_send_headers(struct appctx *appctx, struct stream_interface *si, struct htx *htx)
1456{
Christopher Faulet9744f7c2019-03-27 15:48:53 +01001457 struct channel *chn = si_ic(appctx->owner);
Christopher Fauletf959d082019-02-07 15:38:42 +01001458 struct htx_sl *sl;
1459 unsigned int flags;
1460
1461 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);
1462 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("200"), ist("OK"));
1463 if (!sl)
1464 goto full;
1465 sl->info.res.status = 200;
1466 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
Christopher Fauletf959d082019-02-07 15:38:42 +01001467 !htx_add_header(htx, ist("Content-Type"), ist("text/plain; version=0.0.4")) ||
1468 !htx_add_header(htx, ist("Transfer-Encoding"), ist("chunked")) ||
1469 !htx_add_endof(htx, HTX_BLK_EOH))
1470 goto full;
1471
Christopher Faulet9744f7c2019-03-27 15:48:53 +01001472 channel_add_input(chn, htx->data);
Christopher Fauletf959d082019-02-07 15:38:42 +01001473 return 1;
1474 full:
1475 htx_reset(htx);
1476 si_rx_room_blk(si);
1477 return 0;
1478}
1479
1480/* The function returns 1 if the initialisation is complete, 0 if
1481 * an errors occurs and -1 if more data are required for initializing
1482 * the applet.
1483 */
1484static int promex_appctx_init(struct appctx *appctx, struct proxy *px, struct stream *strm)
1485{
1486 appctx->st0 = PROMEX_ST_INIT;
1487 return 1;
1488}
1489
1490/* The main I/O handler for the promex applet. */
1491static void promex_appctx_handle_io(struct appctx *appctx)
1492{
1493 struct stream_interface *si = appctx->owner;
1494 struct stream *s = si_strm(si);
1495 struct channel *req = si_oc(si);
1496 struct channel *res = si_ic(si);
1497 struct htx *req_htx, *res_htx;
1498 int ret;
1499
1500 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf959d082019-02-07 15:38:42 +01001501 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
1502 goto out;
1503
Ilya Shipitsince7b00f2020-03-23 22:28:40 +05001504 /* Check if the input buffer is available. */
Christopher Fauletf959d082019-02-07 15:38:42 +01001505 if (!b_size(&res->buf)) {
1506 si_rx_room_blk(si);
1507 goto out;
1508 }
1509
1510 switch (appctx->st0) {
1511 case PROMEX_ST_INIT:
Christopher Faulet78407ce2019-11-18 14:47:08 +01001512 ret = promex_parse_uri(appctx, si);
1513 if (ret <= 0) {
1514 if (ret == -1)
1515 goto error;
1516 goto out;
1517 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001518 appctx->st0 = PROMEX_ST_HEAD;
1519 appctx->st1 = PROMEX_DUMPER_INIT;
1520 /* fall through */
1521
1522 case PROMEX_ST_HEAD:
1523 if (!promex_send_headers(appctx, si, res_htx))
1524 goto out;
1525 appctx->st0 = ((s->txn->meth == HTTP_METH_HEAD) ? PROMEX_ST_DONE : PROMEX_ST_DUMP);
1526 /* fall through */
1527
1528 case PROMEX_ST_DUMP:
1529 ret = promex_dump_metrics(appctx, si, res_htx);
1530 if (ret <= 0) {
1531 if (ret == -1)
1532 goto error;
1533 goto out;
1534 }
1535 appctx->st0 = PROMEX_ST_DONE;
1536 /* fall through */
1537
1538 case PROMEX_ST_DONE:
Christopher Fauletae92de02022-04-07 10:19:46 +02001539 /* no more data are expected. If the response buffer is
1540 * empty, be sure to add something (EOT block in this
1541 * case) to have something to send. It is important to
1542 * be sure the EOM flags will be handled by the
1543 * endpoint.
1544 */
1545 if (htx_is_empty(res_htx)) {
1546 if (!htx_add_endof(res_htx, HTX_BLK_EOT)) {
1547 si_rx_room_blk(si);
1548 goto out;
1549 }
1550 channel_add_input(res, 1);
1551 }
1552 res_htx->flags |= HTX_FL_EOM;
Christopher Faulet069c4602022-03-07 15:56:20 +01001553 res->flags |= CF_EOI;
Christopher Faulet9744f7c2019-03-27 15:48:53 +01001554 appctx->st0 = PROMEX_ST_END;
1555 /* fall through */
Christopher Fauletf959d082019-02-07 15:38:42 +01001556
Christopher Faulet9744f7c2019-03-27 15:48:53 +01001557 case PROMEX_ST_END:
1558 if (!(res->flags & CF_SHUTR)) {
1559 res->flags |= CF_READ_NULL;
1560 si_shutr(si);
1561 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001562 }
1563
Christopher Fauletf959d082019-02-07 15:38:42 +01001564 out:
1565 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9744f7c2019-03-27 15:48:53 +01001566
1567 /* eat the whole request */
1568 if (co_data(req)) {
1569 req_htx = htx_from_buf(&req->buf);
1570 co_htx_skip(req, req_htx, co_data(req));
1571 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001572 return;
1573
1574 error:
1575 res->flags |= CF_READ_NULL;
1576 si_shutr(si);
1577 si_shutw(si);
Christopher Faulet53a7bf62023-01-13 08:53:23 +01001578 goto out;
Christopher Fauletf959d082019-02-07 15:38:42 +01001579}
1580
1581struct applet promex_applet = {
1582 .obj_type = OBJ_TYPE_APPLET,
1583 .name = "<PROMEX>", /* used for logging */
1584 .init = promex_appctx_init,
1585 .fct = promex_appctx_handle_io,
1586};
1587
1588static enum act_parse_ret service_parse_prometheus_exporter(const char **args, int *cur_arg, struct proxy *px,
1589 struct act_rule *rule, char **err)
1590{
1591 /* Prometheus exporter service is only available on "http-request" rulesets */
1592 if (rule->from != ACT_F_HTTP_REQ) {
1593 memprintf(err, "Prometheus exporter service only available on 'http-request' rulesets");
1594 return ACT_RET_PRS_ERR;
1595 }
Christopher Fauletf959d082019-02-07 15:38:42 +01001596
1597 /* Add applet pointer in the rule. */
1598 rule->applet = promex_applet;
1599
1600 return ACT_RET_PRS_OK;
1601}
1602static void promex_register_build_options(void)
1603{
1604 char *ptr = NULL;
1605
1606 memprintf(&ptr, "Built with the Prometheus exporter as a service");
1607 hap_register_build_opts(ptr, 1);
1608}
1609
1610
1611static struct action_kw_list service_actions = { ILH, {
1612 { "prometheus-exporter", service_parse_prometheus_exporter },
1613 { /* END */ }
1614}};
1615
1616INITCALL1(STG_REGISTER, service_keywords_register, &service_actions);
1617INITCALL0(STG_REGISTER, promex_register_build_options);