blob: 84a4f9b6e56819a3a3452da551c9df95ad148949 [file] [log] [blame]
William Lallemand74c24fb2016-11-21 17:18:36 +01001/*
2 * Functions dedicated to statistics output and the stats socket
3 *
4 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
5 * Copyright 2007-2009 Krzysztof Piotr Oledzki <ole@ans.pl>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
14#include <ctype.h>
15#include <errno.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010016#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <pwd.h>
20#include <grp.h>
21
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020027#include <haproxy/activity.h>
Willy Tarreau91cefca2022-05-03 17:08:29 +020028#include <haproxy/applet.h>
Willy Tarreau49801602020-06-04 22:50:02 +020029#include <haproxy/backend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020030#include <haproxy/base64.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020031#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020032#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020033#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020034#include <haproxy/cli.h>
Willy Tarreau55542642021-10-08 09:33:24 +020035#include <haproxy/clock.h>
Willy Tarreau0a3bd392020-06-04 08:52:38 +020036#include <haproxy/compression.h>
Willy Tarreau2a83d602020-05-27 16:58:08 +020037#include <haproxy/debug.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020038#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/fd.h>
40#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020041#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020042#include <haproxy/global.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020043#include <haproxy/http.h>
Willy Tarreaub7fc4c42021-10-06 18:56:42 +020044#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020045#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020046#include <haproxy/htx.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020047#include <haproxy/list.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020048#include <haproxy/listener.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020049#include <haproxy/log.h>
Willy Tarreau2cd58092020-06-04 15:10:43 +020050#include <haproxy/map-t.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020051#include <haproxy/pattern-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020052#include <haproxy/pipe.h>
53#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020054#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010055#include <haproxy/resolvers.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020056#include <haproxy/sc_strm.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020057#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020058#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020059#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020060#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020061#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020062#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020063#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020064#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/tools.h>
Willy Tarreau8c42b8a2020-06-04 19:27:34 +020066#include <haproxy/uri_auth-t.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020067#include <haproxy/version.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010068
William Lallemand74c24fb2016-11-21 17:18:36 +010069
Christopher Faulet2b9b6782019-02-27 16:42:58 +010070/* status codes available for the stats admin page (strictly 4 chars length) */
71const char *stat_status_codes[STAT_STATUS_SIZE] = {
72 [STAT_STATUS_DENY] = "DENY",
73 [STAT_STATUS_DONE] = "DONE",
74 [STAT_STATUS_ERRP] = "ERRP",
75 [STAT_STATUS_EXCD] = "EXCD",
76 [STAT_STATUS_NONE] = "NONE",
77 [STAT_STATUS_PART] = "PART",
78 [STAT_STATUS_UNKN] = "UNKN",
79 [STAT_STATUS_IVAL] = "IVAL",
80};
81
Willy Tarreau0baac8c2016-11-22 16:36:53 +010082/* These are the field names for each INF_* field position. Please pay attention
83 * to always use the exact same name except that the strings for new names must
84 * be lower case or CamelCase while the enum entries must be upper case.
85 */
Willy Tarreaueaa55372019-10-09 07:39:11 +020086const struct name_desc info_fields[INF_TOTAL_FIELDS] = {
Willy Tarreau6d4897e2019-10-11 16:31:46 +020087 [INF_NAME] = { .name = "Name", .desc = "Product name" },
88 [INF_VERSION] = { .name = "Version", .desc = "Product version" },
89 [INF_RELEASE_DATE] = { .name = "Release_date", .desc = "Date of latest source code update" },
90 [INF_NBTHREAD] = { .name = "Nbthread", .desc = "Number of started threads (global.nbthread)" },
Willy Tarreau91358592021-06-15 08:08:04 +020091 [INF_NBPROC] = { .name = "Nbproc", .desc = "Number of started worker processes (historical, always 1)" },
Willy Tarreaue8422bf2021-06-15 09:08:18 +020092 [INF_PROCESS_NUM] = { .name = "Process_num", .desc = "Relative worker process number (1)" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +020093 [INF_PID] = { .name = "Pid", .desc = "This worker process identifier for the system" },
94 [INF_UPTIME] = { .name = "Uptime", .desc = "How long ago this worker process was started (days+hours+minutes+seconds)" },
95 [INF_UPTIME_SEC] = { .name = "Uptime_sec", .desc = "How long ago this worker process was started (seconds)" },
William Dauchydefd1562021-01-15 22:41:38 +010096 [INF_START_TIME_SEC] = { .name = "Start_time_sec", .desc = "Start time in seconds" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +020097 [INF_MEMMAX_MB] = { .name = "Memmax_MB", .desc = "Worker process's hard limit on memory usage in MB (-m on command line)" },
William Dauchya8766cf2021-01-15 22:41:37 +010098 [INF_MEMMAX_BYTES] = { .name = "Memmax_bytes", .desc = "Worker process's hard limit on memory usage in byes (-m on command line)" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +020099 [INF_POOL_ALLOC_MB] = { .name = "PoolAlloc_MB", .desc = "Amount of memory allocated in pools (in MB)" },
William Dauchya8766cf2021-01-15 22:41:37 +0100100 [INF_POOL_ALLOC_BYTES] = { .name = "PoolAlloc_bytes", .desc = "Amount of memory allocated in pools (in bytes)" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200101 [INF_POOL_USED_MB] = { .name = "PoolUsed_MB", .desc = "Amount of pool memory currently used (in MB)" },
William Dauchya8766cf2021-01-15 22:41:37 +0100102 [INF_POOL_USED_BYTES] = { .name = "PoolUsed_bytes", .desc = "Amount of pool memory currently used (in bytes)" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200103 [INF_POOL_FAILED] = { .name = "PoolFailed", .desc = "Number of failed pool allocations since this worker was started" },
104 [INF_ULIMIT_N] = { .name = "Ulimit-n", .desc = "Hard limit on the number of per-process file descriptors" },
105 [INF_MAXSOCK] = { .name = "Maxsock", .desc = "Hard limit on the number of per-process sockets" },
106 [INF_MAXCONN] = { .name = "Maxconn", .desc = "Hard limit on the number of per-process connections (configured or imposed by Ulimit-n)" },
107 [INF_HARD_MAXCONN] = { .name = "Hard_maxconn", .desc = "Hard limit on the number of per-process connections (imposed by Memmax_MB or Ulimit-n)" },
108 [INF_CURR_CONN] = { .name = "CurrConns", .desc = "Current number of connections on this worker process" },
109 [INF_CUM_CONN] = { .name = "CumConns", .desc = "Total number of connections on this worker process since started" },
110 [INF_CUM_REQ] = { .name = "CumReq", .desc = "Total number of requests on this worker process since started" },
111 [INF_MAX_SSL_CONNS] = { .name = "MaxSslConns", .desc = "Hard limit on the number of per-process SSL endpoints (front+back), 0=unlimited" },
112 [INF_CURR_SSL_CONNS] = { .name = "CurrSslConns", .desc = "Current number of SSL endpoints on this worker process (front+back)" },
113 [INF_CUM_SSL_CONNS] = { .name = "CumSslConns", .desc = "Total number of SSL endpoints on this worker process since started (front+back)" },
114 [INF_MAXPIPES] = { .name = "Maxpipes", .desc = "Hard limit on the number of pipes for splicing, 0=unlimited" },
115 [INF_PIPES_USED] = { .name = "PipesUsed", .desc = "Current number of pipes in use in this worker process" },
116 [INF_PIPES_FREE] = { .name = "PipesFree", .desc = "Current number of allocated and available pipes in this worker process" },
117 [INF_CONN_RATE] = { .name = "ConnRate", .desc = "Number of front connections created on this worker process over the last second" },
118 [INF_CONN_RATE_LIMIT] = { .name = "ConnRateLimit", .desc = "Hard limit for ConnRate (global.maxconnrate)" },
119 [INF_MAX_CONN_RATE] = { .name = "MaxConnRate", .desc = "Highest ConnRate reached on this worker process since started (in connections per second)" },
120 [INF_SESS_RATE] = { .name = "SessRate", .desc = "Number of sessions created on this worker process over the last second" },
121 [INF_SESS_RATE_LIMIT] = { .name = "SessRateLimit", .desc = "Hard limit for SessRate (global.maxsessrate)" },
122 [INF_MAX_SESS_RATE] = { .name = "MaxSessRate", .desc = "Highest SessRate reached on this worker process since started (in sessions per second)" },
123 [INF_SSL_RATE] = { .name = "SslRate", .desc = "Number of SSL connections created on this worker process over the last second" },
124 [INF_SSL_RATE_LIMIT] = { .name = "SslRateLimit", .desc = "Hard limit for SslRate (global.maxsslrate)" },
125 [INF_MAX_SSL_RATE] = { .name = "MaxSslRate", .desc = "Highest SslRate reached on this worker process since started (in connections per second)" },
126 [INF_SSL_FRONTEND_KEY_RATE] = { .name = "SslFrontendKeyRate", .desc = "Number of SSL keys created on frontends in this worker process over the last second" },
127 [INF_SSL_FRONTEND_MAX_KEY_RATE] = { .name = "SslFrontendMaxKeyRate", .desc = "Highest SslFrontendKeyRate reached on this worker process since started (in SSL keys per second)" },
128 [INF_SSL_FRONTEND_SESSION_REUSE_PCT] = { .name = "SslFrontendSessionReuse_pct", .desc = "Percent of frontend SSL connections which did not require a new key" },
129 [INF_SSL_BACKEND_KEY_RATE] = { .name = "SslBackendKeyRate", .desc = "Number of SSL keys created on backends in this worker process over the last second" },
130 [INF_SSL_BACKEND_MAX_KEY_RATE] = { .name = "SslBackendMaxKeyRate", .desc = "Highest SslBackendKeyRate reached on this worker process since started (in SSL keys per second)" },
131 [INF_SSL_CACHE_LOOKUPS] = { .name = "SslCacheLookups", .desc = "Total number of SSL session ID lookups in the SSL session cache on this worker since started" },
132 [INF_SSL_CACHE_MISSES] = { .name = "SslCacheMisses", .desc = "Total number of SSL session ID lookups that didn't find a session in the SSL session cache on this worker since started" },
133 [INF_COMPRESS_BPS_IN] = { .name = "CompressBpsIn", .desc = "Number of bytes submitted to the HTTP compressor in this worker process over the last second" },
134 [INF_COMPRESS_BPS_OUT] = { .name = "CompressBpsOut", .desc = "Number of bytes emitted by the HTTP compressor in this worker process over the last second" },
135 [INF_COMPRESS_BPS_RATE_LIM] = { .name = "CompressBpsRateLim", .desc = "Limit of CompressBpsOut beyond which HTTP compression is automatically disabled" },
136 [INF_ZLIB_MEM_USAGE] = { .name = "ZlibMemUsage", .desc = "Amount of memory currently used by HTTP compression on the current worker process (in bytes)" },
137 [INF_MAX_ZLIB_MEM_USAGE] = { .name = "MaxZlibMemUsage", .desc = "Limit on the amount of memory used by HTTP compression above which it is automatically disabled (in bytes, see global.maxzlibmem)" },
138 [INF_TASKS] = { .name = "Tasks", .desc = "Total number of tasks in the current worker process (active + sleeping)" },
139 [INF_RUN_QUEUE] = { .name = "Run_queue", .desc = "Total number of active tasks+tasklets in the current worker process" },
140 [INF_IDLE_PCT] = { .name = "Idle_pct", .desc = "Percentage of last second spent waiting in the current worker thread" },
141 [INF_NODE] = { .name = "node", .desc = "Node name (global.node)" },
142 [INF_DESCRIPTION] = { .name = "description", .desc = "Node description (global.description)" },
143 [INF_STOPPING] = { .name = "Stopping", .desc = "1 if the worker process is currently stopping, otherwise zero" },
144 [INF_JOBS] = { .name = "Jobs", .desc = "Current number of active jobs on the current worker process (frontend connections, master connections, listeners)" },
145 [INF_UNSTOPPABLE_JOBS] = { .name = "Unstoppable Jobs", .desc = "Current number of unstoppable jobs on the current worker process (master connections)" },
146 [INF_LISTENERS] = { .name = "Listeners", .desc = "Current number of active listeners on the current worker process" },
147 [INF_ACTIVE_PEERS] = { .name = "ActivePeers", .desc = "Current number of verified active peers connections on the current worker process" },
148 [INF_CONNECTED_PEERS] = { .name = "ConnectedPeers", .desc = "Current number of peers having passed the connection step on the current worker process" },
149 [INF_DROPPED_LOGS] = { .name = "DroppedLogs", .desc = "Total number of dropped logs for current worker process since started" },
150 [INF_BUSY_POLLING] = { .name = "BusyPolling", .desc = "1 if busy-polling is currently in use on the worker process, otherwise zero (config.busy-polling)" },
151 [INF_FAILED_RESOLUTIONS] = { .name = "FailedResolutions", .desc = "Total number of failed DNS resolutions in current worker process since started" },
152 [INF_TOTAL_BYTES_OUT] = { .name = "TotalBytesOut", .desc = "Total number of bytes emitted by current worker process since started" },
Christopher Fauletaaa70852020-07-10 13:56:30 +0200153 [INF_TOTAL_SPLICED_BYTES_OUT] = { .name = "TotalSplicdedBytesOut", .desc = "Total number of bytes emitted by current worker process through a kernel pipe since started" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200154 [INF_BYTES_OUT_RATE] = { .name = "BytesOutRate", .desc = "Number of bytes emitted by current worker process over the last second" },
Willy Tarreau9b013702019-10-24 18:18:02 +0200155 [INF_DEBUG_COMMANDS_ISSUED] = { .name = "DebugCommandsIssued", .desc = "Number of debug commands issued on this process (anything > 0 is unsafe)" },
Emeric Brun45c457a2020-07-09 23:23:34 +0200156 [INF_CUM_LOG_MSGS] = { .name = "CumRecvLogs", .desc = "Total number of log messages received by log-forwarding listeners on this worker process since started" },
Adis Nezirovicb62b78b2021-01-15 13:12:33 +0100157 [INF_BUILD_INFO] = { .name = "Build info", .desc = "Build info" },
Amaury Denoyelle5dfdf3e2021-05-05 17:09:12 +0200158 [INF_TAINTED] = { .name = "Tainted", .desc = "Experimental features used" },
Willy Tarreau0baac8c2016-11-22 16:36:53 +0100159};
160
Willy Tarreaueaa55372019-10-09 07:39:11 +0200161const struct name_desc stat_fields[ST_F_TOTAL_FIELDS] = {
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200162 [ST_F_PXNAME] = { .name = "pxname", .desc = "Proxy name" },
163 [ST_F_SVNAME] = { .name = "svname", .desc = "Server name" },
William Dauchyeedb9b12021-02-01 13:11:53 +0100164 [ST_F_QCUR] = { .name = "qcur", .desc = "Number of current queued connections" },
165 [ST_F_QMAX] = { .name = "qmax", .desc = "Highest value of queued connections encountered since process started" },
William Dauchy19f7cfc2021-02-01 13:11:54 +0100166 [ST_F_SCUR] = { .name = "scur", .desc = "Number of current sessions on the frontend, backend or server" },
167 [ST_F_SMAX] = { .name = "smax", .desc = "Highest value of current sessions encountered since process started" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200168 [ST_F_SLIM] = { .name = "slim", .desc = "Frontend/listener/server's maxconn, backend's fullconn" },
169 [ST_F_STOT] = { .name = "stot", .desc = "Total number of sessions since process started" },
170 [ST_F_BIN] = { .name = "bin", .desc = "Total number of request bytes since process started" },
171 [ST_F_BOUT] = { .name = "bout", .desc = "Total number of response bytes since process started" },
172 [ST_F_DREQ] = { .name = "dreq", .desc = "Total number of denied requests since process started" },
173 [ST_F_DRESP] = { .name = "dresp", .desc = "Total number of denied responses since process started" },
174 [ST_F_EREQ] = { .name = "ereq", .desc = "Total number of invalid requests since process started" },
175 [ST_F_ECON] = { .name = "econ", .desc = "Total number of failed connections to server since the worker process started" },
176 [ST_F_ERESP] = { .name = "eresp", .desc = "Total number of invalid responses since the worker process started" },
177 [ST_F_WRETR] = { .name = "wretr", .desc = "Total number of server connection retries since the worker process started" },
178 [ST_F_WREDIS] = { .name = "wredis", .desc = "Total number of server redispatches due to connection failures since the worker process started" },
179 [ST_F_STATUS] = { .name = "status", .desc = "Frontend/listen status: OPEN/WAITING/FULL/STOP; backend: UP/DOWN; server: last check status" },
Willy Tarreaubd715102020-10-23 22:44:30 +0200180 [ST_F_WEIGHT] = { .name = "weight", .desc = "Server's effective weight, or sum of active servers' effective weights for a backend" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200181 [ST_F_ACT] = { .name = "act", .desc = "Total number of active UP servers with a non-zero weight" },
182 [ST_F_BCK] = { .name = "bck", .desc = "Total number of backup UP servers with a non-zero weight" },
183 [ST_F_CHKFAIL] = { .name = "chkfail", .desc = "Total number of failed individual health checks per server/backend, since the worker process started" },
184 [ST_F_CHKDOWN] = { .name = "chkdown", .desc = "Total number of failed checks causing UP to DOWN server transitions, per server/backend, since the worker process started" },
185 [ST_F_LASTCHG] = { .name = "lastchg", .desc = "How long ago the last server state changed, in seconds" },
186 [ST_F_DOWNTIME] = { .name = "downtime", .desc = "Total time spent in DOWN state, for server or backend" },
187 [ST_F_QLIMIT] = { .name = "qlimit", .desc = "Limit on the number of connections in queue, for servers only (maxqueue argument)" },
Willy Tarreaue8422bf2021-06-15 09:08:18 +0200188 [ST_F_PID] = { .name = "pid", .desc = "Relative worker process number (1)" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200189 [ST_F_IID] = { .name = "iid", .desc = "Frontend or Backend numeric identifier ('id' setting)" },
190 [ST_F_SID] = { .name = "sid", .desc = "Server numeric identifier ('id' setting)" },
191 [ST_F_THROTTLE] = { .name = "throttle", .desc = "Throttling ratio applied to a server's maxconn and weight during the slowstart period (0 to 100%)" },
192 [ST_F_LBTOT] = { .name = "lbtot", .desc = "Total number of requests routed by load balancing since the worker process started (ignores queue pop and stickiness)" },
193 [ST_F_TRACKED] = { .name = "tracked", .desc = "Name of the other server this server tracks for its state" },
194 [ST_F_TYPE] = { .name = "type", .desc = "Type of the object (Listener, Frontend, Backend, Server)" },
195 [ST_F_RATE] = { .name = "rate", .desc = "Total number of sessions processed by this object over the last second (sessions for listeners/frontends, requests for backends/servers)" },
196 [ST_F_RATE_LIM] = { .name = "rate_lim", .desc = "Limit on the number of sessions accepted in a second (frontend only, 'rate-limit sessions' setting)" },
William Dauchy19f7cfc2021-02-01 13:11:54 +0100197 [ST_F_RATE_MAX] = { .name = "rate_max", .desc = "Highest value of sessions per second observed since the worker process started" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200198 [ST_F_CHECK_STATUS] = { .name = "check_status", .desc = "Status report of the server's latest health check, prefixed with '*' if a check is currently in progress" },
199 [ST_F_CHECK_CODE] = { .name = "check_code", .desc = "HTTP/SMTP/LDAP status code reported by the latest server health check" },
200 [ST_F_CHECK_DURATION] = { .name = "check_duration", .desc = "Total duration of the latest server health check, in milliseconds" },
201 [ST_F_HRSP_1XX] = { .name = "hrsp_1xx", .desc = "Total number of HTTP responses with status 100-199 returned by this object since the worker process started" },
202 [ST_F_HRSP_2XX] = { .name = "hrsp_2xx", .desc = "Total number of HTTP responses with status 200-299 returned by this object since the worker process started" },
203 [ST_F_HRSP_3XX] = { .name = "hrsp_3xx", .desc = "Total number of HTTP responses with status 300-399 returned by this object since the worker process started" },
204 [ST_F_HRSP_4XX] = { .name = "hrsp_4xx", .desc = "Total number of HTTP responses with status 400-499 returned by this object since the worker process started" },
205 [ST_F_HRSP_5XX] = { .name = "hrsp_5xx", .desc = "Total number of HTTP responses with status 500-599 returned by this object since the worker process started" },
206 [ST_F_HRSP_OTHER] = { .name = "hrsp_other", .desc = "Total number of HTTP responses with status <100, >599 returned by this object since the worker process started (error -1 included)" },
207 [ST_F_HANAFAIL] = { .name = "hanafail", .desc = "Total number of failed checks caused by an 'on-error' directive after an 'observe' condition matched" },
208 [ST_F_REQ_RATE] = { .name = "req_rate", .desc = "Number of HTTP requests processed over the last second on this object" },
William Dauchy19f7cfc2021-02-01 13:11:54 +0100209 [ST_F_REQ_RATE_MAX] = { .name = "req_rate_max", .desc = "Highest value of http requests observed since the worker process started" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200210 [ST_F_REQ_TOT] = { .name = "req_tot", .desc = "Total number of HTTP requests processed by this object since the worker process started" },
211 [ST_F_CLI_ABRT] = { .name = "cli_abrt", .desc = "Total number of requests or connections aborted by the client since the worker process started" },
212 [ST_F_SRV_ABRT] = { .name = "srv_abrt", .desc = "Total number of requests or connections aborted by the server since the worker process started" },
213 [ST_F_COMP_IN] = { .name = "comp_in", .desc = "Total number of bytes submitted to the HTTP compressor for this object since the worker process started" },
214 [ST_F_COMP_OUT] = { .name = "comp_out", .desc = "Total number of bytes emitted by the HTTP compressor for this object since the worker process started" },
215 [ST_F_COMP_BYP] = { .name = "comp_byp", .desc = "Total number of bytes that bypassed HTTP compression for this object since the worker process started (CPU/memory/bandwidth limitation)" },
216 [ST_F_COMP_RSP] = { .name = "comp_rsp", .desc = "Total number of HTTP responses that were compressed for this object since the worker process started" },
217 [ST_F_LASTSESS] = { .name = "lastsess", .desc = "How long ago some traffic was seen on this object on this worker process, in seconds" },
218 [ST_F_LAST_CHK] = { .name = "last_chk", .desc = "Short description of the latest health check report for this server (see also check_desc)" },
219 [ST_F_LAST_AGT] = { .name = "last_agt", .desc = "Short description of the latest agent check report for this server (see also agent_desc)" },
220 [ST_F_QTIME] = { .name = "qtime", .desc = "Time spent in the queue, in milliseconds, averaged over the 1024 last requests (backend/server)" },
221 [ST_F_CTIME] = { .name = "ctime", .desc = "Time spent waiting for a connection to complete, in milliseconds, averaged over the 1024 last requests (backend/server)" },
222 [ST_F_RTIME] = { .name = "rtime", .desc = "Time spent waiting for a server response, in milliseconds, averaged over the 1024 last requests (backend/server)" },
223 [ST_F_TTIME] = { .name = "ttime", .desc = "Total request+response time (request+queue+connect+response+processing), in milliseconds, averaged over the 1024 last requests (backend/server)" },
224 [ST_F_AGENT_STATUS] = { .name = "agent_status", .desc = "Status report of the server's latest agent check, prefixed with '*' if a check is currently in progress" },
225 [ST_F_AGENT_CODE] = { .name = "agent_code", .desc = "Status code reported by the latest server agent check" },
226 [ST_F_AGENT_DURATION] = { .name = "agent_duration", .desc = "Total duration of the latest server agent check, in milliseconds" },
227 [ST_F_CHECK_DESC] = { .name = "check_desc", .desc = "Textual description of the latest health check report for this server" },
228 [ST_F_AGENT_DESC] = { .name = "agent_desc", .desc = "Textual description of the latest agent check report for this server" },
229 [ST_F_CHECK_RISE] = { .name = "check_rise", .desc = "Number of successful health checks before declaring a server UP (server 'rise' setting)" },
230 [ST_F_CHECK_FALL] = { .name = "check_fall", .desc = "Number of failed health checks before declaring a server DOWN (server 'fall' setting)" },
231 [ST_F_CHECK_HEALTH] = { .name = "check_health", .desc = "Current server health check level (0..fall-1=DOWN, fall..rise-1=UP)" },
232 [ST_F_AGENT_RISE] = { .name = "agent_rise", .desc = "Number of successful agent checks before declaring a server UP (server 'rise' setting)" },
233 [ST_F_AGENT_FALL] = { .name = "agent_fall", .desc = "Number of failed agent checks before declaring a server DOWN (server 'fall' setting)" },
234 [ST_F_AGENT_HEALTH] = { .name = "agent_health", .desc = "Current server agent check level (0..fall-1=DOWN, fall..rise-1=UP)" },
235 [ST_F_ADDR] = { .name = "addr", .desc = "Server's address:port, shown only if show-legends is set, or at levels oper/admin for the CLI" },
236 [ST_F_COOKIE] = { .name = "cookie", .desc = "Backend's cookie name or Server's cookie value, shown only if show-legends is set, or at levels oper/admin for the CLI" },
237 [ST_F_MODE] = { .name = "mode", .desc = "'mode' setting (tcp/http/health/cli)" },
238 [ST_F_ALGO] = { .name = "algo", .desc = "Backend's load balancing algorithm, shown only if show-legends is set, or at levels oper/admin for the CLI" },
239 [ST_F_CONN_RATE] = { .name = "conn_rate", .desc = "Number of new connections accepted over the last second on the frontend for this worker process" },
William Dauchy19f7cfc2021-02-01 13:11:54 +0100240 [ST_F_CONN_RATE_MAX] = { .name = "conn_rate_max", .desc = "Highest value of connections per second observed since the worker process started" },
Willy Tarreau6d4897e2019-10-11 16:31:46 +0200241 [ST_F_CONN_TOT] = { .name = "conn_tot", .desc = "Total number of new connections accepted on this frontend since the worker process started" },
242 [ST_F_INTERCEPTED] = { .name = "intercepted", .desc = "Total number of HTTP requests intercepted on the frontend (redirects/stats/services) since the worker process started" },
243 [ST_F_DCON] = { .name = "dcon", .desc = "Total number of incoming connections blocked on a listener/frontend by a tcp-request connection rule since the worker process started" },
244 [ST_F_DSES] = { .name = "dses", .desc = "Total number of incoming sessions blocked on a listener/frontend by a tcp-request connection rule since the worker process started" },
245 [ST_F_WREW] = { .name = "wrew", .desc = "Total number of failed HTTP header rewrites since the worker process started" },
246 [ST_F_CONNECT] = { .name = "connect", .desc = "Total number of outgoing connection attempts on this backend/server since the worker process started" },
247 [ST_F_REUSE] = { .name = "reuse", .desc = "Total number of reused connection on this backend/server since the worker process started" },
248 [ST_F_CACHE_LOOKUPS] = { .name = "cache_lookups", .desc = "Total number of HTTP requests looked up in the cache on this frontend/backend since the worker process started" },
249 [ST_F_CACHE_HITS] = { .name = "cache_hits", .desc = "Total number of HTTP requests not found in the cache on this frontend/backend since the worker process started" },
250 [ST_F_SRV_ICUR] = { .name = "srv_icur", .desc = "Current number of idle connections available for reuse on this server" },
251 [ST_F_SRV_ILIM] = { .name = "src_ilim", .desc = "Limit on the number of available idle connections on this server (server 'pool_max_conn' directive)" },
Christopher Faulet0d1c2a62019-11-08 14:59:51 +0100252 [ST_F_QT_MAX] = { .name = "qtime_max", .desc = "Maximum observed time spent in the queue, in milliseconds (backend/server)" },
253 [ST_F_CT_MAX] = { .name = "ctime_max", .desc = "Maximum observed time spent waiting for a connection to complete, in milliseconds (backend/server)" },
254 [ST_F_RT_MAX] = { .name = "rtime_max", .desc = "Maximum observed time spent waiting for a server response, in milliseconds (backend/server)" },
255 [ST_F_TT_MAX] = { .name = "ttime_max", .desc = "Maximum observed total request+response time (request+queue+connect+response+processing), in milliseconds (backend/server)" },
Christopher Faulet0159ee42019-12-16 14:40:39 +0100256 [ST_F_EINT] = { .name = "eint", .desc = "Total number of internal errors since process started"},
Willy Tarreau3bb617c2020-06-29 13:51:05 +0200257 [ST_F_IDLE_CONN_CUR] = { .name = "idle_conn_cur", .desc = "Current number of unsafe idle connections"},
258 [ST_F_SAFE_CONN_CUR] = { .name = "safe_conn_cur", .desc = "Current number of safe idle connections"},
259 [ST_F_USED_CONN_CUR] = { .name = "used_conn_cur", .desc = "Current number of connections in use"},
Willy Tarreaua9fcecb2020-06-29 15:38:53 +0200260 [ST_F_NEED_CONN_EST] = { .name = "need_conn_est", .desc = "Estimated needed number of connections"},
Willy Tarreaubd715102020-10-23 22:44:30 +0200261 [ST_F_UWEIGHT] = { .name = "uweight", .desc = "Server's user weight, or sum of active servers' user weights for a backend" },
Cedric Paillet7d6644e2022-12-08 09:17:00 +0000262 [ST_F_AGG_SRV_CHECK_STATUS] = { .name = "agg_server_check_status", .desc = "[DEPRECATED] Backend's aggregated gauge of servers' status" },
263 [ST_F_AGG_SRV_STATUS ] = { .name = "agg_server_status", .desc = "Backend's aggregated gauge of servers' status" },
Cedric Paillete06e31e2022-12-08 09:17:01 +0000264 [ST_F_AGG_CHECK_STATUS] = { .name = "agg_check_status", .desc = "Backend's aggregated gauge of servers' state check status" },
Aurelien DARRAGON745ce8e2022-11-17 16:34:07 +0100265 [ST_F_SRID] = { .name = "srid", .desc = "Server id revision, to prevent server id reuse mixups" },
William Lallemand74c24fb2016-11-21 17:18:36 +0100266};
267
Willy Tarreau0baac8c2016-11-22 16:36:53 +0100268/* one line of info */
William Dauchy5d9b8f32021-01-11 20:07:49 +0100269THREAD_LOCAL struct field info[INF_TOTAL_FIELDS];
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200270
271/* description of statistics (static and dynamic) */
272static struct name_desc *stat_f[STATS_DOMAIN_COUNT];
273static size_t stat_count[STATS_DOMAIN_COUNT];
274
275/* one line for stats */
William Dauchyb9577452021-01-17 18:27:46 +0100276THREAD_LOCAL struct field *stat_l[STATS_DOMAIN_COUNT];
William Lallemand74c24fb2016-11-21 17:18:36 +0100277
Amaury Denoyelle58d395e2020-10-05 11:49:40 +0200278/* list of all registered stats module */
279static struct list stats_module_list[STATS_DOMAIN_COUNT] = {
280 LIST_HEAD_INIT(stats_module_list[STATS_DOMAIN_PROXY]),
Emeric Brunf8642ee2021-10-29 17:59:18 +0200281 LIST_HEAD_INIT(stats_module_list[STATS_DOMAIN_RESOLVERS]),
Amaury Denoyelle58d395e2020-10-05 11:49:40 +0200282};
283
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100284THREAD_LOCAL void *trash_counters;
Christopher Fauleta8b76842022-12-16 15:08:36 +0100285static THREAD_LOCAL struct buffer trash_chunk = BUF_NULL;
286
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100287
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200288static inline uint8_t stats_get_domain(uint32_t domain)
289{
290 return domain >> STATS_DOMAIN & STATS_DOMAIN_MASK;
291}
292
Amaury Denoyelle72b16e52020-10-05 11:49:38 +0200293static inline enum stats_domain_px_cap stats_px_get_cap(uint32_t domain)
294{
295 return domain >> STATS_PX_CAP & STATS_PX_CAP_MASK;
296}
297
Christopher Faulet6338a082019-09-09 15:50:54 +0200298static void stats_dump_json_schema(struct buffer *out);
William Lallemand74c24fb2016-11-21 17:18:36 +0100299
Amaury Denoyelle3ca927e2020-10-02 18:32:00 +0200300int stats_putchk(struct channel *chn, struct htx *htx, struct buffer *chk)
Christopher Fauletef779222018-10-31 08:47:01 +0100301{
302 if (htx) {
Christopher Faulet69fc88c2019-01-07 14:27:53 +0100303 if (chk->data >= channel_htx_recv_max(chn, htx))
304 return 0;
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200305 if (!htx_add_data_atonce(htx, ist2(chk->area, chk->data)))
Christopher Fauletef779222018-10-31 08:47:01 +0100306 return 0;
Christopher Faulet5adbeeb2019-01-02 14:34:39 +0100307 channel_add_input(chn, chk->data);
Christopher Fauletef779222018-10-31 08:47:01 +0100308 chk->data = 0;
Christopher Fauletef779222018-10-31 08:47:01 +0100309 }
310 else {
311 if (ci_putchk(chn, chk) == -1)
312 return 0;
313 }
314 return 1;
315}
Willy Tarreau0baac8c2016-11-22 16:36:53 +0100316
Willy Tarreaucaff6312022-05-27 10:17:46 +0200317static const char *stats_scope_ptr(struct appctx *appctx, struct stconn *sc)
Christopher Fauleted7a0662019-01-14 11:07:34 +0100318{
Willy Tarreau91cefca2022-05-03 17:08:29 +0200319 struct show_stat_ctx *ctx = appctx->svcctx;
Willy Tarreaucaff6312022-05-27 10:17:46 +0200320 struct channel *req = sc_oc(sc);
Christopher Fauletb7f88902019-07-15 21:56:43 +0200321 struct htx *htx = htxbuf(&req->buf);
322 struct htx_blk *blk;
323 struct ist uri;
Christopher Fauleted7a0662019-01-14 11:07:34 +0100324
Christopher Fauletb7f88902019-07-15 21:56:43 +0200325 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +0100326 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb7f88902019-07-15 21:56:43 +0200327 ALREADY_CHECKED(blk);
328 uri = htx_sl_req_uri(htx_get_blk_ptr(htx, blk));
Willy Tarreau91cefca2022-05-03 17:08:29 +0200329 return uri.ptr + ctx->scope_str;
Christopher Fauleted7a0662019-01-14 11:07:34 +0100330}
331
William Lallemand74c24fb2016-11-21 17:18:36 +0100332/*
333 * http_stats_io_handler()
334 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
335 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
Simon Horman05ee2132017-01-04 09:37:25 +0100336 * -> stats_dump_json_header() // emits the JSON headers (same as above)
William Lallemand74c24fb2016-11-21 17:18:36 +0100337 * -> stats_dump_html_head() // emits the HTML headers
338 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
339 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
340 * -> stats_dump_html_px_hdr()
341 * -> stats_dump_fe_stats()
342 * -> stats_dump_li_stats()
343 * -> stats_dump_sv_stats()
344 * -> stats_dump_be_stats()
345 * -> stats_dump_html_px_end()
346 * -> stats_dump_html_end() // emits HTML trailer
Simon Horman05ee2132017-01-04 09:37:25 +0100347 * -> stats_dump_json_end() // emits JSON trailer
William Lallemand74c24fb2016-11-21 17:18:36 +0100348 */
349
350
Christopher Fauleta8b76842022-12-16 15:08:36 +0100351/* Dumps the stats CSV header to the local trash buffer. The caller is
352 * responsible for clearing it if needed.
William Lallemand74c24fb2016-11-21 17:18:36 +0100353 * NOTE: Some tools happen to rely on the field position instead of its name,
354 * so please only append new fields at the end, never in the middle.
355 */
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200356static void stats_dump_csv_header(enum stats_domain domain)
William Lallemand74c24fb2016-11-21 17:18:36 +0100357{
358 int field;
359
Christopher Fauleta8b76842022-12-16 15:08:36 +0100360 chunk_appendf(&trash_chunk, "# ");
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200361 if (stat_f[domain]) {
362 for (field = 0; field < stat_count[domain]; ++field) {
Christopher Fauleta8b76842022-12-16 15:08:36 +0100363 chunk_appendf(&trash_chunk, "%s,", stat_f[domain][field].name);
William Lallemand74c24fb2016-11-21 17:18:36 +0100364
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200365 /* print special delimiter on proxy stats to mark end of
366 static fields */
367 if (domain == STATS_DOMAIN_PROXY && field + 1 == ST_F_TOTAL_FIELDS)
Christopher Fauleta8b76842022-12-16 15:08:36 +0100368 chunk_appendf(&trash_chunk, "-,");
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200369 }
370 }
371
Christopher Fauleta8b76842022-12-16 15:08:36 +0100372 chunk_appendf(&trash_chunk, "\n");
William Lallemand74c24fb2016-11-21 17:18:36 +0100373}
374
William Lallemand74c24fb2016-11-21 17:18:36 +0100375/* Emits a stats field without any surrounding element and properly encoded to
376 * resist CSV output. Returns non-zero on success, 0 if the buffer is full.
377 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200378int stats_emit_raw_data_field(struct buffer *out, const struct field *f)
William Lallemand74c24fb2016-11-21 17:18:36 +0100379{
380 switch (field_format(f, 0)) {
381 case FF_EMPTY: return 1;
382 case FF_S32: return chunk_appendf(out, "%d", f->u.s32);
383 case FF_U32: return chunk_appendf(out, "%u", f->u.u32);
384 case FF_S64: return chunk_appendf(out, "%lld", (long long)f->u.s64);
385 case FF_U64: return chunk_appendf(out, "%llu", (unsigned long long)f->u.u64);
Willy Tarreau065ba312021-05-08 10:38:20 +0200386 case FF_FLT: {
387 size_t prev_data = out->data;
388 out->data = flt_trim(out->area, prev_data, chunk_appendf(out, "%f", f->u.flt));
389 return out->data;
390 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100391 case FF_STR: return csv_enc_append(field_str(f, 0), 1, out) != NULL;
392 default: return chunk_appendf(out, "[INCORRECT_FIELD_TYPE_%08x]", f->type);
393 }
394}
395
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200396const char *field_to_html_str(const struct field *f)
397{
398 switch (field_format(f, 0)) {
399 case FF_S32: return U2H(f->u.s32);
400 case FF_S64: return U2H(f->u.s64);
401 case FF_U64: return U2H(f->u.u64);
402 case FF_U32: return U2H(f->u.u32);
Willy Tarreau6004fb72021-05-08 07:37:38 +0200403 case FF_FLT: return F2H(f->u.flt);
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200404 case FF_STR: return field_str(f, 0);
405 case FF_EMPTY:
406 default:
407 return "";
408 }
409}
410
William Lallemand74c24fb2016-11-21 17:18:36 +0100411/* Emits a stats field prefixed with its type. No CSV encoding is prepared, the
412 * output is supposed to be used on its own line. Returns non-zero on success, 0
413 * if the buffer is full.
414 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200415int stats_emit_typed_data_field(struct buffer *out, const struct field *f)
William Lallemand74c24fb2016-11-21 17:18:36 +0100416{
417 switch (field_format(f, 0)) {
418 case FF_EMPTY: return 1;
419 case FF_S32: return chunk_appendf(out, "s32:%d", f->u.s32);
420 case FF_U32: return chunk_appendf(out, "u32:%u", f->u.u32);
421 case FF_S64: return chunk_appendf(out, "s64:%lld", (long long)f->u.s64);
422 case FF_U64: return chunk_appendf(out, "u64:%llu", (unsigned long long)f->u.u64);
Willy Tarreau065ba312021-05-08 10:38:20 +0200423 case FF_FLT: {
424 size_t prev_data = out->data;
425 out->data = flt_trim(out->area, prev_data, chunk_appendf(out, "flt:%f", f->u.flt));
426 return out->data;
427 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100428 case FF_STR: return chunk_appendf(out, "str:%s", field_str(f, 0));
429 default: return chunk_appendf(out, "%08x:?", f->type);
430 }
431}
432
Simon Horman05ee2132017-01-04 09:37:25 +0100433/* Limit JSON integer values to the range [-(2**53)+1, (2**53)-1] as per
434 * the recommendation for interoperable integers in section 6 of RFC 7159.
435 */
436#define JSON_INT_MAX ((1ULL << 53) - 1)
437#define JSON_INT_MIN (0 - JSON_INT_MAX)
438
439/* Emits a stats field value and its type in JSON.
440 * Returns non-zero on success, 0 on error.
441 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200442int stats_emit_json_data_field(struct buffer *out, const struct field *f)
Simon Horman05ee2132017-01-04 09:37:25 +0100443{
444 int old_len;
445 char buf[20];
446 const char *type, *value = buf, *quote = "";
447
448 switch (field_format(f, 0)) {
449 case FF_EMPTY: return 1;
450 case FF_S32: type = "\"s32\"";
451 snprintf(buf, sizeof(buf), "%d", f->u.s32);
452 break;
453 case FF_U32: type = "\"u32\"";
454 snprintf(buf, sizeof(buf), "%u", f->u.u32);
455 break;
456 case FF_S64: type = "\"s64\"";
457 if (f->u.s64 < JSON_INT_MIN || f->u.s64 > JSON_INT_MAX)
458 return 0;
459 type = "\"s64\"";
460 snprintf(buf, sizeof(buf), "%lld", (long long)f->u.s64);
461 break;
462 case FF_U64: if (f->u.u64 > JSON_INT_MAX)
463 return 0;
464 type = "\"u64\"";
465 snprintf(buf, sizeof(buf), "%llu",
466 (unsigned long long) f->u.u64);
Christopher Faulet52c91bb2019-09-28 10:37:31 +0200467 break;
Christopher Faulet88a0db22019-09-24 16:35:10 +0200468 case FF_FLT: type = "\"flt\"";
Willy Tarreau065ba312021-05-08 10:38:20 +0200469 flt_trim(buf, 0, snprintf(buf, sizeof(buf), "%f", f->u.flt));
Simon Horman05ee2132017-01-04 09:37:25 +0100470 break;
471 case FF_STR: type = "\"str\"";
472 value = field_str(f, 0);
473 quote = "\"";
474 break;
475 default: snprintf(buf, sizeof(buf), "%u", f->type);
476 type = buf;
477 value = "unknown";
478 quote = "\"";
479 break;
480 }
481
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200482 old_len = out->data;
Simon Horman05ee2132017-01-04 09:37:25 +0100483 chunk_appendf(out, ",\"value\":{\"type\":%s,\"value\":%s%s%s}",
484 type, quote, value, quote);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200485 return !(old_len == out->data);
Simon Horman05ee2132017-01-04 09:37:25 +0100486}
487
William Lallemand74c24fb2016-11-21 17:18:36 +0100488/* Emits an encoding of the field type on 3 characters followed by a delimiter.
489 * Returns non-zero on success, 0 if the buffer is full.
490 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200491int stats_emit_field_tags(struct buffer *out, const struct field *f,
492 char delim)
William Lallemand74c24fb2016-11-21 17:18:36 +0100493{
494 char origin, nature, scope;
495
496 switch (field_origin(f, 0)) {
497 case FO_METRIC: origin = 'M'; break;
498 case FO_STATUS: origin = 'S'; break;
499 case FO_KEY: origin = 'K'; break;
500 case FO_CONFIG: origin = 'C'; break;
501 case FO_PRODUCT: origin = 'P'; break;
502 default: origin = '?'; break;
503 }
504
505 switch (field_nature(f, 0)) {
506 case FN_GAUGE: nature = 'G'; break;
507 case FN_LIMIT: nature = 'L'; break;
508 case FN_MIN: nature = 'm'; break;
509 case FN_MAX: nature = 'M'; break;
510 case FN_RATE: nature = 'R'; break;
511 case FN_COUNTER: nature = 'C'; break;
512 case FN_DURATION: nature = 'D'; break;
513 case FN_AGE: nature = 'A'; break;
514 case FN_TIME: nature = 'T'; break;
515 case FN_NAME: nature = 'N'; break;
516 case FN_OUTPUT: nature = 'O'; break;
517 case FN_AVG: nature = 'a'; break;
518 default: nature = '?'; break;
519 }
520
521 switch (field_scope(f, 0)) {
522 case FS_PROCESS: scope = 'P'; break;
523 case FS_SERVICE: scope = 'S'; break;
524 case FS_SYSTEM: scope = 's'; break;
525 case FS_CLUSTER: scope = 'C'; break;
526 default: scope = '?'; break;
527 }
528
529 return chunk_appendf(out, "%c%c%c%c", origin, nature, scope, delim);
530}
531
Simon Horman05ee2132017-01-04 09:37:25 +0100532/* Emits an encoding of the field type as JSON.
533 * Returns non-zero on success, 0 if the buffer is full.
534 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200535int stats_emit_json_field_tags(struct buffer *out, const struct field *f)
Simon Horman05ee2132017-01-04 09:37:25 +0100536{
537 const char *origin, *nature, *scope;
538 int old_len;
539
540 switch (field_origin(f, 0)) {
541 case FO_METRIC: origin = "Metric"; break;
542 case FO_STATUS: origin = "Status"; break;
543 case FO_KEY: origin = "Key"; break;
544 case FO_CONFIG: origin = "Config"; break;
545 case FO_PRODUCT: origin = "Product"; break;
546 default: origin = "Unknown"; break;
547 }
548
549 switch (field_nature(f, 0)) {
550 case FN_GAUGE: nature = "Gauge"; break;
551 case FN_LIMIT: nature = "Limit"; break;
552 case FN_MIN: nature = "Min"; break;
553 case FN_MAX: nature = "Max"; break;
554 case FN_RATE: nature = "Rate"; break;
555 case FN_COUNTER: nature = "Counter"; break;
556 case FN_DURATION: nature = "Duration"; break;
557 case FN_AGE: nature = "Age"; break;
558 case FN_TIME: nature = "Time"; break;
559 case FN_NAME: nature = "Name"; break;
560 case FN_OUTPUT: nature = "Output"; break;
561 case FN_AVG: nature = "Avg"; break;
562 default: nature = "Unknown"; break;
563 }
564
565 switch (field_scope(f, 0)) {
566 case FS_PROCESS: scope = "Process"; break;
567 case FS_SERVICE: scope = "Service"; break;
568 case FS_SYSTEM: scope = "System"; break;
569 case FS_CLUSTER: scope = "Cluster"; break;
570 default: scope = "Unknown"; break;
571 }
572
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200573 old_len = out->data;
Simon Horman05ee2132017-01-04 09:37:25 +0100574 chunk_appendf(out, "\"tags\":{"
575 "\"origin\":\"%s\","
576 "\"nature\":\"%s\","
577 "\"scope\":\"%s\""
578 "}", origin, nature, scope);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200579 return !(old_len == out->data);
Simon Horman05ee2132017-01-04 09:37:25 +0100580}
William Lallemand74c24fb2016-11-21 17:18:36 +0100581
582/* Dump all fields from <stats> into <out> using CSV format */
Willy Tarreau83061a82018-07-13 11:56:34 +0200583static int stats_dump_fields_csv(struct buffer *out,
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200584 const struct field *stats, size_t stats_count,
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100585 struct show_stat_ctx *ctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100586{
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100587 int domain = ctx->domain;
William Lallemand74c24fb2016-11-21 17:18:36 +0100588 int field;
589
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200590 for (field = 0; field < stats_count; ++field) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100591 if (!stats_emit_raw_data_field(out, &stats[field]))
592 return 0;
593 if (!chunk_strcat(out, ","))
594 return 0;
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200595
596 /* print special delimiter on proxy stats to mark end of
597 static fields */
598 if (domain == STATS_DOMAIN_PROXY && field + 1 == ST_F_TOTAL_FIELDS) {
599 if (!chunk_strcat(out, "-,"))
600 return 0;
601 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100602 }
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200603
William Lallemand74c24fb2016-11-21 17:18:36 +0100604 chunk_strcat(out, "\n");
605 return 1;
606}
607
608/* Dump all fields from <stats> into <out> using a typed "field:desc:type:value" format */
Willy Tarreau83061a82018-07-13 11:56:34 +0200609static int stats_dump_fields_typed(struct buffer *out,
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200610 const struct field *stats,
611 size_t stats_count,
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100612 struct show_stat_ctx * ctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100613{
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100614 int flags = ctx->flags;
615 int domain = ctx->domain;
William Lallemand74c24fb2016-11-21 17:18:36 +0100616 int field;
617
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200618 for (field = 0; field < stats_count; ++field) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100619 if (!stats[field].type)
620 continue;
621
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200622 switch (domain) {
623 case STATS_DOMAIN_PROXY:
624 chunk_appendf(out, "%c.%u.%u.%d.%s.%u:",
625 stats[ST_F_TYPE].u.u32 == STATS_TYPE_FE ? 'F' :
626 stats[ST_F_TYPE].u.u32 == STATS_TYPE_BE ? 'B' :
627 stats[ST_F_TYPE].u.u32 == STATS_TYPE_SO ? 'L' :
628 stats[ST_F_TYPE].u.u32 == STATS_TYPE_SV ? 'S' :
629 '?',
630 stats[ST_F_IID].u.u32, stats[ST_F_SID].u.u32,
631 field,
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200632 stat_f[domain][field].name,
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200633 stats[ST_F_PID].u.u32);
634 break;
635
Emeric Brunf8642ee2021-10-29 17:59:18 +0200636 case STATS_DOMAIN_RESOLVERS:
637 chunk_appendf(out, "N.%d.%s:", field,
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +0200638 stat_f[domain][field].name);
639 break;
640
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200641 default:
642 break;
643 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100644
645 if (!stats_emit_field_tags(out, &stats[field], ':'))
646 return 0;
647 if (!stats_emit_typed_data_field(out, &stats[field]))
648 return 0;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200649
Willy Tarreaufc8e4382021-06-17 07:22:27 +0200650 if (flags & STAT_SHOW_FDESC &&
651 !chunk_appendf(out, ":\"%s\"", stat_f[domain][field].desc)) {
Willy Tarreau6b19b142019-10-09 15:44:21 +0200652 return 0;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200653 }
654
William Lallemand74c24fb2016-11-21 17:18:36 +0100655 if (!chunk_strcat(out, "\n"))
656 return 0;
657 }
658 return 1;
659}
660
Simon Horman05ee2132017-01-04 09:37:25 +0100661/* Dump all fields from <stats> into <out> using the "show info json" format */
Willy Tarreau83061a82018-07-13 11:56:34 +0200662static int stats_dump_json_info_fields(struct buffer *out,
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100663 const struct field *info,
664 struct show_stat_ctx *ctx)
Simon Horman05ee2132017-01-04 09:37:25 +0100665{
Aurelien DARRAGON16c9ca92022-12-15 14:24:30 +0100666 int started = (ctx->field) ? 1 : 0;
667 int ready_data = 0;
Simon Horman05ee2132017-01-04 09:37:25 +0100668
Aurelien DARRAGON16c9ca92022-12-15 14:24:30 +0100669 if (!started && !chunk_strcat(out, "["))
Simon Horman05ee2132017-01-04 09:37:25 +0100670 return 0;
671
Aurelien DARRAGON16c9ca92022-12-15 14:24:30 +0100672 for (; ctx->field < INF_TOTAL_FIELDS; ctx->field++) {
Simon Horman05ee2132017-01-04 09:37:25 +0100673 int old_len;
Aurelien DARRAGON16c9ca92022-12-15 14:24:30 +0100674 int field = ctx->field;
Simon Horman05ee2132017-01-04 09:37:25 +0100675
676 if (!field_format(info, field))
677 continue;
678
679 if (started && !chunk_strcat(out, ","))
680 goto err;
681 started = 1;
682
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200683 old_len = out->data;
Simon Horman05ee2132017-01-04 09:37:25 +0100684 chunk_appendf(out,
685 "{\"field\":{\"pos\":%d,\"name\":\"%s\"},"
686 "\"processNum\":%u,",
Willy Tarreaueaa55372019-10-09 07:39:11 +0200687 field, info_fields[field].name,
Simon Horman05ee2132017-01-04 09:37:25 +0100688 info[INF_PROCESS_NUM].u.u32);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200689 if (old_len == out->data)
Simon Horman05ee2132017-01-04 09:37:25 +0100690 goto err;
691
692 if (!stats_emit_json_field_tags(out, &info[field]))
693 goto err;
694
695 if (!stats_emit_json_data_field(out, &info[field]))
696 goto err;
697
698 if (!chunk_strcat(out, "}"))
699 goto err;
Aurelien DARRAGON16c9ca92022-12-15 14:24:30 +0100700 ready_data = out->data;
Simon Horman05ee2132017-01-04 09:37:25 +0100701 }
702
Willy Tarreauc6b7a972022-06-10 15:12:21 +0200703 if (!chunk_strcat(out, "]\n"))
Simon Horman05ee2132017-01-04 09:37:25 +0100704 goto err;
Aurelien DARRAGON16c9ca92022-12-15 14:24:30 +0100705 ctx->field = 0; /* we're done */
Simon Horman05ee2132017-01-04 09:37:25 +0100706 return 1;
707
708err:
Aurelien DARRAGON16c9ca92022-12-15 14:24:30 +0100709 if (!ready_data) {
710 /* not enough buffer space for a single entry.. */
711 chunk_reset(out);
712 chunk_appendf(out, "{\"errorStr\":\"output buffer too short\"}\n");
713 return 0; /* hard error */
714 }
715 /* push ready data and wait for a new buffer to complete the dump */
716 out->data = ready_data;
717 return 1;
Simon Horman05ee2132017-01-04 09:37:25 +0100718}
719
Amaury Denoyellef34017b2020-10-02 18:32:03 +0200720static void stats_print_proxy_field_json(struct buffer *out,
721 const struct field *stat,
722 const char *name,
723 int pos,
724 uint32_t field_type,
725 uint32_t iid,
726 uint32_t sid,
727 uint32_t pid)
728{
729 const char *obj_type;
730 switch (field_type) {
731 case STATS_TYPE_FE: obj_type = "Frontend"; break;
732 case STATS_TYPE_BE: obj_type = "Backend"; break;
733 case STATS_TYPE_SO: obj_type = "Listener"; break;
734 case STATS_TYPE_SV: obj_type = "Server"; break;
735 default: obj_type = "Unknown"; break;
736 }
737
738 chunk_appendf(out,
739 "{"
740 "\"objType\":\"%s\","
741 "\"proxyId\":%u,"
742 "\"id\":%u,"
743 "\"field\":{\"pos\":%d,\"name\":\"%s\"},"
744 "\"processNum\":%u,",
745 obj_type, iid, sid, pos, name, pid);
746}
747
Emeric Brunf8642ee2021-10-29 17:59:18 +0200748static void stats_print_rslv_field_json(struct buffer *out,
749 const struct field *stat,
750 const char *name,
751 int pos)
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +0200752{
753 chunk_appendf(out,
754 "{"
755 "\"field\":{\"pos\":%d,\"name\":\"%s\"},",
756 pos, name);
757}
758
759
Simon Horman05ee2132017-01-04 09:37:25 +0100760/* Dump all fields from <stats> into <out> using a typed "field:desc:type:value" format */
Willy Tarreau83061a82018-07-13 11:56:34 +0200761static int stats_dump_fields_json(struct buffer *out,
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200762 const struct field *stats, size_t stats_count,
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100763 struct show_stat_ctx *ctx)
Simon Horman05ee2132017-01-04 09:37:25 +0100764{
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100765 int flags = ctx->flags;
766 int domain = ctx->domain;
Aurelien DARRAGON42b18fb2022-12-15 14:17:09 +0100767 int started = (ctx->field) ? 1 : 0;
768 int ready_data = 0;
Simon Horman05ee2132017-01-04 09:37:25 +0100769
Aurelien DARRAGON42b18fb2022-12-15 14:17:09 +0100770 if (!started && (flags & STAT_STARTED) && !chunk_strcat(out, ","))
Simon Horman05ee2132017-01-04 09:37:25 +0100771 return 0;
Aurelien DARRAGON42b18fb2022-12-15 14:17:09 +0100772 if (!started && !chunk_strcat(out, "["))
Simon Horman05ee2132017-01-04 09:37:25 +0100773 return 0;
774
Aurelien DARRAGON42b18fb2022-12-15 14:17:09 +0100775 for (; ctx->field < stats_count; ctx->field++) {
Simon Horman05ee2132017-01-04 09:37:25 +0100776 int old_len;
Aurelien DARRAGON42b18fb2022-12-15 14:17:09 +0100777 int field = ctx->field;
Simon Horman05ee2132017-01-04 09:37:25 +0100778
779 if (!stats[field].type)
780 continue;
781
782 if (started && !chunk_strcat(out, ","))
783 goto err;
784 started = 1;
785
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200786 old_len = out->data;
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200787 if (domain == STATS_DOMAIN_PROXY) {
788 stats_print_proxy_field_json(out, &stats[field],
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200789 stat_f[domain][field].name,
790 field,
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200791 stats[ST_F_TYPE].u.u32,
792 stats[ST_F_IID].u.u32,
793 stats[ST_F_SID].u.u32,
794 stats[ST_F_PID].u.u32);
Emeric Brunf8642ee2021-10-29 17:59:18 +0200795 } else if (domain == STATS_DOMAIN_RESOLVERS) {
796 stats_print_rslv_field_json(out, &stats[field],
797 stat_f[domain][field].name,
798 field);
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200799 }
Amaury Denoyellef34017b2020-10-02 18:32:03 +0200800
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200801 if (old_len == out->data)
Simon Horman05ee2132017-01-04 09:37:25 +0100802 goto err;
803
804 if (!stats_emit_json_field_tags(out, &stats[field]))
805 goto err;
806
807 if (!stats_emit_json_data_field(out, &stats[field]))
808 goto err;
809
810 if (!chunk_strcat(out, "}"))
811 goto err;
Aurelien DARRAGON42b18fb2022-12-15 14:17:09 +0100812 ready_data = out->data;
Simon Horman05ee2132017-01-04 09:37:25 +0100813 }
814
815 if (!chunk_strcat(out, "]"))
816 goto err;
817
Aurelien DARRAGON42b18fb2022-12-15 14:17:09 +0100818 ctx->field = 0; /* we're done */
Simon Horman05ee2132017-01-04 09:37:25 +0100819 return 1;
820
821err:
Aurelien DARRAGON42b18fb2022-12-15 14:17:09 +0100822 if (!ready_data) {
823 /* not enough buffer space for a single entry.. */
824 chunk_reset(out);
825 if (ctx->flags & STAT_STARTED)
826 chunk_strcat(out, ",");
827 chunk_appendf(out, "{\"errorStr\":\"output buffer too short\"}");
828 return 0; /* hard error */
829 }
830 /* push ready data and wait for a new buffer to complete the dump */
831 out->data = ready_data;
832 return 1;
Simon Horman05ee2132017-01-04 09:37:25 +0100833}
834
William Lallemand74c24fb2016-11-21 17:18:36 +0100835/* Dump all fields from <stats> into <out> using the HTML format. A column is
Willy Tarreauab02b3f2019-10-09 11:11:46 +0200836 * reserved for the checkbox is STAT_ADMIN is set in <flags>. Some extra info
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +0200837 * are provided if STAT_SHLGNDS is present in <flags>. The statistics from
838 * extra modules are displayed at the end of the lines if STAT_SHMODULES is
839 * present in <flags>.
William Lallemand74c24fb2016-11-21 17:18:36 +0100840 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200841static int stats_dump_fields_html(struct buffer *out,
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100842 const struct field *stats,
843 struct show_stat_ctx *ctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100844{
Willy Tarreau83061a82018-07-13 11:56:34 +0200845 struct buffer src;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200846 struct stats_module *mod;
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +0100847 int flags = ctx->flags;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200848 int i = 0, j = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100849
850 if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_FE) {
851 chunk_appendf(out,
852 /* name, queue */
853 "<tr class=\"frontend\">");
854
Willy Tarreauab02b3f2019-10-09 11:11:46 +0200855 if (flags & STAT_ADMIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100856 /* Column sub-heading for Enable or Disable server */
857 chunk_appendf(out, "<td></td>");
858 }
859
860 chunk_appendf(out,
861 "<td class=ac>"
862 "<a name=\"%s/Frontend\"></a>"
863 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
864 "<td colspan=3></td>"
865 "",
866 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_PXNAME));
867
868 chunk_appendf(out,
869 /* sessions rate : current */
870 "<td><u>%s<div class=tips><table class=det>"
871 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
872 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
873 "",
874 U2H(stats[ST_F_RATE].u.u32),
875 U2H(stats[ST_F_CONN_RATE].u.u32),
876 U2H(stats[ST_F_RATE].u.u32));
877
878 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
879 chunk_appendf(out,
880 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
881 U2H(stats[ST_F_REQ_RATE].u.u32));
882
883 chunk_appendf(out,
884 "</table></div></u></td>"
885 /* sessions rate : max */
886 "<td><u>%s<div class=tips><table class=det>"
887 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
888 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
889 "",
890 U2H(stats[ST_F_RATE_MAX].u.u32),
891 U2H(stats[ST_F_CONN_RATE_MAX].u.u32),
892 U2H(stats[ST_F_RATE_MAX].u.u32));
893
894 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
895 chunk_appendf(out,
896 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
897 U2H(stats[ST_F_REQ_RATE_MAX].u.u32));
898
899 chunk_appendf(out,
900 "</table></div></u></td>"
901 /* sessions rate : limit */
902 "<td>%s</td>",
903 LIM2A(stats[ST_F_RATE_LIM].u.u32, "-"));
904
905 chunk_appendf(out,
906 /* sessions: current, max, limit, total */
907 "<td>%s</td><td>%s</td><td>%s</td>"
908 "<td><u>%s<div class=tips><table class=det>"
909 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
910 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
911 "",
912 U2H(stats[ST_F_SCUR].u.u32), U2H(stats[ST_F_SMAX].u.u32), U2H(stats[ST_F_SLIM].u.u32),
913 U2H(stats[ST_F_STOT].u.u64),
914 U2H(stats[ST_F_CONN_TOT].u.u64),
915 U2H(stats[ST_F_STOT].u.u64));
916
917 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
918 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
919 chunk_appendf(out,
920 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
921 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
922 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
923 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
924 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
925 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
926 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
927 "<tr><th>- other responses:</th><td>%s</td></tr>"
928 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
Willy Tarreaua1214a52018-12-14 14:00:25 +0100929 "<tr><th>Cache lookups:</th><td>%s</td></tr>"
930 "<tr><th>Cache hits:</th><td>%s</td><td>(%d%%)</td></tr>"
Willy Tarreau1b0f85e2018-05-28 15:12:40 +0200931 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
Christopher Faulet0159ee42019-12-16 14:40:39 +0100932 "<tr><th>Internal errors:</th><td>%s</td></tr>"
William Lallemand74c24fb2016-11-21 17:18:36 +0100933 "",
934 U2H(stats[ST_F_REQ_TOT].u.u64),
935 U2H(stats[ST_F_HRSP_1XX].u.u64),
936 U2H(stats[ST_F_HRSP_2XX].u.u64),
937 U2H(stats[ST_F_COMP_RSP].u.u64),
938 stats[ST_F_HRSP_2XX].u.u64 ?
939 (int)(100 * stats[ST_F_COMP_RSP].u.u64 / stats[ST_F_HRSP_2XX].u.u64) : 0,
940 U2H(stats[ST_F_HRSP_3XX].u.u64),
941 U2H(stats[ST_F_HRSP_4XX].u.u64),
942 U2H(stats[ST_F_HRSP_5XX].u.u64),
943 U2H(stats[ST_F_HRSP_OTHER].u.u64),
Willy Tarreau1b0f85e2018-05-28 15:12:40 +0200944 U2H(stats[ST_F_INTERCEPTED].u.u64),
Willy Tarreaua1214a52018-12-14 14:00:25 +0100945 U2H(stats[ST_F_CACHE_LOOKUPS].u.u64),
946 U2H(stats[ST_F_CACHE_HITS].u.u64),
947 stats[ST_F_CACHE_LOOKUPS].u.u64 ?
948 (int)(100 * stats[ST_F_CACHE_HITS].u.u64 / stats[ST_F_CACHE_LOOKUPS].u.u64) : 0,
Christopher Faulet0159ee42019-12-16 14:40:39 +0100949 U2H(stats[ST_F_WREW].u.u64),
950 U2H(stats[ST_F_EINT].u.u64));
William Lallemand74c24fb2016-11-21 17:18:36 +0100951 }
952
953 chunk_appendf(out,
954 "</table></div></u></td>"
955 /* sessions: lbtot, lastsess */
956 "<td></td><td></td>"
957 /* bytes : in */
958 "<td>%s</td>"
959 "",
960 U2H(stats[ST_F_BIN].u.u64));
961
962 chunk_appendf(out,
963 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
964 "<td>%s%s<div class=tips><table class=det>"
965 "<tr><th>Response bytes in:</th><td>%s</td></tr>"
966 "<tr><th>Compression in:</th><td>%s</td></tr>"
967 "<tr><th>Compression out:</th><td>%s</td><td>(%d%%)</td></tr>"
968 "<tr><th>Compression bypass:</th><td>%s</td></tr>"
969 "<tr><th>Total bytes saved:</th><td>%s</td><td>(%d%%)</td></tr>"
970 "</table></div>%s</td>",
971 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "<u>":"",
972 U2H(stats[ST_F_BOUT].u.u64),
973 U2H(stats[ST_F_BOUT].u.u64),
974 U2H(stats[ST_F_COMP_IN].u.u64),
975 U2H(stats[ST_F_COMP_OUT].u.u64),
976 stats[ST_F_COMP_IN].u.u64 ? (int)(stats[ST_F_COMP_OUT].u.u64 * 100 / stats[ST_F_COMP_IN].u.u64) : 0,
977 U2H(stats[ST_F_COMP_BYP].u.u64),
978 U2H(stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64),
979 stats[ST_F_BOUT].u.u64 ? (int)((stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64) * 100 / stats[ST_F_BOUT].u.u64) : 0,
980 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "</u>":"");
981
982 chunk_appendf(out,
983 /* denied: req, resp */
984 "<td>%s</td><td>%s</td>"
985 /* errors : request, connect, response */
986 "<td>%s</td><td></td><td></td>"
987 /* warnings: retries, redispatches */
988 "<td></td><td></td>"
989 /* server status : reflect frontend status */
990 "<td class=ac>%s</td>"
991 /* rest of server: nothing */
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200992 "<td class=ac colspan=8></td>"
William Lallemand74c24fb2016-11-21 17:18:36 +0100993 "",
994 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
995 U2H(stats[ST_F_EREQ].u.u64),
996 field_str(stats, ST_F_STATUS));
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200997
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +0200998 if (flags & STAT_SHMODULES) {
999 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001000 chunk_appendf(out, "<td>");
1001
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001002 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_FE) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001003 chunk_appendf(out,
1004 "<u>%s<div class=tips><table class=det>",
1005 mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001006 for (j = 0; j < mod->stats_count; ++j) {
1007 chunk_appendf(out,
1008 "<tr><th>%s</th><td>%s</td></tr>",
1009 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1010 ++i;
1011 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001012 chunk_appendf(out, "</table></div></u>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001013 } else {
1014 i += mod->stats_count;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001015 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001016
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001017 chunk_appendf(out, "</td>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001018 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001019 }
1020
1021 chunk_appendf(out, "</tr>");
William Lallemand74c24fb2016-11-21 17:18:36 +01001022 }
1023 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_SO) {
1024 chunk_appendf(out, "<tr class=socket>");
Willy Tarreauab02b3f2019-10-09 11:11:46 +02001025 if (flags & STAT_ADMIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001026 /* Column sub-heading for Enable or Disable server */
1027 chunk_appendf(out, "<td></td>");
1028 }
1029
1030 chunk_appendf(out,
1031 /* frontend name, listener name */
1032 "<td class=ac><a name=\"%s/+%s\"></a>%s"
1033 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
1034 "",
1035 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME),
Willy Tarreau708c4162019-10-09 10:19:16 +02001036 (flags & STAT_SHLGNDS)?"<u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01001037 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME), field_str(stats, ST_F_SVNAME));
1038
Willy Tarreau708c4162019-10-09 10:19:16 +02001039 if (flags & STAT_SHLGNDS) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001040 chunk_appendf(out, "<div class=tips>");
1041
Willy Tarreau90807112020-02-25 08:16:33 +01001042 if (isdigit((unsigned char)*field_str(stats, ST_F_ADDR)))
William Lallemand74c24fb2016-11-21 17:18:36 +01001043 chunk_appendf(out, "IPv4: %s, ", field_str(stats, ST_F_ADDR));
1044 else if (*field_str(stats, ST_F_ADDR) == '[')
1045 chunk_appendf(out, "IPv6: %s, ", field_str(stats, ST_F_ADDR));
1046 else if (*field_str(stats, ST_F_ADDR))
1047 chunk_appendf(out, "%s, ", field_str(stats, ST_F_ADDR));
1048
1049 /* id */
1050 chunk_appendf(out, "id: %d</div>", stats[ST_F_SID].u.u32);
1051 }
1052
1053 chunk_appendf(out,
1054 /* queue */
1055 "%s</td><td colspan=3></td>"
1056 /* sessions rate: current, max, limit */
1057 "<td colspan=3>&nbsp;</td>"
1058 /* sessions: current, max, limit, total, lbtot, lastsess */
1059 "<td>%s</td><td>%s</td><td>%s</td>"
1060 "<td>%s</td><td>&nbsp;</td><td>&nbsp;</td>"
1061 /* bytes: in, out */
1062 "<td>%s</td><td>%s</td>"
1063 "",
Willy Tarreau708c4162019-10-09 10:19:16 +02001064 (flags & STAT_SHLGNDS)?"</u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01001065 U2H(stats[ST_F_SCUR].u.u32), U2H(stats[ST_F_SMAX].u.u32), U2H(stats[ST_F_SLIM].u.u32),
1066 U2H(stats[ST_F_STOT].u.u64), U2H(stats[ST_F_BIN].u.u64), U2H(stats[ST_F_BOUT].u.u64));
1067
1068 chunk_appendf(out,
1069 /* denied: req, resp */
1070 "<td>%s</td><td>%s</td>"
1071 /* errors: request, connect, response */
1072 "<td>%s</td><td></td><td></td>"
1073 /* warnings: retries, redispatches */
1074 "<td></td><td></td>"
1075 /* server status: reflect listener status */
1076 "<td class=ac>%s</td>"
1077 /* rest of server: nothing */
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001078 "<td class=ac colspan=8></td>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001079 "",
1080 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
1081 U2H(stats[ST_F_EREQ].u.u64),
1082 field_str(stats, ST_F_STATUS));
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001083
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001084 if (flags & STAT_SHMODULES) {
1085 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001086 chunk_appendf(out, "<td>");
1087
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001088 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_LI) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001089 chunk_appendf(out,
1090 "<u>%s<div class=tips><table class=det>",
1091 mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001092 for (j = 0; j < mod->stats_count; ++j) {
1093 chunk_appendf(out,
1094 "<tr><th>%s</th><td>%s</td></tr>",
1095 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1096 ++i;
1097 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001098 chunk_appendf(out, "</table></div></u>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001099 } else {
1100 i += mod->stats_count;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001101 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001102
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001103 chunk_appendf(out, "</td>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001104 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001105 }
1106
1107 chunk_appendf(out, "</tr>");
William Lallemand74c24fb2016-11-21 17:18:36 +01001108 }
1109 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_SV) {
1110 const char *style;
1111
1112 /* determine the style to use depending on the server's state,
1113 * its health and weight. There isn't a 1-to-1 mapping between
1114 * state and styles for the cases where the server is (still)
1115 * up. The reason is that we don't want to report nolb and
1116 * drain with the same color.
1117 */
1118
1119 if (strcmp(field_str(stats, ST_F_STATUS), "DOWN") == 0 ||
1120 strcmp(field_str(stats, ST_F_STATUS), "DOWN (agent)") == 0) {
1121 style = "down";
1122 }
Florian Apolloner39272c22021-03-30 13:28:35 +02001123 else if (strncmp(field_str(stats, ST_F_STATUS), "DOWN ", strlen("DOWN ")) == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001124 style = "going_up";
1125 }
Daniel Corbettb4285172020-03-28 12:35:50 -04001126 else if (strcmp(field_str(stats, ST_F_STATUS), "DRAIN") == 0) {
1127 style = "draining";
1128 }
Florian Apolloner39272c22021-03-30 13:28:35 +02001129 else if (strncmp(field_str(stats, ST_F_STATUS), "NOLB ", strlen("NOLB ")) == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001130 style = "going_down";
1131 }
1132 else if (strcmp(field_str(stats, ST_F_STATUS), "NOLB") == 0) {
1133 style = "nolb";
1134 }
1135 else if (strcmp(field_str(stats, ST_F_STATUS), "no check") == 0) {
1136 style = "no_check";
1137 }
1138 else if (!stats[ST_F_CHKFAIL].type ||
1139 stats[ST_F_CHECK_HEALTH].u.u32 == stats[ST_F_CHECK_RISE].u.u32 + stats[ST_F_CHECK_FALL].u.u32 - 1) {
1140 /* no check or max health = UP */
1141 if (stats[ST_F_WEIGHT].u.u32)
1142 style = "up";
1143 else
1144 style = "draining";
1145 }
1146 else {
1147 style = "going_down";
1148 }
1149
Willy Tarreau7b524852020-08-11 10:26:36 +02001150 if (strncmp(field_str(stats, ST_F_STATUS), "MAINT", 5) == 0)
William Lallemand74c24fb2016-11-21 17:18:36 +01001151 chunk_appendf(out, "<tr class=\"maintain\">");
1152 else
1153 chunk_appendf(out,
1154 "<tr class=\"%s_%s\">",
1155 (stats[ST_F_BCK].u.u32) ? "backup" : "active", style);
1156
1157
Willy Tarreauab02b3f2019-10-09 11:11:46 +02001158 if (flags & STAT_ADMIN)
William Lallemand74c24fb2016-11-21 17:18:36 +01001159 chunk_appendf(out,
David Harrigand3db35a2016-12-30 12:12:49 +00001160 "<td><input class='%s-checkbox' type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
1161 field_str(stats, ST_F_PXNAME),
William Lallemand74c24fb2016-11-21 17:18:36 +01001162 field_str(stats, ST_F_SVNAME));
1163
1164 chunk_appendf(out,
1165 "<td class=ac><a name=\"%s/%s\"></a>%s"
1166 "<a class=lfsb href=\"#%s/%s\">%s</a>"
1167 "",
1168 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME),
Willy Tarreau708c4162019-10-09 10:19:16 +02001169 (flags & STAT_SHLGNDS) ? "<u>" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01001170 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME), field_str(stats, ST_F_SVNAME));
1171
Willy Tarreau708c4162019-10-09 10:19:16 +02001172 if (flags & STAT_SHLGNDS) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001173 chunk_appendf(out, "<div class=tips>");
1174
Willy Tarreau90807112020-02-25 08:16:33 +01001175 if (isdigit((unsigned char)*field_str(stats, ST_F_ADDR)))
William Lallemand74c24fb2016-11-21 17:18:36 +01001176 chunk_appendf(out, "IPv4: %s, ", field_str(stats, ST_F_ADDR));
1177 else if (*field_str(stats, ST_F_ADDR) == '[')
1178 chunk_appendf(out, "IPv6: %s, ", field_str(stats, ST_F_ADDR));
1179 else if (*field_str(stats, ST_F_ADDR))
1180 chunk_appendf(out, "%s, ", field_str(stats, ST_F_ADDR));
1181
1182 /* id */
Aurelien DARRAGON745ce8e2022-11-17 16:34:07 +01001183 chunk_appendf(out, "id: %d, rid: %d", stats[ST_F_SID].u.u32, stats[ST_F_SRID].u.u32);
William Lallemand74c24fb2016-11-21 17:18:36 +01001184
1185 /* cookie */
1186 if (stats[ST_F_COOKIE].type) {
1187 chunk_appendf(out, ", cookie: '");
1188 chunk_initstr(&src, field_str(stats, ST_F_COOKIE));
1189 chunk_htmlencode(out, &src);
1190 chunk_appendf(out, "'");
1191 }
1192
1193 chunk_appendf(out, "</div>");
1194 }
1195
1196 chunk_appendf(out,
1197 /* queue : current, max, limit */
1198 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
1199 /* sessions rate : current, max, limit */
1200 "<td>%s</td><td>%s</td><td></td>"
1201 "",
Willy Tarreau708c4162019-10-09 10:19:16 +02001202 (flags & STAT_SHLGNDS) ? "</u>" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01001203 U2H(stats[ST_F_QCUR].u.u32), U2H(stats[ST_F_QMAX].u.u32), LIM2A(stats[ST_F_QLIMIT].u.u32, "-"),
1204 U2H(stats[ST_F_RATE].u.u32), U2H(stats[ST_F_RATE_MAX].u.u32));
1205
1206 chunk_appendf(out,
1207 /* sessions: current, max, limit, total */
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001208 "<td><u>%s<div class=tips>"
1209 "<table class=det>"
1210 "<tr><th>Current active connections:</th><td>%s</td></tr>"
Willy Tarreau3bb617c2020-06-29 13:51:05 +02001211 "<tr><th>Current used connections:</th><td>%s</td></tr>"
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001212 "<tr><th>Current idle connections:</th><td>%s</td></tr>"
Willy Tarreau3bb617c2020-06-29 13:51:05 +02001213 "<tr><th>- unsafe:</th><td>%s</td></tr>"
1214 "<tr><th>- safe:</th><td>%s</td></tr>"
Willy Tarreaua9fcecb2020-06-29 15:38:53 +02001215 "<tr><th>Estimated need of connections:</th><td>%s</td></tr>"
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001216 "<tr><th>Active connections limit:</th><td>%s</td></tr>"
1217 "<tr><th>Idle connections limit:</th><td>%s</td></tr>"
1218 "</table></div></u>"
1219 "</td><td>%s</td><td>%s</td>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001220 "<td><u>%s<div class=tips><table class=det>"
1221 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
1222 "",
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001223 U2H(stats[ST_F_SCUR].u.u32),
Willy Tarreau3bb617c2020-06-29 13:51:05 +02001224 U2H(stats[ST_F_SCUR].u.u32),
1225 U2H(stats[ST_F_USED_CONN_CUR].u.u32),
1226 U2H(stats[ST_F_SRV_ICUR].u.u32),
1227 U2H(stats[ST_F_IDLE_CONN_CUR].u.u32),
1228 U2H(stats[ST_F_SAFE_CONN_CUR].u.u32),
Willy Tarreaua9fcecb2020-06-29 15:38:53 +02001229 U2H(stats[ST_F_NEED_CONN_EST].u.u32),
Willy Tarreau3bb617c2020-06-29 13:51:05 +02001230
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001231 LIM2A(stats[ST_F_SLIM].u.u32, "-"),
1232 stats[ST_F_SRV_ILIM].type ? U2H(stats[ST_F_SRV_ILIM].u.u32) : "-",
1233 U2H(stats[ST_F_SMAX].u.u32), LIM2A(stats[ST_F_SLIM].u.u32, "-"),
William Lallemand74c24fb2016-11-21 17:18:36 +01001234 U2H(stats[ST_F_STOT].u.u64),
1235 U2H(stats[ST_F_STOT].u.u64));
1236
1237 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1238 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001239 chunk_appendf(out,
Willy Tarreauf1573842018-12-14 11:35:36 +01001240 "<tr><th>New connections:</th><td>%s</td></tr>"
1241 "<tr><th>Reused connections:</th><td>%s</td><td>(%d%%)</td></tr>"
Marcin Deranek3c27dda2020-05-15 18:32:51 +02001242 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001243 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1244 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1245 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1246 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1247 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1248 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
Willy Tarreau1b0f85e2018-05-28 15:12:40 +02001249 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
Christopher Faulet0159ee42019-12-16 14:40:39 +01001250 "<tr><th>Internal error:</th><td>%s</td></tr>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001251 "",
Willy Tarreauf1573842018-12-14 11:35:36 +01001252 U2H(stats[ST_F_CONNECT].u.u64),
1253 U2H(stats[ST_F_REUSE].u.u64),
1254 (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64) ?
1255 (int)(100 * stats[ST_F_REUSE].u.u64 / (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64)) : 0,
Marcin Deranek3c27dda2020-05-15 18:32:51 +02001256 U2H(stats[ST_F_REQ_TOT].u.u64),
1257 U2H(stats[ST_F_HRSP_1XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1258 (int)(100 * stats[ST_F_HRSP_1XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1259 U2H(stats[ST_F_HRSP_2XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1260 (int)(100 * stats[ST_F_HRSP_2XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1261 U2H(stats[ST_F_HRSP_3XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1262 (int)(100 * stats[ST_F_HRSP_3XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1263 U2H(stats[ST_F_HRSP_4XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1264 (int)(100 * stats[ST_F_HRSP_4XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1265 U2H(stats[ST_F_HRSP_5XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1266 (int)(100 * stats[ST_F_HRSP_5XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1267 U2H(stats[ST_F_HRSP_OTHER].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1268 (int)(100 * stats[ST_F_HRSP_OTHER].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
Christopher Faulet0159ee42019-12-16 14:40:39 +01001269 U2H(stats[ST_F_WREW].u.u64),
1270 U2H(stats[ST_F_EINT].u.u64));
William Lallemand74c24fb2016-11-21 17:18:36 +01001271 }
1272
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001273 chunk_appendf(out, "<tr><th colspan=3>Max / Avg over last 1024 success. conn.</th></tr>");
1274 chunk_appendf(out, "<tr><th>- Queue time:</th><td>%s / %s</td><td>ms</td></tr>",
1275 U2H(stats[ST_F_QT_MAX].u.u32), U2H(stats[ST_F_QTIME].u.u32));
1276 chunk_appendf(out, "<tr><th>- Connect time:</th><td>%s / %s</td><td>ms</td></tr>",
1277 U2H(stats[ST_F_CT_MAX].u.u32), U2H(stats[ST_F_CTIME].u.u32));
William Lallemand74c24fb2016-11-21 17:18:36 +01001278 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001279 chunk_appendf(out, "<tr><th>- Responses time:</th><td>%s / %s</td><td>ms</td></tr>",
1280 U2H(stats[ST_F_RT_MAX].u.u32), U2H(stats[ST_F_RTIME].u.u32));
1281 chunk_appendf(out, "<tr><th>- Total time:</th><td>%s / %s</td><td>ms</td></tr>",
1282 U2H(stats[ST_F_TT_MAX].u.u32), U2H(stats[ST_F_TTIME].u.u32));
William Lallemand74c24fb2016-11-21 17:18:36 +01001283
1284 chunk_appendf(out,
1285 "</table></div></u></td>"
1286 /* sessions: lbtot, last */
1287 "<td>%s</td><td>%s</td>",
1288 U2H(stats[ST_F_LBTOT].u.u64),
1289 human_time(stats[ST_F_LASTSESS].u.s32, 1));
1290
1291 chunk_appendf(out,
1292 /* bytes : in, out */
1293 "<td>%s</td><td>%s</td>"
1294 /* denied: req, resp */
1295 "<td></td><td>%s</td>"
1296 /* errors : request, connect */
1297 "<td></td><td>%s</td>"
1298 /* errors : response */
1299 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
1300 /* warnings: retries, redispatches */
1301 "<td>%lld</td><td>%lld</td>"
1302 "",
1303 U2H(stats[ST_F_BIN].u.u64), U2H(stats[ST_F_BOUT].u.u64),
1304 U2H(stats[ST_F_DRESP].u.u64),
1305 U2H(stats[ST_F_ECON].u.u64),
1306 U2H(stats[ST_F_ERESP].u.u64),
1307 (long long)stats[ST_F_CLI_ABRT].u.u64,
1308 (long long)stats[ST_F_SRV_ABRT].u.u64,
1309 (long long)stats[ST_F_WRETR].u.u64,
1310 (long long)stats[ST_F_WREDIS].u.u64);
1311
1312 /* status, last change */
1313 chunk_appendf(out, "<td class=ac>");
1314
1315 /* FIXME!!!!
1316 * LASTCHG should contain the last change for *this* server and must be computed
1317 * properly above, as was done below, ie: this server if maint, otherwise ref server
1318 * if tracking. Note that ref is either local or remote depending on tracking.
1319 */
1320
1321
Willy Tarreau7b524852020-08-11 10:26:36 +02001322 if (strncmp(field_str(stats, ST_F_STATUS), "MAINT", 5) == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001323 chunk_appendf(out, "%s MAINT", human_time(stats[ST_F_LASTCHG].u.u32, 1));
1324 }
Willy Tarreau7b524852020-08-11 10:26:36 +02001325 else if (strcmp(field_str(stats, ST_F_STATUS), "no check") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001326 chunk_strcat(out, "<i>no check</i>");
1327 }
1328 else {
1329 chunk_appendf(out, "%s %s", human_time(stats[ST_F_LASTCHG].u.u32, 1), field_str(stats, ST_F_STATUS));
Willy Tarreau7b524852020-08-11 10:26:36 +02001330 if (strncmp(field_str(stats, ST_F_STATUS), "DOWN", 4) == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001331 if (stats[ST_F_CHECK_HEALTH].u.u32)
1332 chunk_strcat(out, " &uarr;");
1333 }
1334 else if (stats[ST_F_CHECK_HEALTH].u.u32 < stats[ST_F_CHECK_RISE].u.u32 + stats[ST_F_CHECK_FALL].u.u32 - 1)
1335 chunk_strcat(out, " &darr;");
1336 }
1337
Willy Tarreau7b524852020-08-11 10:26:36 +02001338 if (strncmp(field_str(stats, ST_F_STATUS), "DOWN", 4) == 0 &&
William Lallemand74c24fb2016-11-21 17:18:36 +01001339 stats[ST_F_AGENT_STATUS].type && !stats[ST_F_AGENT_HEALTH].u.u32) {
1340 chunk_appendf(out,
1341 "</td><td class=ac><u> %s",
1342 field_str(stats, ST_F_AGENT_STATUS));
1343
1344 if (stats[ST_F_AGENT_CODE].type)
1345 chunk_appendf(out, "/%d", stats[ST_F_AGENT_CODE].u.u32);
1346
1347 if (stats[ST_F_AGENT_DURATION].type)
1348 chunk_appendf(out, " in %lums", (long)stats[ST_F_AGENT_DURATION].u.u64);
1349
1350 chunk_appendf(out, "<div class=tips>%s", field_str(stats, ST_F_AGENT_DESC));
1351
1352 if (*field_str(stats, ST_F_LAST_AGT)) {
1353 chunk_appendf(out, ": ");
1354 chunk_initstr(&src, field_str(stats, ST_F_LAST_AGT));
1355 chunk_htmlencode(out, &src);
1356 }
1357 chunk_appendf(out, "</div></u>");
1358 }
1359 else if (stats[ST_F_CHECK_STATUS].type) {
1360 chunk_appendf(out,
1361 "</td><td class=ac><u> %s",
1362 field_str(stats, ST_F_CHECK_STATUS));
1363
1364 if (stats[ST_F_CHECK_CODE].type)
1365 chunk_appendf(out, "/%d", stats[ST_F_CHECK_CODE].u.u32);
1366
1367 if (stats[ST_F_CHECK_DURATION].type)
1368 chunk_appendf(out, " in %lums", (long)stats[ST_F_CHECK_DURATION].u.u64);
1369
1370 chunk_appendf(out, "<div class=tips>%s", field_str(stats, ST_F_CHECK_DESC));
1371
1372 if (*field_str(stats, ST_F_LAST_CHK)) {
1373 chunk_appendf(out, ": ");
1374 chunk_initstr(&src, field_str(stats, ST_F_LAST_CHK));
1375 chunk_htmlencode(out, &src);
1376 }
1377 chunk_appendf(out, "</div></u>");
1378 }
1379 else
1380 chunk_appendf(out, "</td><td>");
1381
1382 chunk_appendf(out,
Willy Tarreaubd715102020-10-23 22:44:30 +02001383 /* weight / uweight */
1384 "</td><td class=ac>%d/%d</td>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001385 /* act, bck */
1386 "<td class=ac>%s</td><td class=ac>%s</td>"
1387 "",
Willy Tarreaubd715102020-10-23 22:44:30 +02001388 stats[ST_F_WEIGHT].u.u32, stats[ST_F_UWEIGHT].u.u32,
William Lallemand74c24fb2016-11-21 17:18:36 +01001389 stats[ST_F_BCK].u.u32 ? "-" : "Y",
1390 stats[ST_F_BCK].u.u32 ? "Y" : "-");
1391
1392 /* check failures: unique, fatal, down time */
1393 if (strcmp(field_str(stats, ST_F_STATUS), "MAINT (resolution)") == 0) {
1394 chunk_appendf(out, "<td class=ac colspan=3>resolution</td>");
1395 }
1396 else if (stats[ST_F_CHKFAIL].type) {
1397 chunk_appendf(out, "<td><u>%lld", (long long)stats[ST_F_CHKFAIL].u.u64);
1398
1399 if (stats[ST_F_HANAFAIL].type)
1400 chunk_appendf(out, "/%lld", (long long)stats[ST_F_HANAFAIL].u.u64);
1401
1402 chunk_appendf(out,
1403 "<div class=tips>Failed Health Checks%s</div></u></td>"
1404 "<td>%lld</td><td>%s</td>"
1405 "",
1406 stats[ST_F_HANAFAIL].type ? "/Health Analyses" : "",
1407 (long long)stats[ST_F_CHKDOWN].u.u64, human_time(stats[ST_F_DOWNTIME].u.u32, 1));
1408 }
1409 else if (strcmp(field_str(stats, ST_F_STATUS), "MAINT") != 0 && field_format(stats, ST_F_TRACKED) == FF_STR) {
1410 /* tracking a server (hence inherited maint would appear as "MAINT (via...)" */
1411 chunk_appendf(out,
1412 "<td class=ac colspan=3><a class=lfsb href=\"#%s\">via %s</a></td>",
1413 field_str(stats, ST_F_TRACKED), field_str(stats, ST_F_TRACKED));
1414 }
1415 else
1416 chunk_appendf(out, "<td colspan=3></td>");
1417
1418 /* throttle */
1419 if (stats[ST_F_THROTTLE].type)
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001420 chunk_appendf(out, "<td class=ac>%d %%</td>\n", stats[ST_F_THROTTLE].u.u32);
William Lallemand74c24fb2016-11-21 17:18:36 +01001421 else
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001422 chunk_appendf(out, "<td class=ac>-</td>");
1423
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001424 if (flags & STAT_SHMODULES) {
1425 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001426 chunk_appendf(out, "<td>");
1427
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001428 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_SRV) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001429 chunk_appendf(out,
1430 "<u>%s<div class=tips><table class=det>",
1431 mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001432 for (j = 0; j < mod->stats_count; ++j) {
1433 chunk_appendf(out,
1434 "<tr><th>%s</th><td>%s</td></tr>",
1435 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1436 ++i;
1437 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001438 chunk_appendf(out, "</table></div></u>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001439 } else {
1440 i += mod->stats_count;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001441 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001442
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001443 chunk_appendf(out, "</td>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001444 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001445 }
1446
1447 chunk_appendf(out, "</tr>\n");
William Lallemand74c24fb2016-11-21 17:18:36 +01001448 }
1449 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_BE) {
1450 chunk_appendf(out, "<tr class=\"backend\">");
Willy Tarreauab02b3f2019-10-09 11:11:46 +02001451 if (flags & STAT_ADMIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001452 /* Column sub-heading for Enable or Disable server */
1453 chunk_appendf(out, "<td></td>");
1454 }
1455 chunk_appendf(out,
1456 "<td class=ac>"
1457 /* name */
1458 "%s<a name=\"%s/Backend\"></a>"
1459 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
1460 "",
Willy Tarreau708c4162019-10-09 10:19:16 +02001461 (flags & STAT_SHLGNDS)?"<u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01001462 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_PXNAME));
1463
Willy Tarreau708c4162019-10-09 10:19:16 +02001464 if (flags & STAT_SHLGNDS) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001465 /* balancing */
1466 chunk_appendf(out, "<div class=tips>balancing: %s",
1467 field_str(stats, ST_F_ALGO));
1468
1469 /* cookie */
1470 if (stats[ST_F_COOKIE].type) {
1471 chunk_appendf(out, ", cookie: '");
1472 chunk_initstr(&src, field_str(stats, ST_F_COOKIE));
1473 chunk_htmlencode(out, &src);
1474 chunk_appendf(out, "'");
1475 }
1476 chunk_appendf(out, "</div>");
1477 }
1478
1479 chunk_appendf(out,
1480 "%s</td>"
1481 /* queue : current, max */
1482 "<td>%s</td><td>%s</td><td></td>"
1483 /* sessions rate : current, max, limit */
1484 "<td>%s</td><td>%s</td><td></td>"
1485 "",
Willy Tarreau708c4162019-10-09 10:19:16 +02001486 (flags & STAT_SHLGNDS)?"</u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01001487 U2H(stats[ST_F_QCUR].u.u32), U2H(stats[ST_F_QMAX].u.u32),
1488 U2H(stats[ST_F_RATE].u.u32), U2H(stats[ST_F_RATE_MAX].u.u32));
1489
1490 chunk_appendf(out,
1491 /* sessions: current, max, limit, total */
1492 "<td>%s</td><td>%s</td><td>%s</td>"
1493 "<td><u>%s<div class=tips><table class=det>"
1494 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
1495 "",
Willy Tarreau8e0f1752016-12-12 15:07:29 +01001496 U2H(stats[ST_F_SCUR].u.u32), U2H(stats[ST_F_SMAX].u.u32), U2H(stats[ST_F_SLIM].u.u32),
William Lallemand74c24fb2016-11-21 17:18:36 +01001497 U2H(stats[ST_F_STOT].u.u64),
1498 U2H(stats[ST_F_STOT].u.u64));
1499
1500 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1501 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
1502 chunk_appendf(out,
Willy Tarreauf1573842018-12-14 11:35:36 +01001503 "<tr><th>New connections:</th><td>%s</td></tr>"
1504 "<tr><th>Reused connections:</th><td>%s</td><td>(%d%%)</td></tr>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001505 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
1506 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
1507 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
1508 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
1509 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
1510 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
1511 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
1512 "<tr><th>- other responses:</th><td>%s</td></tr>"
Willy Tarreaua1214a52018-12-14 14:00:25 +01001513 "<tr><th>Cache lookups:</th><td>%s</td></tr>"
1514 "<tr><th>Cache hits:</th><td>%s</td><td>(%d%%)</td></tr>"
Willy Tarreau1b0f85e2018-05-28 15:12:40 +02001515 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
Christopher Faulet0159ee42019-12-16 14:40:39 +01001516 "<tr><th>Internal errors:</th><td>%s</td></tr>"
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001517 "",
Willy Tarreauf1573842018-12-14 11:35:36 +01001518 U2H(stats[ST_F_CONNECT].u.u64),
1519 U2H(stats[ST_F_REUSE].u.u64),
1520 (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64) ?
1521 (int)(100 * stats[ST_F_REUSE].u.u64 / (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64)) : 0,
William Lallemand74c24fb2016-11-21 17:18:36 +01001522 U2H(stats[ST_F_REQ_TOT].u.u64),
1523 U2H(stats[ST_F_HRSP_1XX].u.u64),
1524 U2H(stats[ST_F_HRSP_2XX].u.u64),
1525 U2H(stats[ST_F_COMP_RSP].u.u64),
1526 stats[ST_F_HRSP_2XX].u.u64 ?
1527 (int)(100 * stats[ST_F_COMP_RSP].u.u64 / stats[ST_F_HRSP_2XX].u.u64) : 0,
1528 U2H(stats[ST_F_HRSP_3XX].u.u64),
1529 U2H(stats[ST_F_HRSP_4XX].u.u64),
1530 U2H(stats[ST_F_HRSP_5XX].u.u64),
Willy Tarreaufeead3a2018-12-14 13:48:44 +01001531 U2H(stats[ST_F_HRSP_OTHER].u.u64),
Willy Tarreaua1214a52018-12-14 14:00:25 +01001532 U2H(stats[ST_F_CACHE_LOOKUPS].u.u64),
1533 U2H(stats[ST_F_CACHE_HITS].u.u64),
1534 stats[ST_F_CACHE_LOOKUPS].u.u64 ?
1535 (int)(100 * stats[ST_F_CACHE_HITS].u.u64 / stats[ST_F_CACHE_LOOKUPS].u.u64) : 0,
Christopher Faulet0159ee42019-12-16 14:40:39 +01001536 U2H(stats[ST_F_WREW].u.u64),
1537 U2H(stats[ST_F_EINT].u.u64));
William Lallemand74c24fb2016-11-21 17:18:36 +01001538 }
1539
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001540 chunk_appendf(out, "<tr><th colspan=3>Max / Avg over last 1024 success. conn.</th></tr>");
1541 chunk_appendf(out, "<tr><th>- Queue time:</th><td>%s / %s</td><td>ms</td></tr>",
1542 U2H(stats[ST_F_QT_MAX].u.u32), U2H(stats[ST_F_QTIME].u.u32));
1543 chunk_appendf(out, "<tr><th>- Connect time:</th><td>%s / %s</td><td>ms</td></tr>",
1544 U2H(stats[ST_F_CT_MAX].u.u32), U2H(stats[ST_F_CTIME].u.u32));
William Lallemand74c24fb2016-11-21 17:18:36 +01001545 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001546 chunk_appendf(out, "<tr><th>- Responses time:</th><td>%s / %s</td><td>ms</td></tr>",
1547 U2H(stats[ST_F_RT_MAX].u.u32), U2H(stats[ST_F_RTIME].u.u32));
1548 chunk_appendf(out, "<tr><th>- Total time:</th><td>%s / %s</td><td>ms</td></tr>",
1549 U2H(stats[ST_F_TT_MAX].u.u32), U2H(stats[ST_F_TTIME].u.u32));
William Lallemand74c24fb2016-11-21 17:18:36 +01001550
1551 chunk_appendf(out,
1552 "</table></div></u></td>"
1553 /* sessions: lbtot, last */
1554 "<td>%s</td><td>%s</td>"
1555 /* bytes: in */
1556 "<td>%s</td>"
1557 "",
1558 U2H(stats[ST_F_LBTOT].u.u64),
1559 human_time(stats[ST_F_LASTSESS].u.s32, 1),
1560 U2H(stats[ST_F_BIN].u.u64));
1561
1562 chunk_appendf(out,
1563 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
1564 "<td>%s%s<div class=tips><table class=det>"
1565 "<tr><th>Response bytes in:</th><td>%s</td></tr>"
1566 "<tr><th>Compression in:</th><td>%s</td></tr>"
1567 "<tr><th>Compression out:</th><td>%s</td><td>(%d%%)</td></tr>"
1568 "<tr><th>Compression bypass:</th><td>%s</td></tr>"
1569 "<tr><th>Total bytes saved:</th><td>%s</td><td>(%d%%)</td></tr>"
1570 "</table></div>%s</td>",
1571 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "<u>":"",
1572 U2H(stats[ST_F_BOUT].u.u64),
1573 U2H(stats[ST_F_BOUT].u.u64),
1574 U2H(stats[ST_F_COMP_IN].u.u64),
1575 U2H(stats[ST_F_COMP_OUT].u.u64),
1576 stats[ST_F_COMP_IN].u.u64 ? (int)(stats[ST_F_COMP_OUT].u.u64 * 100 / stats[ST_F_COMP_IN].u.u64) : 0,
1577 U2H(stats[ST_F_COMP_BYP].u.u64),
1578 U2H(stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64),
1579 stats[ST_F_BOUT].u.u64 ? (int)((stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64) * 100 / stats[ST_F_BOUT].u.u64) : 0,
1580 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "</u>":"");
1581
1582 chunk_appendf(out,
1583 /* denied: req, resp */
1584 "<td>%s</td><td>%s</td>"
1585 /* errors : request, connect */
1586 "<td></td><td>%s</td>"
1587 /* errors : response */
1588 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
1589 /* warnings: retries, redispatches */
1590 "<td>%lld</td><td>%lld</td>"
1591 /* backend status: reflect backend status (up/down): we display UP
1592 * if the backend has known working servers or if it has no server at
1593 * all (eg: for stats). Then we display the total weight, number of
1594 * active and backups. */
Willy Tarreaubd715102020-10-23 22:44:30 +02001595 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d/%d</td>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001596 "<td class=ac>%d</td><td class=ac>%d</td>"
1597 "",
1598 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
1599 U2H(stats[ST_F_ECON].u.u64),
1600 U2H(stats[ST_F_ERESP].u.u64),
1601 (long long)stats[ST_F_CLI_ABRT].u.u64,
1602 (long long)stats[ST_F_SRV_ABRT].u.u64,
1603 (long long)stats[ST_F_WRETR].u.u64, (long long)stats[ST_F_WREDIS].u.u64,
1604 human_time(stats[ST_F_LASTCHG].u.u32, 1),
1605 strcmp(field_str(stats, ST_F_STATUS), "DOWN") ? field_str(stats, ST_F_STATUS) : "<font color=\"red\"><b>DOWN</b></font>",
Willy Tarreaubd715102020-10-23 22:44:30 +02001606 stats[ST_F_WEIGHT].u.u32, stats[ST_F_UWEIGHT].u.u32,
William Lallemand74c24fb2016-11-21 17:18:36 +01001607 stats[ST_F_ACT].u.u32, stats[ST_F_BCK].u.u32);
1608
1609 chunk_appendf(out,
1610 /* rest of backend: nothing, down transitions, total downtime, throttle */
1611 "<td class=ac>&nbsp;</td><td>%d</td>"
1612 "<td>%s</td>"
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001613 "<td></td>",
William Lallemand74c24fb2016-11-21 17:18:36 +01001614 stats[ST_F_CHKDOWN].u.u32,
1615 stats[ST_F_DOWNTIME].type ? human_time(stats[ST_F_DOWNTIME].u.u32, 1) : "&nbsp;");
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001616
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001617 if (flags & STAT_SHMODULES) {
1618 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001619 chunk_appendf(out, "<td>");
1620
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001621 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_BE) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001622 chunk_appendf(out,
1623 "<u>%s<div class=tips><table class=det>",
1624 mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001625 for (j = 0; j < mod->stats_count; ++j) {
1626 chunk_appendf(out,
1627 "<tr><th>%s</th><td>%s</td></tr>",
1628 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1629 ++i;
1630 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001631 chunk_appendf(out, "</table></div></u>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001632 } else {
1633 i += mod->stats_count;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001634 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001635
1636 chunk_appendf(out, "</td>");
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001637 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001638 }
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001639
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001640 chunk_appendf(out, "</tr>");
William Lallemand74c24fb2016-11-21 17:18:36 +01001641 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001642
William Lallemand74c24fb2016-11-21 17:18:36 +01001643 return 1;
1644}
1645
Amaury Denoyelle97323c92020-10-02 18:32:01 +02001646int stats_dump_one_line(const struct field *stats, size_t stats_count,
1647 struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +01001648{
Willy Tarreau91cefca2022-05-03 17:08:29 +02001649 struct show_stat_ctx *ctx = appctx->svcctx;
Simon Horman05ee2132017-01-04 09:37:25 +01001650 int ret;
1651
Willy Tarreau91cefca2022-05-03 17:08:29 +02001652 if (ctx->flags & STAT_FMT_HTML)
Christopher Fauleta8b76842022-12-16 15:08:36 +01001653 ret = stats_dump_fields_html(&trash_chunk, stats, ctx);
Willy Tarreau91cefca2022-05-03 17:08:29 +02001654 else if (ctx->flags & STAT_FMT_TYPED)
Christopher Fauleta8b76842022-12-16 15:08:36 +01001655 ret = stats_dump_fields_typed(&trash_chunk, stats, stats_count, ctx);
Willy Tarreau91cefca2022-05-03 17:08:29 +02001656 else if (ctx->flags & STAT_FMT_JSON)
Christopher Fauleta8b76842022-12-16 15:08:36 +01001657 ret = stats_dump_fields_json(&trash_chunk, stats, stats_count, ctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01001658 else
Christopher Fauleta8b76842022-12-16 15:08:36 +01001659 ret = stats_dump_fields_csv(&trash_chunk, stats, stats_count, ctx);
Simon Horman05ee2132017-01-04 09:37:25 +01001660
1661 if (ret)
Willy Tarreau91cefca2022-05-03 17:08:29 +02001662 ctx->flags |= STAT_STARTED;
Simon Horman05ee2132017-01-04 09:37:25 +01001663
1664 return ret;
William Lallemand74c24fb2016-11-21 17:18:36 +01001665}
1666
William Dauchy0ef54392021-01-17 18:27:45 +01001667/* Fill <stats> with the frontend statistics. <stats> is preallocated array of
Christopher Fauletd808f172021-01-22 17:33:22 +01001668 * length <len>. If <selected_field> is != NULL, only fill this one. The length
1669 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
1670 * this value, or if the selected field is not implemented for frontends, the
1671 * function returns 0, otherwise, it returns 1.
William Lallemand74c24fb2016-11-21 17:18:36 +01001672 */
William Dauchy0ef54392021-01-17 18:27:45 +01001673int stats_fill_fe_stats(struct proxy *px, struct field *stats, int len,
1674 enum stat_field *selected_field)
William Lallemand74c24fb2016-11-21 17:18:36 +01001675{
William Dauchy0ef54392021-01-17 18:27:45 +01001676 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
William Dauchy0ef54392021-01-17 18:27:45 +01001677
William Lallemand74c24fb2016-11-21 17:18:36 +01001678 if (len < ST_F_TOTAL_FIELDS)
1679 return 0;
1680
William Dauchy0ef54392021-01-17 18:27:45 +01001681 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
Christopher Faulet8596bfb2021-01-25 15:16:41 +01001682 struct field metric = { 0 };
1683
William Dauchy0ef54392021-01-17 18:27:45 +01001684 switch (current_field) {
1685 case ST_F_PXNAME:
1686 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
1687 break;
1688 case ST_F_SVNAME:
1689 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, "FRONTEND");
1690 break;
1691 case ST_F_MODE:
1692 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
1693 break;
1694 case ST_F_SCUR:
1695 metric = mkf_u32(0, px->feconn);
1696 break;
1697 case ST_F_SMAX:
1698 metric = mkf_u32(FN_MAX, px->fe_counters.conn_max);
1699 break;
1700 case ST_F_SLIM:
1701 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->maxconn);
1702 break;
1703 case ST_F_STOT:
1704 metric = mkf_u64(FN_COUNTER, px->fe_counters.cum_sess);
1705 break;
1706 case ST_F_BIN:
1707 metric = mkf_u64(FN_COUNTER, px->fe_counters.bytes_in);
1708 break;
1709 case ST_F_BOUT:
1710 metric = mkf_u64(FN_COUNTER, px->fe_counters.bytes_out);
1711 break;
1712 case ST_F_DREQ:
1713 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_req);
1714 break;
1715 case ST_F_DRESP:
1716 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_resp);
1717 break;
1718 case ST_F_EREQ:
1719 metric = mkf_u64(FN_COUNTER, px->fe_counters.failed_req);
1720 break;
1721 case ST_F_DCON:
1722 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_conn);
1723 break;
1724 case ST_F_DSES:
1725 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_sess);
1726 break;
Aurelien DARRAGONcddec0a2022-09-09 15:58:57 +02001727 case ST_F_STATUS: {
1728 const char *state;
1729
1730 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))
1731 state = "STOP";
1732 else if (px->flags & PR_FL_PAUSED)
1733 state = "PAUSED";
1734 else
1735 state = "OPEN";
1736 metric = mkf_str(FO_STATUS, state);
William Dauchy0ef54392021-01-17 18:27:45 +01001737 break;
Aurelien DARRAGONcddec0a2022-09-09 15:58:57 +02001738 }
William Dauchy0ef54392021-01-17 18:27:45 +01001739 case ST_F_PID:
Willy Tarreaue8422bf2021-06-15 09:08:18 +02001740 metric = mkf_u32(FO_KEY, 1);
William Dauchy0ef54392021-01-17 18:27:45 +01001741 break;
1742 case ST_F_IID:
1743 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
1744 break;
1745 case ST_F_SID:
1746 metric = mkf_u32(FO_KEY|FS_SERVICE, 0);
1747 break;
1748 case ST_F_TYPE:
1749 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_FE);
1750 break;
1751 case ST_F_RATE:
1752 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_sess_per_sec));
1753 break;
1754 case ST_F_RATE_LIM:
1755 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->fe_sps_lim);
1756 break;
1757 case ST_F_RATE_MAX:
1758 metric = mkf_u32(FN_MAX, px->fe_counters.sps_max);
1759 break;
1760 case ST_F_WREW:
1761 metric = mkf_u64(FN_COUNTER, px->fe_counters.failed_rewrites);
1762 break;
1763 case ST_F_EINT:
1764 metric = mkf_u64(FN_COUNTER, px->fe_counters.internal_errors);
1765 break;
1766 case ST_F_HRSP_1XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001767 if (px->mode == PR_MODE_HTTP)
1768 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[1]);
William Dauchy0ef54392021-01-17 18:27:45 +01001769 break;
1770 case ST_F_HRSP_2XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001771 if (px->mode == PR_MODE_HTTP)
1772 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[2]);
William Dauchy0ef54392021-01-17 18:27:45 +01001773 break;
1774 case ST_F_HRSP_3XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001775 if (px->mode == PR_MODE_HTTP)
1776 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[3]);
William Dauchy0ef54392021-01-17 18:27:45 +01001777 break;
1778 case ST_F_HRSP_4XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001779 if (px->mode == PR_MODE_HTTP)
1780 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[4]);
William Dauchy0ef54392021-01-17 18:27:45 +01001781 break;
1782 case ST_F_HRSP_5XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001783 if (px->mode == PR_MODE_HTTP)
1784 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[5]);
William Dauchy0ef54392021-01-17 18:27:45 +01001785 break;
1786 case ST_F_HRSP_OTHER:
William Dauchy2107a0f2021-01-22 21:09:48 +01001787 if (px->mode == PR_MODE_HTTP)
1788 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[0]);
William Dauchy0ef54392021-01-17 18:27:45 +01001789 break;
1790 case ST_F_INTERCEPTED:
William Dauchy2107a0f2021-01-22 21:09:48 +01001791 if (px->mode == PR_MODE_HTTP)
1792 metric = mkf_u64(FN_COUNTER, px->fe_counters.intercepted_req);
William Dauchy0ef54392021-01-17 18:27:45 +01001793 break;
1794 case ST_F_CACHE_LOOKUPS:
William Dauchy2107a0f2021-01-22 21:09:48 +01001795 if (px->mode == PR_MODE_HTTP)
1796 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cache_lookups);
William Dauchy0ef54392021-01-17 18:27:45 +01001797 break;
1798 case ST_F_CACHE_HITS:
William Dauchy2107a0f2021-01-22 21:09:48 +01001799 if (px->mode == PR_MODE_HTTP)
1800 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cache_hits);
William Dauchy0ef54392021-01-17 18:27:45 +01001801 break;
1802 case ST_F_REQ_RATE:
1803 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_req_per_sec));
1804 break;
1805 case ST_F_REQ_RATE_MAX:
1806 metric = mkf_u32(FN_MAX, px->fe_counters.p.http.rps_max);
1807 break;
1808 case ST_F_REQ_TOT:
1809 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cum_req);
1810 break;
1811 case ST_F_COMP_IN:
1812 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_in);
1813 break;
1814 case ST_F_COMP_OUT:
1815 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_out);
1816 break;
1817 case ST_F_COMP_BYP:
1818 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_byp);
1819 break;
1820 case ST_F_COMP_RSP:
1821 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.comp_rsp);
1822 break;
1823 case ST_F_CONN_RATE:
1824 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_conn_per_sec));
1825 break;
1826 case ST_F_CONN_RATE_MAX:
1827 metric = mkf_u32(FN_MAX, px->fe_counters.cps_max);
1828 break;
1829 case ST_F_CONN_TOT:
1830 metric = mkf_u64(FN_COUNTER, px->fe_counters.cum_conn);
1831 break;
1832 default:
Christopher Fauletd808f172021-01-22 17:33:22 +01001833 /* not used for frontends. If a specific metric
1834 * is requested, return an error. Otherwise continue.
1835 */
1836 if (selected_field != NULL)
1837 return 0;
1838 continue;
William Dauchy0ef54392021-01-17 18:27:45 +01001839 }
1840 stats[current_field] = metric;
1841 if (selected_field != NULL)
1842 break;
William Lallemand74c24fb2016-11-21 17:18:36 +01001843 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001844 return 1;
1845}
1846
Christopher Fauleta8b76842022-12-16 15:08:36 +01001847/* Dumps a frontend's line to the local trash buffer for the current proxy <px>
1848 * and uses the state from stream connector <sc>. The caller is responsible for
1849 * clearing the local trash buffer if needed. Returns non-zero if it emits
1850 * anything, zero otherwise.
William Lallemand74c24fb2016-11-21 17:18:36 +01001851 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02001852static int stats_dump_fe_stats(struct stconn *sc, struct proxy *px)
William Lallemand74c24fb2016-11-21 17:18:36 +01001853{
Willy Tarreaucaff6312022-05-27 10:17:46 +02001854 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02001855 struct show_stat_ctx *ctx = appctx->svcctx;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02001856 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
1857 struct stats_module *mod;
1858 size_t stats_count = ST_F_TOTAL_FIELDS;
William Lallemand74c24fb2016-11-21 17:18:36 +01001859
1860 if (!(px->cap & PR_CAP_FE))
1861 return 0;
1862
Willy Tarreau91cefca2022-05-03 17:08:29 +02001863 if ((ctx->flags & STAT_BOUND) && !(ctx->type & (1 << STATS_TYPE_FE)))
William Lallemand74c24fb2016-11-21 17:18:36 +01001864 return 0;
1865
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02001866 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
1867
William Dauchy0ef54392021-01-17 18:27:45 +01001868 if (!stats_fill_fe_stats(px, stats, ST_F_TOTAL_FIELDS, NULL))
William Lallemand74c24fb2016-11-21 17:18:36 +01001869 return 0;
1870
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02001871 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
1872 void *counters;
1873
1874 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_FE)) {
1875 stats_count += mod->stats_count;
1876 continue;
1877 }
1878
1879 counters = EXTRA_COUNTERS_GET(px->extra_counters_fe, mod);
1880 mod->fill_stats(counters, stats + stats_count);
1881 stats_count += mod->stats_count;
1882 }
1883
1884 return stats_dump_one_line(stats, stats_count, appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01001885}
1886
William Dauchy655e14e2021-02-14 23:22:54 +01001887/* Fill <stats> with the listener statistics. <stats> is preallocated array of
1888 * length <len>. The length of the array must be at least ST_F_TOTAL_FIELDS. If
1889 * this length is less then this value, the function returns 0, otherwise, it
1890 * returns 1. If selected_field is != NULL, only fill this one. <flags> can
1891 * take the value STAT_SHLGNDS.
William Lallemand74c24fb2016-11-21 17:18:36 +01001892 */
1893int stats_fill_li_stats(struct proxy *px, struct listener *l, int flags,
William Dauchy655e14e2021-02-14 23:22:54 +01001894 struct field *stats, int len, enum stat_field *selected_field)
William Lallemand74c24fb2016-11-21 17:18:36 +01001895{
William Dauchy655e14e2021-02-14 23:22:54 +01001896 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
Willy Tarreau83061a82018-07-13 11:56:34 +02001897 struct buffer *out = get_trash_chunk();
William Lallemand74c24fb2016-11-21 17:18:36 +01001898
1899 if (len < ST_F_TOTAL_FIELDS)
1900 return 0;
1901
1902 if (!l->counters)
1903 return 0;
1904
1905 chunk_reset(out);
William Lallemand74c24fb2016-11-21 17:18:36 +01001906
William Dauchy655e14e2021-02-14 23:22:54 +01001907 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
1908 struct field metric = { 0 };
William Lallemand74c24fb2016-11-21 17:18:36 +01001909
William Dauchy655e14e2021-02-14 23:22:54 +01001910 switch (current_field) {
1911 case ST_F_PXNAME:
1912 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
1913 break;
1914 case ST_F_SVNAME:
1915 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, l->name);
1916 break;
1917 case ST_F_MODE:
1918 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
1919 break;
1920 case ST_F_SCUR:
1921 metric = mkf_u32(0, l->nbconn);
1922 break;
1923 case ST_F_SMAX:
1924 metric = mkf_u32(FN_MAX, l->counters->conn_max);
1925 break;
1926 case ST_F_SLIM:
1927 metric = mkf_u32(FO_CONFIG|FN_LIMIT, l->maxconn);
1928 break;
1929 case ST_F_STOT:
1930 metric = mkf_u64(FN_COUNTER, l->counters->cum_conn);
1931 break;
1932 case ST_F_BIN:
1933 metric = mkf_u64(FN_COUNTER, l->counters->bytes_in);
1934 break;
1935 case ST_F_BOUT:
1936 metric = mkf_u64(FN_COUNTER, l->counters->bytes_out);
1937 break;
1938 case ST_F_DREQ:
1939 metric = mkf_u64(FN_COUNTER, l->counters->denied_req);
1940 break;
1941 case ST_F_DRESP:
1942 metric = mkf_u64(FN_COUNTER, l->counters->denied_resp);
1943 break;
1944 case ST_F_EREQ:
1945 metric = mkf_u64(FN_COUNTER, l->counters->failed_req);
1946 break;
1947 case ST_F_DCON:
1948 metric = mkf_u64(FN_COUNTER, l->counters->denied_conn);
1949 break;
1950 case ST_F_DSES:
1951 metric = mkf_u64(FN_COUNTER, l->counters->denied_sess);
1952 break;
1953 case ST_F_STATUS:
William Dauchy3679d0c2021-02-14 23:22:55 +01001954 metric = mkf_str(FO_STATUS, li_status_st[get_li_status(l)]);
William Dauchy655e14e2021-02-14 23:22:54 +01001955 break;
1956 case ST_F_PID:
Willy Tarreaue8422bf2021-06-15 09:08:18 +02001957 metric = mkf_u32(FO_KEY, 1);
William Dauchy655e14e2021-02-14 23:22:54 +01001958 break;
1959 case ST_F_IID:
1960 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
1961 break;
1962 case ST_F_SID:
1963 metric = mkf_u32(FO_KEY|FS_SERVICE, l->luid);
1964 break;
1965 case ST_F_TYPE:
1966 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_SO);
1967 break;
1968 case ST_F_WREW:
1969 metric = mkf_u64(FN_COUNTER, l->counters->failed_rewrites);
1970 break;
1971 case ST_F_EINT:
1972 metric = mkf_u64(FN_COUNTER, l->counters->internal_errors);
1973 break;
1974 case ST_F_ADDR:
1975 if (flags & STAT_SHLGNDS) {
1976 char str[INET6_ADDRSTRLEN];
1977 int port;
William Lallemand74c24fb2016-11-21 17:18:36 +01001978
William Dauchy655e14e2021-02-14 23:22:54 +01001979 port = get_host_port(&l->rx.addr);
1980 switch (addr_to_str(&l->rx.addr, str, sizeof(str))) {
1981 case AF_INET:
1982 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1983 chunk_appendf(out, "%s:%d", str, port);
1984 break;
1985 case AF_INET6:
1986 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1987 chunk_appendf(out, "[%s]:%d", str, port);
1988 break;
1989 case AF_UNIX:
1990 metric = mkf_str(FO_CONFIG|FS_SERVICE, "unix");
1991 break;
1992 case -1:
1993 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1994 chunk_strcat(out, strerror(errno));
1995 break;
1996 default: /* address family not supported */
1997 break;
1998 }
1999 }
2000 break;
2001 default:
2002 /* not used for listen. If a specific metric
2003 * is requested, return an error. Otherwise continue.
2004 */
2005 if (selected_field != NULL)
2006 return 0;
2007 continue;
William Lallemand74c24fb2016-11-21 17:18:36 +01002008 }
William Dauchy655e14e2021-02-14 23:22:54 +01002009 stats[current_field] = metric;
2010 if (selected_field != NULL)
2011 break;
William Lallemand74c24fb2016-11-21 17:18:36 +01002012 }
William Lallemand74c24fb2016-11-21 17:18:36 +01002013 return 1;
2014}
2015
Christopher Fauleta8b76842022-12-16 15:08:36 +01002016/* Dumps a line for listener <l> and proxy <px> to the local trash buffer and
2017 * uses the state from stream connector <sc>. The caller is responsible for
2018 * clearing the local trash buffer if needed. Returns non-zero if it emits
2019 * anything, zero otherwise.
William Lallemand74c24fb2016-11-21 17:18:36 +01002020 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02002021static int stats_dump_li_stats(struct stconn *sc, struct proxy *px, struct listener *l)
William Lallemand74c24fb2016-11-21 17:18:36 +01002022{
Willy Tarreaucaff6312022-05-27 10:17:46 +02002023 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02002024 struct show_stat_ctx *ctx = appctx->svcctx;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002025 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
2026 struct stats_module *mod;
2027 size_t stats_count = ST_F_TOTAL_FIELDS;
2028
2029 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
William Lallemand74c24fb2016-11-21 17:18:36 +01002030
Willy Tarreau91cefca2022-05-03 17:08:29 +02002031 if (!stats_fill_li_stats(px, l, ctx->flags, stats,
William Dauchy655e14e2021-02-14 23:22:54 +01002032 ST_F_TOTAL_FIELDS, NULL))
William Lallemand74c24fb2016-11-21 17:18:36 +01002033 return 0;
2034
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002035 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2036 void *counters;
2037
2038 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_LI)) {
2039 stats_count += mod->stats_count;
2040 continue;
2041 }
2042
2043 counters = EXTRA_COUNTERS_GET(l->extra_counters, mod);
2044 mod->fill_stats(counters, stats + stats_count);
2045 stats_count += mod->stats_count;
2046 }
2047
2048 return stats_dump_one_line(stats, stats_count, appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01002049}
2050
2051enum srv_stats_state {
2052 SRV_STATS_STATE_DOWN = 0,
2053 SRV_STATS_STATE_DOWN_AGENT,
2054 SRV_STATS_STATE_GOING_UP,
2055 SRV_STATS_STATE_UP_GOING_DOWN,
2056 SRV_STATS_STATE_UP,
2057 SRV_STATS_STATE_NOLB_GOING_DOWN,
2058 SRV_STATS_STATE_NOLB,
2059 SRV_STATS_STATE_DRAIN_GOING_DOWN,
2060 SRV_STATS_STATE_DRAIN,
2061 SRV_STATS_STATE_DRAIN_AGENT,
2062 SRV_STATS_STATE_NO_CHECK,
2063
2064 SRV_STATS_STATE_COUNT, /* Must be last */
2065};
2066
2067static const char *srv_hlt_st[SRV_STATS_STATE_COUNT] = {
2068 [SRV_STATS_STATE_DOWN] = "DOWN",
2069 [SRV_STATS_STATE_DOWN_AGENT] = "DOWN (agent)",
2070 [SRV_STATS_STATE_GOING_UP] = "DOWN %d/%d",
2071 [SRV_STATS_STATE_UP_GOING_DOWN] = "UP %d/%d",
2072 [SRV_STATS_STATE_UP] = "UP",
2073 [SRV_STATS_STATE_NOLB_GOING_DOWN] = "NOLB %d/%d",
2074 [SRV_STATS_STATE_NOLB] = "NOLB",
2075 [SRV_STATS_STATE_DRAIN_GOING_DOWN] = "DRAIN %d/%d",
2076 [SRV_STATS_STATE_DRAIN] = "DRAIN",
2077 [SRV_STATS_STATE_DRAIN_AGENT] = "DRAIN (agent)",
2078 [SRV_STATS_STATE_NO_CHECK] = "no check"
2079};
2080
William Dauchyd3a9a492021-01-25 17:29:03 +01002081/* Compute server state helper
William Lallemand74c24fb2016-11-21 17:18:36 +01002082 */
William Dauchyd3a9a492021-01-25 17:29:03 +01002083static void stats_fill_sv_stats_computestate(struct server *sv, struct server *ref,
2084 enum srv_stats_state *state)
William Lallemand74c24fb2016-11-21 17:18:36 +01002085{
Emeric Brun52a91d32017-08-31 14:41:55 +02002086 if (sv->cur_state == SRV_ST_RUNNING || sv->cur_state == SRV_ST_STARTING) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002087 if ((ref->check.state & CHK_ST_ENABLED) &&
2088 (ref->check.health < ref->check.rise + ref->check.fall - 1)) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002089 *state = SRV_STATS_STATE_UP_GOING_DOWN;
William Lallemand74c24fb2016-11-21 17:18:36 +01002090 } else {
William Dauchyd3a9a492021-01-25 17:29:03 +01002091 *state = SRV_STATS_STATE_UP;
William Lallemand74c24fb2016-11-21 17:18:36 +01002092 }
2093
Emeric Brun52a91d32017-08-31 14:41:55 +02002094 if (sv->cur_admin & SRV_ADMF_DRAIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002095 if (ref->agent.state & CHK_ST_ENABLED)
William Dauchyd3a9a492021-01-25 17:29:03 +01002096 *state = SRV_STATS_STATE_DRAIN_AGENT;
2097 else if (*state == SRV_STATS_STATE_UP_GOING_DOWN)
2098 *state = SRV_STATS_STATE_DRAIN_GOING_DOWN;
William Lallemand74c24fb2016-11-21 17:18:36 +01002099 else
William Dauchyd3a9a492021-01-25 17:29:03 +01002100 *state = SRV_STATS_STATE_DRAIN;
William Lallemand74c24fb2016-11-21 17:18:36 +01002101 }
2102
William Dauchyd3a9a492021-01-25 17:29:03 +01002103 if (*state == SRV_STATS_STATE_UP && !(ref->check.state & CHK_ST_ENABLED)) {
2104 *state = SRV_STATS_STATE_NO_CHECK;
William Lallemand74c24fb2016-11-21 17:18:36 +01002105 }
2106 }
Emeric Brun52a91d32017-08-31 14:41:55 +02002107 else if (sv->cur_state == SRV_ST_STOPPING) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002108 if ((!(sv->check.state & CHK_ST_ENABLED) && !sv->track) ||
2109 (ref->check.health == ref->check.rise + ref->check.fall - 1)) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002110 *state = SRV_STATS_STATE_NOLB;
William Lallemand74c24fb2016-11-21 17:18:36 +01002111 } else {
William Dauchyd3a9a492021-01-25 17:29:03 +01002112 *state = SRV_STATS_STATE_NOLB_GOING_DOWN;
William Lallemand74c24fb2016-11-21 17:18:36 +01002113 }
2114 }
2115 else { /* stopped */
2116 if ((ref->agent.state & CHK_ST_ENABLED) && !ref->agent.health) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002117 *state = SRV_STATS_STATE_DOWN_AGENT;
William Lallemand74c24fb2016-11-21 17:18:36 +01002118 } else if ((ref->check.state & CHK_ST_ENABLED) && !ref->check.health) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002119 *state = SRV_STATS_STATE_DOWN; /* DOWN */
William Lallemand74c24fb2016-11-21 17:18:36 +01002120 } else if ((ref->agent.state & CHK_ST_ENABLED) || (ref->check.state & CHK_ST_ENABLED)) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002121 *state = SRV_STATS_STATE_GOING_UP;
William Lallemand74c24fb2016-11-21 17:18:36 +01002122 } else {
William Dauchyd3a9a492021-01-25 17:29:03 +01002123 *state = SRV_STATS_STATE_DOWN; /* DOWN, unchecked */
William Lallemand74c24fb2016-11-21 17:18:36 +01002124 }
2125 }
William Dauchyd3a9a492021-01-25 17:29:03 +01002126}
William Lallemand74c24fb2016-11-21 17:18:36 +01002127
William Dauchyd3a9a492021-01-25 17:29:03 +01002128/* Fill <stats> with the backend statistics. <stats> is preallocated array of
2129 * length <len>. If <selected_field> is != NULL, only fill this one. The length
2130 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
2131 * this value, or if the selected field is not implemented for servers, the
2132 * function returns 0, otherwise, it returns 1. <flags> can take the value
2133 * STAT_SHLGNDS.
2134 */
2135int stats_fill_sv_stats(struct proxy *px, struct server *sv, int flags,
2136 struct field *stats, int len,
2137 enum stat_field *selected_field)
2138{
2139 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
2140 struct server *via = sv->track ? sv->track : sv;
2141 struct server *ref = via;
2142 enum srv_stats_state state = 0;
2143 char str[INET6_ADDRSTRLEN];
2144 struct buffer *out = get_trash_chunk();
2145 char *fld_status;
2146 long long srv_samples_counter;
2147 unsigned int srv_samples_window = TIME_STATS_SAMPLES;
William Lallemand74c24fb2016-11-21 17:18:36 +01002148
William Dauchyd3a9a492021-01-25 17:29:03 +01002149 if (len < ST_F_TOTAL_FIELDS)
2150 return 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01002151
William Dauchyd3a9a492021-01-25 17:29:03 +01002152 chunk_reset(out);
William Lallemand74c24fb2016-11-21 17:18:36 +01002153
William Dauchyd3a9a492021-01-25 17:29:03 +01002154 /* compute state for later use */
2155 if (selected_field == NULL || *selected_field == ST_F_STATUS ||
2156 *selected_field == ST_F_CHECK_RISE || *selected_field == ST_F_CHECK_FALL ||
2157 *selected_field == ST_F_CHECK_HEALTH || *selected_field == ST_F_HANAFAIL) {
2158 /* we have "via" which is the tracked server as described in the configuration,
2159 * and "ref" which is the checked server and the end of the chain.
2160 */
2161 while (ref->track)
2162 ref = ref->track;
2163 stats_fill_sv_stats_computestate(sv, ref, &state);
William Lallemand74c24fb2016-11-21 17:18:36 +01002164 }
2165
William Dauchyd3a9a492021-01-25 17:29:03 +01002166 /* compue time values for later use */
2167 if (selected_field == NULL || *selected_field == ST_F_QTIME ||
2168 *selected_field == ST_F_CTIME || *selected_field == ST_F_RTIME ||
2169 *selected_field == ST_F_TTIME) {
2170 srv_samples_counter = (px->mode == PR_MODE_HTTP) ? sv->counters.p.http.cum_req : sv->counters.cum_lbconn;
2171 if (srv_samples_counter < TIME_STATS_SAMPLES && srv_samples_counter > 0)
2172 srv_samples_window = srv_samples_counter;
William Lallemand74c24fb2016-11-21 17:18:36 +01002173 }
2174
William Dauchyd3a9a492021-01-25 17:29:03 +01002175 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
2176 struct field metric = { 0 };
William Lallemand74c24fb2016-11-21 17:18:36 +01002177
William Dauchyd3a9a492021-01-25 17:29:03 +01002178 switch (current_field) {
2179 case ST_F_PXNAME:
2180 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
2181 break;
2182 case ST_F_SVNAME:
2183 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, sv->id);
2184 break;
2185 case ST_F_MODE:
2186 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
Christopher Faulet3888b8c2021-01-27 13:32:25 +01002187 break;
William Dauchyd3a9a492021-01-25 17:29:03 +01002188 case ST_F_QCUR:
Willy Tarreaua0570452021-06-18 09:30:30 +02002189 metric = mkf_u32(0, sv->queue.length);
William Dauchyd3a9a492021-01-25 17:29:03 +01002190 break;
2191 case ST_F_QMAX:
2192 metric = mkf_u32(FN_MAX, sv->counters.nbpend_max);
2193 break;
2194 case ST_F_SCUR:
2195 metric = mkf_u32(0, sv->cur_sess);
2196 break;
2197 case ST_F_SMAX:
2198 metric = mkf_u32(FN_MAX, sv->counters.cur_sess_max);
2199 break;
2200 case ST_F_SLIM:
2201 if (sv->maxconn)
2202 metric = mkf_u32(FO_CONFIG|FN_LIMIT, sv->maxconn);
2203 break;
2204 case ST_F_SRV_ICUR:
2205 metric = mkf_u32(0, sv->curr_idle_conns);
2206 break;
2207 case ST_F_SRV_ILIM:
2208 if (sv->max_idle_conns != -1)
2209 metric = mkf_u32(FO_CONFIG|FN_LIMIT, sv->max_idle_conns);
2210 break;
2211 case ST_F_STOT:
2212 metric = mkf_u64(FN_COUNTER, sv->counters.cum_sess);
2213 break;
2214 case ST_F_BIN:
2215 metric = mkf_u64(FN_COUNTER, sv->counters.bytes_in);
2216 break;
2217 case ST_F_BOUT:
2218 metric = mkf_u64(FN_COUNTER, sv->counters.bytes_out);
2219 break;
2220 case ST_F_DRESP:
2221 metric = mkf_u64(FN_COUNTER, sv->counters.denied_resp);
2222 break;
2223 case ST_F_ECON:
2224 metric = mkf_u64(FN_COUNTER, sv->counters.failed_conns);
2225 break;
2226 case ST_F_ERESP:
2227 metric = mkf_u64(FN_COUNTER, sv->counters.failed_resp);
2228 break;
2229 case ST_F_WRETR:
2230 metric = mkf_u64(FN_COUNTER, sv->counters.retries);
2231 break;
2232 case ST_F_WREDIS:
2233 metric = mkf_u64(FN_COUNTER, sv->counters.redispatches);
2234 break;
2235 case ST_F_WREW:
2236 metric = mkf_u64(FN_COUNTER, sv->counters.failed_rewrites);
2237 break;
2238 case ST_F_EINT:
2239 metric = mkf_u64(FN_COUNTER, sv->counters.internal_errors);
2240 break;
2241 case ST_F_CONNECT:
2242 metric = mkf_u64(FN_COUNTER, sv->counters.connect);
2243 break;
2244 case ST_F_REUSE:
2245 metric = mkf_u64(FN_COUNTER, sv->counters.reuse);
2246 break;
2247 case ST_F_IDLE_CONN_CUR:
2248 metric = mkf_u32(0, sv->curr_idle_nb);
2249 break;
2250 case ST_F_SAFE_CONN_CUR:
2251 metric = mkf_u32(0, sv->curr_safe_nb);
2252 break;
2253 case ST_F_USED_CONN_CUR:
2254 metric = mkf_u32(0, sv->curr_used_conns);
2255 break;
2256 case ST_F_NEED_CONN_EST:
2257 metric = mkf_u32(0, sv->est_need_conns);
2258 break;
2259 case ST_F_STATUS:
2260 fld_status = chunk_newstr(out);
2261 if (sv->cur_admin & SRV_ADMF_RMAINT)
2262 chunk_appendf(out, "MAINT (resolution)");
2263 else if (sv->cur_admin & SRV_ADMF_IMAINT)
2264 chunk_appendf(out, "MAINT (via %s/%s)", via->proxy->id, via->id);
2265 else if (sv->cur_admin & SRV_ADMF_MAINT)
2266 chunk_appendf(out, "MAINT");
2267 else
2268 chunk_appendf(out,
2269 srv_hlt_st[state],
2270 (ref->cur_state != SRV_ST_STOPPED) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2271 (ref->cur_state != SRV_ST_STOPPED) ? (ref->check.fall) : (ref->check.rise));
William Lallemand74c24fb2016-11-21 17:18:36 +01002272
William Dauchyd3a9a492021-01-25 17:29:03 +01002273 metric = mkf_str(FO_STATUS, fld_status);
2274 break;
2275 case ST_F_LASTCHG:
2276 metric = mkf_u32(FN_AGE, now.tv_sec - sv->last_change);
2277 break;
2278 case ST_F_WEIGHT:
2279 metric = mkf_u32(FN_AVG, (sv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv);
2280 break;
2281 case ST_F_UWEIGHT:
2282 metric = mkf_u32(FN_AVG, sv->uweight);
2283 break;
2284 case ST_F_ACT:
2285 metric = mkf_u32(FO_STATUS, (sv->flags & SRV_F_BACKUP) ? 0 : 1);
2286 break;
2287 case ST_F_BCK:
2288 metric = mkf_u32(FO_STATUS, (sv->flags & SRV_F_BACKUP) ? 1 : 0);
2289 break;
2290 case ST_F_CHKFAIL:
2291 if (sv->check.state & CHK_ST_ENABLED)
2292 metric = mkf_u64(FN_COUNTER, sv->counters.failed_checks);
2293 break;
2294 case ST_F_CHKDOWN:
2295 if (sv->check.state & CHK_ST_ENABLED)
2296 metric = mkf_u64(FN_COUNTER, sv->counters.down_trans);
2297 break;
2298 case ST_F_DOWNTIME:
2299 if (sv->check.state & CHK_ST_ENABLED)
2300 metric = mkf_u32(FN_COUNTER, srv_downtime(sv));
2301 break;
2302 case ST_F_QLIMIT:
2303 if (sv->maxqueue)
2304 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->maxqueue);
2305 break;
2306 case ST_F_PID:
Willy Tarreaue8422bf2021-06-15 09:08:18 +02002307 metric = mkf_u32(FO_KEY, 1);
William Dauchyd3a9a492021-01-25 17:29:03 +01002308 break;
2309 case ST_F_IID:
2310 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
2311 break;
2312 case ST_F_SID:
2313 metric = mkf_u32(FO_KEY|FS_SERVICE, sv->puid);
2314 break;
Aurelien DARRAGON745ce8e2022-11-17 16:34:07 +01002315 case ST_F_SRID:
2316 metric = mkf_u32(FN_COUNTER, sv->rid);
2317 break;
William Dauchyd3a9a492021-01-25 17:29:03 +01002318 case ST_F_THROTTLE:
2319 if (sv->cur_state == SRV_ST_STARTING && !server_is_draining(sv))
2320 metric = mkf_u32(FN_AVG, server_throttle_rate(sv));
2321 break;
2322 case ST_F_LBTOT:
2323 metric = mkf_u64(FN_COUNTER, sv->counters.cum_lbconn);
2324 break;
2325 case ST_F_TRACKED:
2326 if (sv->track) {
2327 char *fld_track = chunk_newstr(out);
2328 chunk_appendf(out, "%s/%s", sv->track->proxy->id, sv->track->id);
2329 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, fld_track);
2330 }
2331 break;
2332 case ST_F_TYPE:
2333 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_SV);
2334 break;
2335 case ST_F_RATE:
2336 metric = mkf_u32(FN_RATE, read_freq_ctr(&sv->sess_per_sec));
2337 break;
2338 case ST_F_RATE_MAX:
2339 metric = mkf_u32(FN_MAX, sv->counters.sps_max);
2340 break;
2341 case ST_F_CHECK_STATUS:
2342 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) {
2343 const char *fld_chksts;
Marcin Deraneka8dbdf32020-05-15 20:02:40 +02002344
William Dauchyd3a9a492021-01-25 17:29:03 +01002345 fld_chksts = chunk_newstr(out);
2346 chunk_strcat(out, "* "); // for check in progress
2347 chunk_strcat(out, get_check_status_info(sv->check.status));
2348 if (!(sv->check.state & CHK_ST_INPROGRESS))
2349 fld_chksts += 2; // skip "* "
Willy Tarreau973a9372021-05-12 17:29:14 +02002350 metric = mkf_str(FN_OUTPUT, fld_chksts);
William Dauchyd3a9a492021-01-25 17:29:03 +01002351 }
2352 break;
2353 case ST_F_CHECK_CODE:
2354 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2355 sv->check.status >= HCHK_STATUS_L57DATA)
2356 metric = mkf_u32(FN_OUTPUT, sv->check.code);
2357 break;
2358 case ST_F_CHECK_DURATION:
2359 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2360 sv->check.status >= HCHK_STATUS_CHECKED)
Aurelien DARRAGONb118f2f2022-12-07 14:52:10 +01002361 metric = mkf_u64(FN_DURATION, MAX(sv->check.duration, 0));
William Dauchyd3a9a492021-01-25 17:29:03 +01002362 break;
2363 case ST_F_CHECK_DESC:
2364 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2365 metric = mkf_str(FN_OUTPUT, get_check_status_description(sv->check.status));
2366 break;
2367 case ST_F_LAST_CHK:
2368 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2369 metric = mkf_str(FN_OUTPUT, sv->check.desc);
2370 break;
2371 case ST_F_CHECK_RISE:
2372 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2373 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.rise);
2374 break;
2375 case ST_F_CHECK_FALL:
2376 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2377 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.fall);
2378 break;
2379 case ST_F_CHECK_HEALTH:
2380 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2381 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.health);
2382 break;
Christopher Faulet59bab612021-07-22 08:04:38 +02002383 case ST_F_AGENT_STATUS:
2384 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) {
2385 const char *fld_chksts;
2386
2387 fld_chksts = chunk_newstr(out);
2388 chunk_strcat(out, "* "); // for check in progress
2389 chunk_strcat(out, get_check_status_info(sv->agent.status));
2390 if (!(sv->agent.state & CHK_ST_INPROGRESS))
2391 fld_chksts += 2; // skip "* "
2392 metric = mkf_str(FN_OUTPUT, fld_chksts);
2393 }
2394 break;
2395 case ST_F_AGENT_CODE:
2396 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2397 (sv->agent.status >= HCHK_STATUS_L57DATA))
2398 metric = mkf_u32(FN_OUTPUT, sv->agent.code);
2399 break;
2400 case ST_F_AGENT_DURATION:
2401 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2402 metric = mkf_u64(FN_DURATION, sv->agent.duration);
2403 break;
2404 case ST_F_AGENT_DESC:
2405 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2406 metric = mkf_str(FN_OUTPUT, get_check_status_description(sv->agent.status));
2407 break;
2408 case ST_F_LAST_AGT:
2409 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2410 metric = mkf_str(FN_OUTPUT, sv->agent.desc);
2411 break;
2412 case ST_F_AGENT_RISE:
2413 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2414 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.rise);
2415 break;
2416 case ST_F_AGENT_FALL:
2417 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2418 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.fall);
2419 break;
2420 case ST_F_AGENT_HEALTH:
2421 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2422 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.health);
2423 break;
William Dauchyd3a9a492021-01-25 17:29:03 +01002424 case ST_F_REQ_TOT:
2425 if (px->mode == PR_MODE_HTTP)
2426 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.cum_req);
2427 break;
2428 case ST_F_HRSP_1XX:
2429 if (px->mode == PR_MODE_HTTP)
2430 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[1]);
2431 break;
2432 case ST_F_HRSP_2XX:
2433 if (px->mode == PR_MODE_HTTP)
2434 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[2]);
2435 break;
2436 case ST_F_HRSP_3XX:
2437 if (px->mode == PR_MODE_HTTP)
2438 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[3]);
2439 break;
2440 case ST_F_HRSP_4XX:
2441 if (px->mode == PR_MODE_HTTP)
2442 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[4]);
2443 break;
2444 case ST_F_HRSP_5XX:
2445 if (px->mode == PR_MODE_HTTP)
2446 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[5]);
2447 break;
2448 case ST_F_HRSP_OTHER:
2449 if (px->mode == PR_MODE_HTTP)
2450 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[0]);
2451 break;
2452 case ST_F_HANAFAIL:
2453 if (ref->observe)
2454 metric = mkf_u64(FN_COUNTER, sv->counters.failed_hana);
2455 break;
2456 case ST_F_CLI_ABRT:
2457 metric = mkf_u64(FN_COUNTER, sv->counters.cli_aborts);
2458 break;
2459 case ST_F_SRV_ABRT:
2460 metric = mkf_u64(FN_COUNTER, sv->counters.srv_aborts);
2461 break;
2462 case ST_F_LASTSESS:
2463 metric = mkf_s32(FN_AGE, srv_lastsession(sv));
2464 break;
2465 case ST_F_QTIME:
2466 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.q_time, srv_samples_window));
2467 break;
2468 case ST_F_CTIME:
2469 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.c_time, srv_samples_window));
2470 break;
2471 case ST_F_RTIME:
2472 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.d_time, srv_samples_window));
2473 break;
2474 case ST_F_TTIME:
2475 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.t_time, srv_samples_window));
2476 break;
2477 case ST_F_QT_MAX:
2478 metric = mkf_u32(FN_MAX, sv->counters.qtime_max);
2479 break;
2480 case ST_F_CT_MAX:
2481 metric = mkf_u32(FN_MAX, sv->counters.ctime_max);
2482 break;
2483 case ST_F_RT_MAX:
2484 metric = mkf_u32(FN_MAX, sv->counters.dtime_max);
2485 break;
2486 case ST_F_TT_MAX:
2487 metric = mkf_u32(FN_MAX, sv->counters.ttime_max);
2488 break;
2489 case ST_F_ADDR:
2490 if (flags & STAT_SHLGNDS) {
2491 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2492 case AF_INET:
2493 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2494 chunk_appendf(out, "%s:%d", str, sv->svc_port);
2495 break;
2496 case AF_INET6:
2497 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2498 chunk_appendf(out, "[%s]:%d", str, sv->svc_port);
2499 break;
2500 case AF_UNIX:
2501 metric = mkf_str(FO_CONFIG|FS_SERVICE, "unix");
2502 break;
2503 case -1:
2504 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2505 chunk_strcat(out, strerror(errno));
2506 break;
2507 default: /* address family not supported */
2508 break;
2509 }
2510 }
2511 break;
2512 case ST_F_COOKIE:
2513 if (flags & STAT_SHLGNDS && sv->cookie)
2514 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, sv->cookie);
2515 break;
2516 default:
2517 /* not used for servers. If a specific metric
2518 * is requested, return an error. Otherwise continue.
2519 */
2520 if (selected_field != NULL)
2521 return 0;
2522 continue;
William Lallemand74c24fb2016-11-21 17:18:36 +01002523 }
William Dauchyd3a9a492021-01-25 17:29:03 +01002524 stats[current_field] = metric;
2525 if (selected_field != NULL)
2526 break;
William Lallemand74c24fb2016-11-21 17:18:36 +01002527 }
William Lallemand74c24fb2016-11-21 17:18:36 +01002528 return 1;
2529}
2530
Christopher Fauleta8b76842022-12-16 15:08:36 +01002531/* Dumps a line for server <sv> and proxy <px> to the local trash vbuffer and
2532 * uses the state from stream connector <sc>, and server state <state>. The
2533 * caller is responsible for clearing the local trash buffer if needed. Returns
2534 * non-zero if it emits anything, zero otherwise.
William Lallemand74c24fb2016-11-21 17:18:36 +01002535 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02002536static int stats_dump_sv_stats(struct stconn *sc, struct proxy *px, struct server *sv)
William Lallemand74c24fb2016-11-21 17:18:36 +01002537{
Willy Tarreaucaff6312022-05-27 10:17:46 +02002538 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02002539 struct show_stat_ctx *ctx = appctx->svcctx;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002540 struct stats_module *mod;
2541 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
2542 size_t stats_count = ST_F_TOTAL_FIELDS;
2543
2544 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
William Lallemand74c24fb2016-11-21 17:18:36 +01002545
Willy Tarreau91cefca2022-05-03 17:08:29 +02002546 if (!stats_fill_sv_stats(px, sv, ctx->flags, stats,
William Dauchyd3a9a492021-01-25 17:29:03 +01002547 ST_F_TOTAL_FIELDS, NULL))
William Lallemand74c24fb2016-11-21 17:18:36 +01002548 return 0;
2549
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002550 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2551 void *counters;
2552
2553 if (stats_get_domain(mod->domain_flags) != STATS_DOMAIN_PROXY)
2554 continue;
2555
2556 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_SRV)) {
2557 stats_count += mod->stats_count;
2558 continue;
2559 }
2560
2561 counters = EXTRA_COUNTERS_GET(sv->extra_counters, mod);
2562 mod->fill_stats(counters, stats + stats_count);
2563 stats_count += mod->stats_count;
2564 }
2565
2566 return stats_dump_one_line(stats, stats_count, appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01002567}
2568
William Dauchyda3b4662021-01-25 17:29:01 +01002569/* Helper to compute srv values for a given backend
William Lallemand74c24fb2016-11-21 17:18:36 +01002570 */
William Dauchyda3b4662021-01-25 17:29:01 +01002571static void stats_fill_be_stats_computesrv(struct proxy *px, int *nbup, int *nbsrv, int *totuw)
William Lallemand74c24fb2016-11-21 17:18:36 +01002572{
William Dauchyda3b4662021-01-25 17:29:01 +01002573 int nbup_tmp, nbsrv_tmp, totuw_tmp;
Willy Tarreau2fbe6942020-10-23 18:02:54 +02002574 const struct server *srv;
William Lallemand74c24fb2016-11-21 17:18:36 +01002575
William Dauchyda3b4662021-01-25 17:29:01 +01002576 nbup_tmp = nbsrv_tmp = totuw_tmp = 0;
Willy Tarreaubd715102020-10-23 22:44:30 +02002577 for (srv = px->srv; srv; srv = srv->next) {
2578 if (srv->cur_state != SRV_ST_STOPPED) {
William Dauchyda3b4662021-01-25 17:29:01 +01002579 nbup_tmp++;
Willy Tarreaubd715102020-10-23 22:44:30 +02002580 if (srv_currently_usable(srv) &&
2581 (!px->srv_act ^ !(srv->flags & SRV_F_BACKUP)))
William Dauchyda3b4662021-01-25 17:29:01 +01002582 totuw_tmp += srv->uweight;
Willy Tarreau2fbe6942020-10-23 18:02:54 +02002583 }
William Dauchyda3b4662021-01-25 17:29:01 +01002584 nbsrv_tmp++;
Willy Tarreau2fbe6942020-10-23 18:02:54 +02002585 }
2586
Willy Tarreaubd715102020-10-23 22:44:30 +02002587 HA_RWLOCK_RDLOCK(LBPRM_LOCK, &px->lbprm.lock);
2588 if (!px->srv_act && px->lbprm.fbck)
William Dauchyda3b4662021-01-25 17:29:01 +01002589 totuw_tmp = px->lbprm.fbck->uweight;
Willy Tarreaubd715102020-10-23 22:44:30 +02002590 HA_RWLOCK_RDUNLOCK(LBPRM_LOCK, &px->lbprm.lock);
2591
William Dauchyda3b4662021-01-25 17:29:01 +01002592 /* use tmp variable then assign result to make gcc happy */
2593 *nbup = nbup_tmp;
2594 *nbsrv = nbsrv_tmp;
2595 *totuw = totuw_tmp;
2596}
Willy Tarreau2fbe6942020-10-23 18:02:54 +02002597
William Dauchyda3b4662021-01-25 17:29:01 +01002598/* Fill <stats> with the backend statistics. <stats> is preallocated array of
2599 * length <len>. If <selected_field> is != NULL, only fill this one. The length
2600 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
2601 * this value, or if the selected field is not implemented for backends, the
2602 * function returns 0, otherwise, it returns 1. <flags> can take the value
2603 * STAT_SHLGNDS.
2604 */
2605int stats_fill_be_stats(struct proxy *px, int flags, struct field *stats, int len,
2606 enum stat_field *selected_field)
2607{
2608 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
2609 long long be_samples_counter;
2610 unsigned int be_samples_window = TIME_STATS_SAMPLES;
2611 struct buffer *out = get_trash_chunk();
2612 int nbup, nbsrv, totuw;
2613 char *fld;
William Lallemand74c24fb2016-11-21 17:18:36 +01002614
William Dauchyda3b4662021-01-25 17:29:01 +01002615 if (len < ST_F_TOTAL_FIELDS)
2616 return 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01002617
William Dauchyda3b4662021-01-25 17:29:01 +01002618 nbup = nbsrv = totuw = 0;
2619 /* some srv values compute for later if we either select all fields or
2620 * need them for one of the mentioned ones */
2621 if (selected_field == NULL || *selected_field == ST_F_STATUS ||
2622 *selected_field == ST_F_UWEIGHT)
2623 stats_fill_be_stats_computesrv(px, &nbup, &nbsrv, &totuw);
William Lallemand74c24fb2016-11-21 17:18:36 +01002624
William Dauchyda3b4662021-01-25 17:29:01 +01002625 /* same here but specific to time fields */
2626 if (selected_field == NULL || *selected_field == ST_F_QTIME ||
2627 *selected_field == ST_F_CTIME || *selected_field == ST_F_RTIME ||
2628 *selected_field == ST_F_TTIME) {
2629 be_samples_counter = (px->mode == PR_MODE_HTTP) ? px->be_counters.p.http.cum_req : px->be_counters.cum_lbconn;
2630 if (be_samples_counter < TIME_STATS_SAMPLES && be_samples_counter > 0)
2631 be_samples_window = be_samples_counter;
William Lallemand74c24fb2016-11-21 17:18:36 +01002632 }
2633
William Dauchyda3b4662021-01-25 17:29:01 +01002634 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
2635 struct field metric = { 0 };
William Lallemand74c24fb2016-11-21 17:18:36 +01002636
William Dauchyda3b4662021-01-25 17:29:01 +01002637 switch (current_field) {
2638 case ST_F_PXNAME:
2639 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
2640 break;
2641 case ST_F_SVNAME:
2642 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, "BACKEND");
2643 break;
2644 case ST_F_MODE:
2645 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
2646 break;
2647 case ST_F_QCUR:
Willy Tarreau7f3c1df2021-06-18 09:22:21 +02002648 metric = mkf_u32(0, px->queue.length);
William Dauchyda3b4662021-01-25 17:29:01 +01002649 break;
2650 case ST_F_QMAX:
2651 metric = mkf_u32(FN_MAX, px->be_counters.nbpend_max);
2652 break;
2653 case ST_F_SCUR:
2654 metric = mkf_u32(0, px->beconn);
2655 break;
2656 case ST_F_SMAX:
2657 metric = mkf_u32(FN_MAX, px->be_counters.conn_max);
2658 break;
2659 case ST_F_SLIM:
2660 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->fullconn);
2661 break;
2662 case ST_F_STOT:
2663 metric = mkf_u64(FN_COUNTER, px->be_counters.cum_conn);
2664 break;
2665 case ST_F_BIN:
2666 metric = mkf_u64(FN_COUNTER, px->be_counters.bytes_in);
2667 break;
2668 case ST_F_BOUT:
2669 metric = mkf_u64(FN_COUNTER, px->be_counters.bytes_out);
2670 break;
2671 case ST_F_DREQ:
2672 metric = mkf_u64(FN_COUNTER, px->be_counters.denied_req);
2673 break;
2674 case ST_F_DRESP:
2675 metric = mkf_u64(FN_COUNTER, px->be_counters.denied_resp);
2676 break;
2677 case ST_F_ECON:
2678 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_conns);
2679 break;
2680 case ST_F_ERESP:
2681 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_resp);
2682 break;
2683 case ST_F_WRETR:
2684 metric = mkf_u64(FN_COUNTER, px->be_counters.retries);
2685 break;
2686 case ST_F_WREDIS:
2687 metric = mkf_u64(FN_COUNTER, px->be_counters.redispatches);
2688 break;
2689 case ST_F_WREW:
2690 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_rewrites);
2691 break;
2692 case ST_F_EINT:
2693 metric = mkf_u64(FN_COUNTER, px->be_counters.internal_errors);
2694 break;
2695 case ST_F_CONNECT:
2696 metric = mkf_u64(FN_COUNTER, px->be_counters.connect);
2697 break;
2698 case ST_F_REUSE:
2699 metric = mkf_u64(FN_COUNTER, px->be_counters.reuse);
2700 break;
2701 case ST_F_STATUS:
2702 fld = chunk_newstr(out);
2703 chunk_appendf(out, "%s", (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN");
2704 if (flags & (STAT_HIDE_MAINT|STAT_HIDE_DOWN))
2705 chunk_appendf(out, " (%d/%d)", nbup, nbsrv);
2706 metric = mkf_str(FO_STATUS, fld);
2707 break;
Cedric Paillet7d6644e2022-12-08 09:17:00 +00002708 case ST_F_AGG_SRV_CHECK_STATUS: // DEPRECATED
2709 case ST_F_AGG_SRV_STATUS:
William Dauchy42d7c402021-11-07 10:18:47 +01002710 metric = mkf_u32(FN_GAUGE, 0);
2711 break;
Cedric Paillete06e31e2022-12-08 09:17:01 +00002712 case ST_F_AGG_CHECK_STATUS:
2713 metric = mkf_u32(FN_GAUGE, 0);
2714 break;
William Dauchyda3b4662021-01-25 17:29:01 +01002715 case ST_F_WEIGHT:
2716 metric = mkf_u32(FN_AVG, (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv);
2717 break;
2718 case ST_F_UWEIGHT:
2719 metric = mkf_u32(FN_AVG, totuw);
2720 break;
2721 case ST_F_ACT:
2722 metric = mkf_u32(0, px->srv_act);
2723 break;
2724 case ST_F_BCK:
2725 metric = mkf_u32(0, px->srv_bck);
2726 break;
2727 case ST_F_CHKDOWN:
2728 metric = mkf_u64(FN_COUNTER, px->down_trans);
2729 break;
2730 case ST_F_LASTCHG:
2731 metric = mkf_u32(FN_AGE, now.tv_sec - px->last_change);
2732 break;
2733 case ST_F_DOWNTIME:
2734 if (px->srv)
2735 metric = mkf_u32(FN_COUNTER, be_downtime(px));
2736 break;
2737 case ST_F_PID:
Willy Tarreaue8422bf2021-06-15 09:08:18 +02002738 metric = mkf_u32(FO_KEY, 1);
William Dauchyda3b4662021-01-25 17:29:01 +01002739 break;
2740 case ST_F_IID:
2741 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
2742 break;
2743 case ST_F_SID:
2744 metric = mkf_u32(FO_KEY|FS_SERVICE, 0);
2745 break;
2746 case ST_F_LBTOT:
2747 metric = mkf_u64(FN_COUNTER, px->be_counters.cum_lbconn);
2748 break;
2749 case ST_F_TYPE:
2750 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_BE);
2751 break;
2752 case ST_F_RATE:
2753 metric = mkf_u32(0, read_freq_ctr(&px->be_sess_per_sec));
2754 break;
2755 case ST_F_RATE_MAX:
2756 metric = mkf_u32(0, px->be_counters.sps_max);
2757 break;
2758 case ST_F_COOKIE:
2759 if (flags & STAT_SHLGNDS && px->cookie_name)
2760 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, px->cookie_name);
2761 break;
2762 case ST_F_ALGO:
2763 if (flags & STAT_SHLGNDS)
2764 metric = mkf_str(FO_CONFIG|FS_SERVICE, backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
2765 break;
2766 case ST_F_REQ_TOT:
2767 if (px->mode == PR_MODE_HTTP)
2768 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cum_req);
2769 break;
2770 case ST_F_HRSP_1XX:
2771 if (px->mode == PR_MODE_HTTP)
2772 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[1]);
2773 break;
2774 case ST_F_HRSP_2XX:
2775 if (px->mode == PR_MODE_HTTP)
2776 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[2]);
2777 break;
2778 case ST_F_HRSP_3XX:
2779 if (px->mode == PR_MODE_HTTP)
2780 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[3]);
2781 break;
2782 case ST_F_HRSP_4XX:
2783 if (px->mode == PR_MODE_HTTP)
2784 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[4]);
2785 break;
2786 case ST_F_HRSP_5XX:
2787 if (px->mode == PR_MODE_HTTP)
2788 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[5]);
2789 break;
2790 case ST_F_HRSP_OTHER:
2791 if (px->mode == PR_MODE_HTTP)
2792 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[0]);
2793 break;
2794 case ST_F_CACHE_LOOKUPS:
2795 if (px->mode == PR_MODE_HTTP)
2796 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_lookups);
2797 break;
2798 case ST_F_CACHE_HITS:
2799 if (px->mode == PR_MODE_HTTP)
2800 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_hits);
2801 break;
2802 case ST_F_CLI_ABRT:
2803 metric = mkf_u64(FN_COUNTER, px->be_counters.cli_aborts);
2804 break;
2805 case ST_F_SRV_ABRT:
2806 metric = mkf_u64(FN_COUNTER, px->be_counters.srv_aborts);
2807 break;
2808 case ST_F_COMP_IN:
2809 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_in);
2810 break;
2811 case ST_F_COMP_OUT:
2812 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_out);
2813 break;
2814 case ST_F_COMP_BYP:
2815 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_byp);
2816 break;
2817 case ST_F_COMP_RSP:
2818 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.comp_rsp);
2819 break;
2820 case ST_F_LASTSESS:
2821 metric = mkf_s32(FN_AGE, be_lastsession(px));
2822 break;
2823 case ST_F_QTIME:
2824 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.q_time, be_samples_window));
2825 break;
2826 case ST_F_CTIME:
2827 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.c_time, be_samples_window));
2828 break;
2829 case ST_F_RTIME:
2830 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.d_time, be_samples_window));
2831 break;
2832 case ST_F_TTIME:
2833 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.t_time, be_samples_window));
2834 break;
2835 case ST_F_QT_MAX:
2836 metric = mkf_u32(FN_MAX, px->be_counters.qtime_max);
2837 break;
2838 case ST_F_CT_MAX:
2839 metric = mkf_u32(FN_MAX, px->be_counters.ctime_max);
2840 break;
2841 case ST_F_RT_MAX:
2842 metric = mkf_u32(FN_MAX, px->be_counters.dtime_max);
2843 break;
2844 case ST_F_TT_MAX:
2845 metric = mkf_u32(FN_MAX, px->be_counters.ttime_max);
2846 break;
2847 default:
2848 /* not used for backends. If a specific metric
2849 * is requested, return an error. Otherwise continue.
2850 */
2851 if (selected_field != NULL)
2852 return 0;
2853 continue;
2854 }
2855 stats[current_field] = metric;
2856 if (selected_field != NULL)
2857 break;
2858 }
William Lallemand74c24fb2016-11-21 17:18:36 +01002859 return 1;
2860}
2861
Christopher Fauleta8b76842022-12-16 15:08:36 +01002862/* Dumps a line for backend <px> to the local trash buffer for and uses the
2863 * state from stream interface <si>. The caller is responsible for clearing the
2864 * local trash buffer if needed. Returns non-zero if it emits anything, zero
2865 * otherwise.
William Lallemand74c24fb2016-11-21 17:18:36 +01002866 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02002867static int stats_dump_be_stats(struct stconn *sc, struct proxy *px)
William Lallemand74c24fb2016-11-21 17:18:36 +01002868{
Willy Tarreaucaff6312022-05-27 10:17:46 +02002869 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02002870 struct show_stat_ctx *ctx = appctx->svcctx;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002871 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
2872 struct stats_module *mod;
2873 size_t stats_count = ST_F_TOTAL_FIELDS;
William Lallemand74c24fb2016-11-21 17:18:36 +01002874
2875 if (!(px->cap & PR_CAP_BE))
2876 return 0;
2877
Willy Tarreau91cefca2022-05-03 17:08:29 +02002878 if ((ctx->flags & STAT_BOUND) && !(ctx->type & (1 << STATS_TYPE_BE)))
William Lallemand74c24fb2016-11-21 17:18:36 +01002879 return 0;
2880
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002881 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
2882
Willy Tarreau91cefca2022-05-03 17:08:29 +02002883 if (!stats_fill_be_stats(px, ctx->flags, stats, ST_F_TOTAL_FIELDS, NULL))
William Lallemand74c24fb2016-11-21 17:18:36 +01002884 return 0;
2885
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002886 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2887 struct extra_counters *counters;
2888
2889 if (stats_get_domain(mod->domain_flags) != STATS_DOMAIN_PROXY)
2890 continue;
2891
2892 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_BE)) {
2893 stats_count += mod->stats_count;
2894 continue;
2895 }
2896
2897 counters = EXTRA_COUNTERS_GET(px->extra_counters_be, mod);
2898 mod->fill_stats(counters, stats + stats_count);
2899 stats_count += mod->stats_count;
2900 }
2901
2902 return stats_dump_one_line(stats, stats_count, appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01002903}
2904
Christopher Fauleta8b76842022-12-16 15:08:36 +01002905/* Dumps the HTML table header for proxy <px> to the local trash buffer for and
2906 * uses the state from stream connector <sc> and per-uri parameters <uri>. The
2907 * caller is responsible for clearing the local trash buffer if needed.
William Lallemand74c24fb2016-11-21 17:18:36 +01002908 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02002909static void stats_dump_html_px_hdr(struct stconn *sc, struct proxy *px)
William Lallemand74c24fb2016-11-21 17:18:36 +01002910{
Willy Tarreaucaff6312022-05-27 10:17:46 +02002911 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02002912 struct show_stat_ctx *ctx = appctx->svcctx;
William Lallemand74c24fb2016-11-21 17:18:36 +01002913 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02002914 struct stats_module *mod;
2915 int stats_module_len = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01002916
Willy Tarreau91cefca2022-05-03 17:08:29 +02002917 if (px->cap & PR_CAP_BE && px->srv && (ctx->flags & STAT_ADMIN)) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002918 /* A form to enable/disable this proxy servers */
2919
Willy Tarreau91cefca2022-05-03 17:08:29 +02002920 /* scope_txt = search pattern + search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
William Lallemand74c24fb2016-11-21 17:18:36 +01002921 scope_txt[0] = 0;
Willy Tarreau91cefca2022-05-03 17:08:29 +02002922 if (ctx->scope_len) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02002923 const char *scope_ptr = stats_scope_ptr(appctx, sc);
Christopher Fauleted7a0662019-01-14 11:07:34 +01002924
William Lallemand74c24fb2016-11-21 17:18:36 +01002925 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau91cefca2022-05-03 17:08:29 +02002926 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, ctx->scope_len);
2927 scope_txt[strlen(STAT_SCOPE_PATTERN) + ctx->scope_len] = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01002928 }
2929
Christopher Fauleta8b76842022-12-16 15:08:36 +01002930 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01002931 "<form method=\"post\">");
2932 }
2933
2934 /* print a new table */
Christopher Fauleta8b76842022-12-16 15:08:36 +01002935 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01002936 "<table class=\"tbl\" width=\"100%%\">\n"
2937 "<tr class=\"titre\">"
2938 "<th class=\"pxname\" width=\"10%%\">");
2939
Christopher Fauleta8b76842022-12-16 15:08:36 +01002940 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01002941 "<a name=\"%s\"></a>%s"
2942 "<a class=px href=\"#%s\">%s</a>",
2943 px->id,
Willy Tarreau91cefca2022-05-03 17:08:29 +02002944 (ctx->flags & STAT_SHLGNDS) ? "<u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01002945 px->id, px->id);
2946
Willy Tarreau91cefca2022-05-03 17:08:29 +02002947 if (ctx->flags & STAT_SHLGNDS) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002948 /* cap, mode, id */
Christopher Fauleta8b76842022-12-16 15:08:36 +01002949 chunk_appendf(&trash_chunk, "<div class=tips>cap: %s, mode: %s, id: %d",
William Lallemand74c24fb2016-11-21 17:18:36 +01002950 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
2951 px->uuid);
Christopher Fauleta8b76842022-12-16 15:08:36 +01002952 chunk_appendf(&trash_chunk, "</div>");
William Lallemand74c24fb2016-11-21 17:18:36 +01002953 }
2954
Christopher Fauleta8b76842022-12-16 15:08:36 +01002955 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01002956 "%s</th>"
2957 "<th class=\"%s\" width=\"90%%\">%s</th>"
2958 "</tr>\n"
2959 "</table>\n"
2960 "<table class=\"tbl\" width=\"100%%\">\n"
2961 "<tr class=\"titre\">",
Willy Tarreau91cefca2022-05-03 17:08:29 +02002962 (ctx->flags & STAT_SHLGNDS) ? "</u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01002963 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
2964
Willy Tarreau91cefca2022-05-03 17:08:29 +02002965 if (ctx->flags & STAT_ADMIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002966 /* Column heading for Enable or Disable server */
Christopher Fauletbc271ec2019-12-02 11:29:04 +01002967 if ((px->cap & PR_CAP_BE) && px->srv)
Christopher Fauleta8b76842022-12-16 15:08:36 +01002968 chunk_appendf(&trash_chunk,
Christopher Fauletbc271ec2019-12-02 11:29:04 +01002969 "<th rowspan=2 width=1><input type=\"checkbox\" "
2970 "onclick=\"for(c in document.getElementsByClassName('%s-checkbox')) "
2971 "document.getElementsByClassName('%s-checkbox').item(c).checked = this.checked\"></th>",
2972 px->id,
2973 px->id);
2974 else
Christopher Fauleta8b76842022-12-16 15:08:36 +01002975 chunk_appendf(&trash_chunk, "<th rowspan=2></th>");
William Lallemand74c24fb2016-11-21 17:18:36 +01002976 }
2977
Christopher Fauleta8b76842022-12-16 15:08:36 +01002978 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01002979 "<th rowspan=2></th>"
2980 "<th colspan=3>Queue</th>"
2981 "<th colspan=3>Session rate</th><th colspan=6>Sessions</th>"
2982 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
2983 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02002984 "<th colspan=9>Server</th>");
2985
Willy Tarreau91cefca2022-05-03 17:08:29 +02002986 if (ctx->flags & STAT_SHMODULES) {
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02002987 // calculate the count of module for colspan attribute
2988 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2989 ++stats_module_len;
2990 }
Christopher Fauleta8b76842022-12-16 15:08:36 +01002991 chunk_appendf(&trash_chunk, "<th colspan=%d>Extra modules</th>",
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02002992 stats_module_len);
2993 }
2994
Christopher Fauleta8b76842022-12-16 15:08:36 +01002995 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01002996 "</tr>\n"
2997 "<tr class=\"titre\">"
2998 "<th>Cur</th><th>Max</th><th>Limit</th>"
2999 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
3000 "<th>Limit</th><th>Total</th><th>LbTot</th><th>Last</th><th>In</th><th>Out</th>"
3001 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
3002 "<th>Resp</th><th>Retr</th><th>Redis</th>"
3003 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
3004 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02003005 "<th>Thrtle</th>\n");
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02003006
Willy Tarreau91cefca2022-05-03 17:08:29 +02003007 if (ctx->flags & STAT_SHMODULES) {
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02003008 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Christopher Fauleta8b76842022-12-16 15:08:36 +01003009 chunk_appendf(&trash_chunk, "<th>%s</th>", mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02003010 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02003011 }
3012
Christopher Fauleta8b76842022-12-16 15:08:36 +01003013 chunk_appendf(&trash_chunk, "</tr>");
William Lallemand74c24fb2016-11-21 17:18:36 +01003014}
3015
Christopher Fauleta8b76842022-12-16 15:08:36 +01003016/* Dumps the HTML table trailer for proxy <px> to the local trash buffer for and
3017 * uses the state from stream connector <sc>. The caller is responsible for
3018 * clearing the local trash buffer if needed.
William Lallemand74c24fb2016-11-21 17:18:36 +01003019 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003020static void stats_dump_html_px_end(struct stconn *sc, struct proxy *px)
William Lallemand74c24fb2016-11-21 17:18:36 +01003021{
Willy Tarreaucaff6312022-05-27 10:17:46 +02003022 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003023 struct show_stat_ctx *ctx = appctx->svcctx;
Christopher Faulet693b23b2022-02-28 09:09:05 +01003024
Christopher Fauleta8b76842022-12-16 15:08:36 +01003025 chunk_appendf(&trash_chunk, "</table>");
William Lallemand74c24fb2016-11-21 17:18:36 +01003026
Willy Tarreau91cefca2022-05-03 17:08:29 +02003027 if ((px->cap & PR_CAP_BE) && px->srv && (ctx->flags & STAT_ADMIN)) {
William Lallemand74c24fb2016-11-21 17:18:36 +01003028 /* close the form used to enable/disable this proxy servers */
Christopher Fauleta8b76842022-12-16 15:08:36 +01003029 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003030 "Choose the action to perform on the checked servers : "
3031 "<select name=action>"
3032 "<option value=\"\"></option>"
3033 "<option value=\"ready\">Set state to READY</option>"
3034 "<option value=\"drain\">Set state to DRAIN</option>"
3035 "<option value=\"maint\">Set state to MAINT</option>"
3036 "<option value=\"dhlth\">Health: disable checks</option>"
3037 "<option value=\"ehlth\">Health: enable checks</option>"
3038 "<option value=\"hrunn\">Health: force UP</option>"
3039 "<option value=\"hnolb\">Health: force NOLB</option>"
3040 "<option value=\"hdown\">Health: force DOWN</option>"
3041 "<option value=\"dagent\">Agent: disable checks</option>"
3042 "<option value=\"eagent\">Agent: enable checks</option>"
3043 "<option value=\"arunn\">Agent: force UP</option>"
3044 "<option value=\"adown\">Agent: force DOWN</option>"
3045 "<option value=\"shutdown\">Kill Sessions</option>"
3046 "</select>"
3047 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
3048 "&nbsp;<input type=\"submit\" value=\"Apply\">"
3049 "</form>",
3050 px->uuid);
3051 }
3052
Christopher Fauleta8b76842022-12-16 15:08:36 +01003053 chunk_appendf(&trash_chunk, "<p>\n");
William Lallemand74c24fb2016-11-21 17:18:36 +01003054}
3055
3056/*
Willy Tarreau4596fe22022-05-17 19:07:51 +02003057 * Dumps statistics for a proxy. The output is sent to the stream connector's
William Lallemand74c24fb2016-11-21 17:18:36 +01003058 * input buffer. Returns 0 if it had to stop dumping data because of lack of
3059 * buffer space, or non-zero if everything completed. This function is used
3060 * both by the CLI and the HTTP entry points, and is able to dump the output
3061 * in HTML or CSV formats. If the later, <uri> must be NULL.
3062 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003063int stats_dump_proxy_to_buffer(struct stconn *sc, struct htx *htx,
Christopher Fauletef779222018-10-31 08:47:01 +01003064 struct proxy *px, struct uri_auth *uri)
William Lallemand74c24fb2016-11-21 17:18:36 +01003065{
Willy Tarreaucaff6312022-05-27 10:17:46 +02003066 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003067 struct show_stat_ctx *ctx = appctx->svcctx;
Willy Tarreaucaff6312022-05-27 10:17:46 +02003068 struct stream *s = __sc_strm(sc);
3069 struct channel *rep = sc_ic(sc);
William Lallemand74c24fb2016-11-21 17:18:36 +01003070 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
3071 struct listener *l;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003072 int current_field;
William Lallemand74c24fb2016-11-21 17:18:36 +01003073
Christopher Fauleta8b76842022-12-16 15:08:36 +01003074 chunk_reset(&trash_chunk);
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003075more:
3076 current_field = ctx->field;
William Lallemand74c24fb2016-11-21 17:18:36 +01003077
Willy Tarreau91cefca2022-05-03 17:08:29 +02003078 switch (ctx->px_st) {
William Lallemand74c24fb2016-11-21 17:18:36 +01003079 case STAT_PX_ST_INIT:
3080 /* we are on a new proxy */
3081 if (uri && uri->scope) {
3082 /* we have a limited scope, we have to check the proxy name */
3083 struct stat_scope *scope;
3084 int len;
3085
3086 len = strlen(px->id);
3087 scope = uri->scope;
3088
3089 while (scope) {
3090 /* match exact proxy name */
3091 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
3092 break;
3093
3094 /* match '.' which means 'self' proxy */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003095 if (strcmp(scope->px_id, ".") == 0 && px == s->be)
William Lallemand74c24fb2016-11-21 17:18:36 +01003096 break;
3097 scope = scope->next;
3098 }
3099
3100 /* proxy name not found : don't dump anything */
3101 if (scope == NULL)
3102 return 1;
3103 }
3104
3105 /* if the user has requested a limited output and the proxy
3106 * name does not match, skip it.
3107 */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003108 if (ctx->scope_len) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02003109 const char *scope_ptr = stats_scope_ptr(appctx, sc);
Christopher Fauleted7a0662019-01-14 11:07:34 +01003110
Willy Tarreau91cefca2022-05-03 17:08:29 +02003111 if (strnistr(px->id, strlen(px->id), scope_ptr, ctx->scope_len) == NULL)
Christopher Fauleted7a0662019-01-14 11:07:34 +01003112 return 1;
3113 }
William Lallemand74c24fb2016-11-21 17:18:36 +01003114
Willy Tarreau91cefca2022-05-03 17:08:29 +02003115 if ((ctx->flags & STAT_BOUND) &&
3116 (ctx->iid != -1) &&
3117 (px->uuid != ctx->iid))
William Lallemand74c24fb2016-11-21 17:18:36 +01003118 return 1;
3119
Willy Tarreau91cefca2022-05-03 17:08:29 +02003120 ctx->px_st = STAT_PX_ST_TH;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003121 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003122
3123 case STAT_PX_ST_TH:
Willy Tarreau91cefca2022-05-03 17:08:29 +02003124 if (ctx->flags & STAT_FMT_HTML) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02003125 stats_dump_html_px_hdr(sc, px);
Christopher Fauleta8b76842022-12-16 15:08:36 +01003126 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003127 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003128 }
3129
Willy Tarreau91cefca2022-05-03 17:08:29 +02003130 ctx->px_st = STAT_PX_ST_FE;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003131 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003132
3133 case STAT_PX_ST_FE:
3134 /* print the frontend */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003135 if (stats_dump_fe_stats(sc, px)) {
Christopher Fauleta8b76842022-12-16 15:08:36 +01003136 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003137 goto full;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003138 if (ctx->field)
3139 goto more;
William Lallemand74c24fb2016-11-21 17:18:36 +01003140 }
3141
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003142 current_field = 0;
Willy Tarreau91cefca2022-05-03 17:08:29 +02003143 ctx->obj2 = px->conf.listeners.n;
3144 ctx->px_st = STAT_PX_ST_LI;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003145 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003146
3147 case STAT_PX_ST_LI:
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02003148 /* obj2 points to listeners list as initialized above */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003149 for (; ctx->obj2 != &px->conf.listeners; ctx->obj2 = l->by_fe.n) {
Christopher Fauletef779222018-10-31 08:47:01 +01003150 if (htx) {
3151 if (htx_almost_full(htx))
3152 goto full;
3153 }
3154 else {
3155 if (buffer_almost_full(&rep->buf))
3156 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003157 }
3158
Willy Tarreau91cefca2022-05-03 17:08:29 +02003159 l = LIST_ELEM(ctx->obj2, struct listener *, by_fe);
William Lallemand74c24fb2016-11-21 17:18:36 +01003160 if (!l->counters)
3161 continue;
3162
Willy Tarreau91cefca2022-05-03 17:08:29 +02003163 if (ctx->flags & STAT_BOUND) {
3164 if (!(ctx->type & (1 << STATS_TYPE_SO)))
William Lallemand74c24fb2016-11-21 17:18:36 +01003165 break;
3166
Willy Tarreau91cefca2022-05-03 17:08:29 +02003167 if (ctx->sid != -1 && l->luid != ctx->sid)
William Lallemand74c24fb2016-11-21 17:18:36 +01003168 continue;
3169 }
3170
3171 /* print the frontend */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003172 if (stats_dump_li_stats(sc, px, l)) {
Christopher Fauleta8b76842022-12-16 15:08:36 +01003173 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003174 goto full;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003175 if (ctx->field)
3176 goto more;
William Lallemand74c24fb2016-11-21 17:18:36 +01003177 }
3178 }
3179
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003180 current_field = 0;
Willy Tarreau91cefca2022-05-03 17:08:29 +02003181 ctx->obj2 = px->srv; /* may be NULL */
3182 ctx->px_st = STAT_PX_ST_SV;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003183 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003184
3185 case STAT_PX_ST_SV:
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003186 /* obj2 points to servers list as initialized above.
3187 *
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02003188 * A server may be removed during the stats dumping.
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003189 * Temporarily increment its refcount to prevent its
3190 * anticipated cleaning. Call free_server to release it.
3191 */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003192 for (; ctx->obj2 != NULL;
3193 ctx->obj2 = srv_drop(sv)) {
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003194
Willy Tarreau91cefca2022-05-03 17:08:29 +02003195 sv = ctx->obj2;
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02003196 srv_take(sv);
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003197
Christopher Fauletef779222018-10-31 08:47:01 +01003198 if (htx) {
3199 if (htx_almost_full(htx))
3200 goto full;
3201 }
3202 else {
3203 if (buffer_almost_full(&rep->buf))
3204 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003205 }
3206
Willy Tarreau91cefca2022-05-03 17:08:29 +02003207 if (ctx->flags & STAT_BOUND) {
3208 if (!(ctx->type & (1 << STATS_TYPE_SV))) {
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02003209 srv_drop(sv);
William Lallemand74c24fb2016-11-21 17:18:36 +01003210 break;
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003211 }
William Lallemand74c24fb2016-11-21 17:18:36 +01003212
Willy Tarreau91cefca2022-05-03 17:08:29 +02003213 if (ctx->sid != -1 && sv->puid != ctx->sid)
William Lallemand74c24fb2016-11-21 17:18:36 +01003214 continue;
3215 }
3216
Willy Tarreau3e320362020-10-23 17:28:57 +02003217 /* do not report disabled servers */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003218 if (ctx->flags & STAT_HIDE_MAINT &&
Willy Tarreau3e320362020-10-23 17:28:57 +02003219 sv->cur_admin & SRV_ADMF_MAINT) {
3220 continue;
3221 }
3222
William Lallemand74c24fb2016-11-21 17:18:36 +01003223 svs = sv;
3224 while (svs->track)
3225 svs = svs->track;
3226
3227 /* do not report servers which are DOWN and not changing state */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003228 if ((ctx->flags & STAT_HIDE_DOWN) &&
Emeric Brun52a91d32017-08-31 14:41:55 +02003229 ((sv->cur_admin & SRV_ADMF_MAINT) || /* server is in maintenance */
3230 (sv->cur_state == SRV_ST_STOPPED && /* server is down */
William Lallemand74c24fb2016-11-21 17:18:36 +01003231 (!((svs->agent.state | svs->check.state) & CHK_ST_ENABLED) ||
3232 ((svs->agent.state & CHK_ST_ENABLED) && !svs->agent.health) ||
3233 ((svs->check.state & CHK_ST_ENABLED) && !svs->check.health))))) {
3234 continue;
3235 }
3236
Willy Tarreaucaff6312022-05-27 10:17:46 +02003237 if (stats_dump_sv_stats(sc, px, sv)) {
Christopher Fauleta8b76842022-12-16 15:08:36 +01003238 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003239 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003240 }
3241 } /* for sv */
3242
Willy Tarreau91cefca2022-05-03 17:08:29 +02003243 ctx->px_st = STAT_PX_ST_BE;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003244 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003245
3246 case STAT_PX_ST_BE:
3247 /* print the backend */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003248 if (stats_dump_be_stats(sc, px)) {
Christopher Fauleta8b76842022-12-16 15:08:36 +01003249 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003250 goto full;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003251 if (ctx->field)
3252 goto more;
William Lallemand74c24fb2016-11-21 17:18:36 +01003253 }
3254
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003255 current_field = 0;
Willy Tarreau91cefca2022-05-03 17:08:29 +02003256 ctx->px_st = STAT_PX_ST_END;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003257 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003258
3259 case STAT_PX_ST_END:
Willy Tarreau91cefca2022-05-03 17:08:29 +02003260 if (ctx->flags & STAT_FMT_HTML) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02003261 stats_dump_html_px_end(sc, px);
Christopher Fauleta8b76842022-12-16 15:08:36 +01003262 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003263 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003264 }
3265
Willy Tarreau91cefca2022-05-03 17:08:29 +02003266 ctx->px_st = STAT_PX_ST_FIN;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003267 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003268
3269 case STAT_PX_ST_FIN:
3270 return 1;
3271
3272 default:
3273 /* unknown state, we should put an abort() here ! */
3274 return 1;
3275 }
Christopher Fauletef779222018-10-31 08:47:01 +01003276
3277 full:
Willy Tarreaucaff6312022-05-27 10:17:46 +02003278 sc_need_room(sc);
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003279 /* restore previous field */
3280 ctx->field = current_field;
Christopher Fauletef779222018-10-31 08:47:01 +01003281 return 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01003282}
3283
Christopher Fauleta8b76842022-12-16 15:08:36 +01003284/* Dumps the HTTP stats head block to the local trash buffer for and uses the
3285 * per-uri parameters <uri>. The caller is responsible for clearing the local
3286 * trash buffer if needed.
William Lallemand74c24fb2016-11-21 17:18:36 +01003287 */
Willy Tarreau676c29e2019-10-09 10:50:01 +02003288static void stats_dump_html_head(struct appctx *appctx, struct uri_auth *uri)
William Lallemand74c24fb2016-11-21 17:18:36 +01003289{
Willy Tarreau91cefca2022-05-03 17:08:29 +02003290 struct show_stat_ctx *ctx = appctx->svcctx;
3291
William Lallemand74c24fb2016-11-21 17:18:36 +01003292 /* WARNING! This must fit in the first buffer !!! */
Christopher Fauleta8b76842022-12-16 15:08:36 +01003293 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003294 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3295 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3296 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
Thierry Fournierb6b1cde2021-09-24 00:03:07 +02003297 "<link rel=\"icon\" href=\"data:,\">\n"
William Lallemand74c24fb2016-11-21 17:18:36 +01003298 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3299 "<style type=\"text/css\"><!--\n"
3300 "body {"
3301 " font-family: arial, helvetica, sans-serif;"
3302 " font-size: 12px;"
3303 " font-weight: normal;"
3304 " color: black;"
3305 " background: white;"
3306 "}\n"
3307 "th,td {"
3308 " font-size: 10px;"
3309 "}\n"
3310 "h1 {"
3311 " font-size: x-large;"
3312 " margin-bottom: 0.5em;"
3313 "}\n"
3314 "h2 {"
3315 " font-family: helvetica, arial;"
3316 " font-size: x-large;"
3317 " font-weight: bold;"
3318 " font-style: italic;"
3319 " color: #6020a0;"
3320 " margin-top: 0em;"
3321 " margin-bottom: 0em;"
3322 "}\n"
3323 "h3 {"
3324 " font-family: helvetica, arial;"
3325 " font-size: 16px;"
3326 " font-weight: bold;"
3327 " color: #b00040;"
3328 " background: #e8e8d0;"
3329 " margin-top: 0em;"
3330 " margin-bottom: 0em;"
3331 "}\n"
3332 "li {"
3333 " margin-top: 0.25em;"
3334 " margin-right: 2em;"
3335 "}\n"
3336 ".hr {margin-top: 0.25em;"
3337 " border-color: black;"
3338 " border-bottom-style: solid;"
3339 "}\n"
3340 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3341 ".total {background: #20D0D0;color: #ffff80;}\n"
3342 ".frontend {background: #e8e8d0;}\n"
3343 ".socket {background: #d0d0d0;}\n"
3344 ".backend {background: #e8e8d0;}\n"
3345 ".active_down {background: #ff9090;}\n"
3346 ".active_going_up {background: #ffd020;}\n"
3347 ".active_going_down {background: #ffffa0;}\n"
3348 ".active_up {background: #c0ffc0;}\n"
3349 ".active_nolb {background: #20a0ff;}\n"
3350 ".active_draining {background: #20a0FF;}\n"
3351 ".active_no_check {background: #e0e0e0;}\n"
3352 ".backup_down {background: #ff9090;}\n"
3353 ".backup_going_up {background: #ff80ff;}\n"
3354 ".backup_going_down {background: #c060ff;}\n"
3355 ".backup_up {background: #b0d0ff;}\n"
3356 ".backup_nolb {background: #90b0e0;}\n"
3357 ".backup_draining {background: #cc9900;}\n"
3358 ".backup_no_check {background: #e0e0e0;}\n"
3359 ".maintain {background: #c07820;}\n"
3360 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3361 "\n"
3362 "a.px:link {color: #ffff40; text-decoration: none;}"
3363 "a.px:visited {color: #ffff40; text-decoration: none;}"
3364 "a.px:hover {color: #ffffff; text-decoration: none;}"
3365 "a.lfsb:link {color: #000000; text-decoration: none;}"
3366 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3367 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3368 "\n"
3369 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3370 "table.tbl td { text-align: right; border-width: 1px 1px 1px 1px; border-style: solid solid solid solid; padding: 2px 3px; border-color: gray; white-space: nowrap;}\n"
3371 "table.tbl td.ac { text-align: center;}\n"
3372 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3373 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3374 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3375 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3376 "\n"
3377 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3378 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3379 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
3380 "table.det { border-collapse: collapse; border-style: none; }\n"
3381 "table.det th { text-align: left; border-width: 0px; padding: 0px 1px 0px 0px; font-style:normal;font-size:11px;font-weight:bold;font-family: sans-serif;}\n"
3382 "table.det td { text-align: right; border-width: 0px; padding: 0px 0px 0px 4px; white-space: nowrap; font-style:normal;font-size:11px;font-weight:normal;}\n"
3383 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Thierry Fournierb6b1cde2021-09-24 00:03:07 +02003384 "div.tips {\n"
3385 " display:block;\n"
3386 " visibility:hidden;\n"
3387 " z-index:2147483647;\n"
3388 " position:absolute;\n"
3389 " padding:2px 4px 3px;\n"
3390 " background:#f0f060; color:#000000;\n"
3391 " border:1px solid #7040c0;\n"
3392 " white-space:nowrap;\n"
3393 " font-style:normal;font-size:11px;font-weight:normal;\n"
3394 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
3395 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
3396 "}\n"
3397 "u:hover div.tips {visibility:visible;}\n"
Thierry Fourniere9ed63e2021-09-23 23:59:49 +02003398 "@media (prefers-color-scheme: dark) {\n"
3399 " body { font-family: arial, helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #e8e6e3; background: #131516;}\n"
3400 " h1 { color: #a265e0!important; }\n"
3401 " h2 { color: #a265e0; }\n"
3402 " h3 { color: #ff5190; background-color: #3e3e1f; }\n"
3403 " a { color: #3391ff; }\n"
3404 " input { background-color: #2f3437; }\n"
3405 " .hr { border-color: #8c8273; }\n"
3406 " .titre { background-color: #1aa6a6; color: #e8e6e3; }\n"
3407 " .frontend {background: #2f3437;}\n"
Marno Krahmera690b732022-03-08 13:45:09 +01003408 " .socket {background: #2a2d2f;}\n"
Thierry Fourniere9ed63e2021-09-23 23:59:49 +02003409 " .backend {background: #2f3437;}\n"
3410 " .active_down {background: #760000;}\n"
3411 " .active_going_up {background: #b99200;}\n"
3412 " .active_going_down {background: #6c6c00;}\n"
3413 " .active_up {background: #165900;}\n"
3414 " .active_nolb {background: #006ab9;}\n"
3415 " .active_draining {background: #006ab9;}\n"
3416 " .active_no_check {background: #2a2d2f;}\n"
3417 " .backup_down {background: #760000;}\n"
3418 " .backup_going_up {background: #7f007f;}\n"
3419 " .backup_going_down {background: #580092;}\n"
3420 " .backup_up {background: #2e3234;}\n"
3421 " .backup_nolb {background: #1e3c6a;}\n"
3422 " .backup_draining {background: #a37a00;}\n"
3423 " .backup_no_check {background: #2a2d2f;}\n"
3424 " .maintain {background: #9a601a;}\n"
3425 " a.px:link {color: #d8d83b; text-decoration: none;}\n"
3426 " a.px:visited {color: #d8d83b; text-decoration: none;}\n"
3427 " a.px:hover {color: #ffffff; text-decoration: none;}\n"
3428 " a.lfsb:link {color: #e8e6e3; text-decoration: none;}\n"
3429 " a.lfsb:visited {color: #e8e6e3; text-decoration: none;}\n"
3430 " a.lfsb:hover {color: #b5afa6; text-decoration: none;}\n"
3431 " table.tbl th.empty { background-color: #181a1b; }\n"
Willy Tarreau00147f72022-04-11 07:59:27 +02003432 " table.tbl th.desc { background: #181a1b; }\n"
Thierry Fourniere9ed63e2021-09-23 23:59:49 +02003433 " table.tbl th.pxname { background-color: #8d0033; color: #ffff46; }\n"
3434 " table.tbl th { border-color: #808080; }\n"
3435 " table.tbl td { border-color: #808080; }\n"
3436 " u {text-decoration:none; border-bottom: 1px dotted #e8e6e3;}\n"
3437 " div.tips {\n"
3438 " background:#8e8e0d;\n"
3439 " color:#e8e6e3;\n"
3440 " border-color: #4e2c86;\n"
3441 " -moz-box-shadow: #60686c 2px 2px 3px;\n"
3442 " -webkit-box-shadow: #60686c 2px 2px 3px;\n"
3443 " box-shadow: #60686c 2px 2px 3px;\n"
3444 " }\n"
3445 "}\n"
William Lallemand74c24fb2016-11-21 17:18:36 +01003446 "-->\n"
3447 "</style></head>\n",
Willy Tarreau91cefca2022-05-03 17:08:29 +02003448 (ctx->flags & STAT_SHNODE) ? " on " : "",
3449 (ctx->flags & STAT_SHNODE) ? (uri && uri->node ? uri->node : global.node) : ""
William Lallemand74c24fb2016-11-21 17:18:36 +01003450 );
3451}
3452
Christopher Fauleta8b76842022-12-16 15:08:36 +01003453/* Dumps the HTML stats information block to the local trash buffer for and uses
3454 * the state from stream connector <sc> and per-uri parameters <uri>. The caller
3455 * is responsible for clearing the local trash buffer if needed.
William Lallemand74c24fb2016-11-21 17:18:36 +01003456 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003457static void stats_dump_html_info(struct stconn *sc, struct uri_auth *uri)
William Lallemand74c24fb2016-11-21 17:18:36 +01003458{
Willy Tarreaucaff6312022-05-27 10:17:46 +02003459 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003460 struct show_stat_ctx *ctx = appctx->svcctx;
William Lallemand74c24fb2016-11-21 17:18:36 +01003461 unsigned int up = (now.tv_sec - start_date.tv_sec);
3462 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Willy Tarreaucaff6312022-05-27 10:17:46 +02003463 const char *scope_ptr = stats_scope_ptr(appctx, sc);
Willy Tarreau1713c032019-05-23 12:23:55 +02003464 unsigned long long bps = (unsigned long long)read_freq_ctr(&global.out_32bps) * 32;
3465
3466 /* Turn the bytes per second to bits per second and take care of the
3467 * usual ethernet overhead in order to help figure how far we are from
3468 * interface saturation since it's the only case which usually matters.
3469 * For this we count the total size of an Ethernet frame on the wire
3470 * including preamble and IFG (1538) for the largest TCP segment it
3471 * transports (1448 with TCP timestamps). This is not valid for smaller
3472 * packets (under-estimated), but it gives a reasonably accurate
3473 * estimation of how far we are from uplink saturation.
3474 */
3475 bps = bps * 8 * 1538 / 1448;
William Lallemand74c24fb2016-11-21 17:18:36 +01003476
3477 /* WARNING! this has to fit the first packet too.
3478 * We are around 3.5 kB, add adding entries will
3479 * become tricky if we want to support 4kB buffers !
3480 */
Christopher Fauleta8b76842022-12-16 15:08:36 +01003481 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003482 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
3483 PRODUCT_NAME "%s</a></h1>\n"
3484 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
3485 "<hr width=\"100%%\" class=\"hr\">\n"
3486 "<h3>&gt; General process information</h3>\n"
3487 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
Yves Lafon95317282018-02-26 11:10:37 +01003488 "<p><b>pid = </b> %d (process #%d, nbproc = %d, nbthread = %d)<br>\n"
William Lallemand74c24fb2016-11-21 17:18:36 +01003489 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
3490 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
3491 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
Willy Tarreau1713c032019-05-23 12:23:55 +02003492 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec; bit rate = %.3f %cbps<br>\n"
William Lallemand74c24fb2016-11-21 17:18:36 +01003493 "Running tasks: %d/%d; idle = %d %%<br>\n"
3494 "</td><td align=\"center\" nowrap>\n"
3495 "<table class=\"lgd\"><tr>\n"
3496 "<td class=\"active_up\">&nbsp;</td><td class=\"noborder\">active UP </td>"
3497 "<td class=\"backup_up\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
3498 "</tr><tr>\n"
3499 "<td class=\"active_going_down\"></td><td class=\"noborder\">active UP, going down </td>"
3500 "<td class=\"backup_going_down\"></td><td class=\"noborder\">backup UP, going down </td>"
3501 "</tr><tr>\n"
3502 "<td class=\"active_going_up\"></td><td class=\"noborder\">active DOWN, going up </td>"
3503 "<td class=\"backup_going_up\"></td><td class=\"noborder\">backup DOWN, going up </td>"
3504 "</tr><tr>\n"
3505 "<td class=\"active_down\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
3506 "<td class=\"active_no_check\"></td><td class=\"noborder\">not checked </td>"
3507 "</tr><tr>\n"
3508 "<td class=\"maintain\"></td><td class=\"noborder\" colspan=\"3\">active or backup DOWN for maintenance (MAINT) &nbsp;</td>"
3509 "</tr><tr>\n"
3510 "<td class=\"active_draining\"></td><td class=\"noborder\" colspan=\"3\">active or backup SOFT STOPPED for maintenance &nbsp;</td>"
3511 "</tr></table>\n"
3512 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
3513 "</td>"
3514 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3515 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
3516 "",
Willy Tarreau91cefca2022-05-03 17:08:29 +02003517 (ctx->flags & STAT_HIDEVER) ? "" : (stats_version_string),
3518 pid, (ctx->flags & STAT_SHNODE) ? " on " : "",
3519 (ctx->flags & STAT_SHNODE) ? (uri->node ? uri->node : global.node) : "",
3520 (ctx->flags & STAT_SHDESC) ? ": " : "",
3521 (ctx->flags & STAT_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
Willy Tarreaue8422bf2021-06-15 09:08:18 +02003522 pid, 1, 1, global.nbthread,
William Lallemand74c24fb2016-11-21 17:18:36 +01003523 up / 86400, (up % 86400) / 3600,
3524 (up % 3600) / 60, (up % 60),
3525 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
3526 global.rlimit_memmax ? " MB" : "",
3527 global.rlimit_nofile,
3528 global.maxsock, global.maxconn, global.maxpipes,
3529 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
Willy Tarreau1713c032019-05-23 12:23:55 +02003530 bps >= 1000000000UL ? (bps / 1000000000.0) : bps >= 1000000UL ? (bps / 1000000.0) : (bps / 1000.0),
3531 bps >= 1000000000UL ? 'G' : bps >= 1000000UL ? 'M' : 'k',
Willy Tarreauf9d5e102021-10-08 10:43:59 +02003532 total_run_queues(), total_allocated_tasks(), clock_report_idle()
William Lallemand74c24fb2016-11-21 17:18:36 +01003533 );
3534
Willy Tarreau91cefca2022-05-03 17:08:29 +02003535 /* scope_txt = search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3536 memcpy(scope_txt, scope_ptr, ctx->scope_len);
3537 scope_txt[ctx->scope_len] = '\0';
William Lallemand74c24fb2016-11-21 17:18:36 +01003538
Christopher Fauleta8b76842022-12-16 15:08:36 +01003539 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003540 "<li><form method=\"GET\">Scope : <input value=\"%s\" name=\"" STAT_SCOPE_INPUT_NAME "\" size=\"8\" maxlength=\"%d\" tabindex=\"1\"/></form>\n",
Willy Tarreau91cefca2022-05-03 17:08:29 +02003541 (ctx->scope_len > 0) ? scope_txt : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003542 STAT_SCOPE_TXT_MAXLEN);
3543
Willy Tarreau91cefca2022-05-03 17:08:29 +02003544 /* scope_txt = search pattern + search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
William Lallemand74c24fb2016-11-21 17:18:36 +01003545 scope_txt[0] = 0;
Willy Tarreau91cefca2022-05-03 17:08:29 +02003546 if (ctx->scope_len) {
William Lallemand74c24fb2016-11-21 17:18:36 +01003547 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003548 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, ctx->scope_len);
3549 scope_txt[strlen(STAT_SCOPE_PATTERN) + ctx->scope_len] = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01003550 }
3551
Willy Tarreau91cefca2022-05-03 17:08:29 +02003552 if (ctx->flags & STAT_HIDE_DOWN)
Christopher Fauleta8b76842022-12-16 15:08:36 +01003553 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003554 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
3555 uri->uri_prefix,
3556 "",
Willy Tarreau91cefca2022-05-03 17:08:29 +02003557 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003558 scope_txt);
3559 else
Christopher Fauleta8b76842022-12-16 15:08:36 +01003560 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003561 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
3562 uri->uri_prefix,
3563 ";up",
Willy Tarreau91cefca2022-05-03 17:08:29 +02003564 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003565 scope_txt);
3566
3567 if (uri->refresh > 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003568 if (ctx->flags & STAT_NO_REFRESH)
Christopher Fauleta8b76842022-12-16 15:08:36 +01003569 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003570 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
3571 uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003572 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003573 "",
3574 scope_txt);
3575 else
Christopher Fauleta8b76842022-12-16 15:08:36 +01003576 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003577 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
3578 uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003579 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003580 ";norefresh",
3581 scope_txt);
3582 }
3583
Christopher Fauleta8b76842022-12-16 15:08:36 +01003584 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003585 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
3586 uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003587 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3588 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003589 scope_txt);
3590
Christopher Fauleta8b76842022-12-16 15:08:36 +01003591 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003592 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
3593 uri->uri_prefix,
3594 (uri->refresh > 0) ? ";norefresh" : "",
3595 scope_txt);
3596
Christopher Fauleta8b76842022-12-16 15:08:36 +01003597 chunk_appendf(&trash_chunk,
Christopher Faulet6338a082019-09-09 15:50:54 +02003598 "<li><a href=\"%s;json%s%s\">JSON export</a> (<a href=\"%s;json-schema\">schema</a>)<br>\n",
3599 uri->uri_prefix,
3600 (uri->refresh > 0) ? ";norefresh" : "",
3601 scope_txt, uri->uri_prefix);
3602
Christopher Fauleta8b76842022-12-16 15:08:36 +01003603 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003604 "</ul></td>"
3605 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3606 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
3607 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
3608 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
3609 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
3610 "</ul>"
3611 "</td>"
3612 "</tr></table>\n"
3613 ""
3614 );
3615
Willy Tarreau91cefca2022-05-03 17:08:29 +02003616 if (ctx->st_code) {
3617 switch (ctx->st_code) {
William Lallemand74c24fb2016-11-21 17:18:36 +01003618 case STAT_STATUS_DONE:
Christopher Fauleta8b76842022-12-16 15:08:36 +01003619 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003620 "<p><div class=active_up>"
3621 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3622 "Action processed successfully."
3623 "</div>\n", uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003624 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3625 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003626 scope_txt);
3627 break;
3628 case STAT_STATUS_NONE:
Christopher Fauleta8b76842022-12-16 15:08:36 +01003629 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003630 "<p><div class=active_going_down>"
3631 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3632 "Nothing has changed."
3633 "</div>\n", uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003634 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3635 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003636 scope_txt);
3637 break;
3638 case STAT_STATUS_PART:
Christopher Fauleta8b76842022-12-16 15:08:36 +01003639 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003640 "<p><div class=active_going_down>"
3641 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3642 "Action partially processed.<br>"
3643 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
3644 "</div>\n", uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003645 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3646 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003647 scope_txt);
3648 break;
3649 case STAT_STATUS_ERRP:
Christopher Fauleta8b76842022-12-16 15:08:36 +01003650 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003651 "<p><div class=active_down>"
3652 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3653 "Action not processed because of invalid parameters."
3654 "<ul>"
3655 "<li>The action is maybe unknown.</li>"
Christopher Faulet2f9a41d2019-02-27 15:30:57 +01003656 "<li>Invalid key parameter (empty or too long).</li>"
William Lallemand74c24fb2016-11-21 17:18:36 +01003657 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
3658 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
3659 "</ul>"
3660 "</div>\n", uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003661 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3662 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003663 scope_txt);
3664 break;
3665 case STAT_STATUS_EXCD:
Christopher Fauleta8b76842022-12-16 15:08:36 +01003666 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003667 "<p><div class=active_down>"
3668 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3669 "<b>Action not processed : the buffer couldn't store all the data.<br>"
3670 "You should retry with less servers at a time.</b>"
3671 "</div>\n", uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003672 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3673 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003674 scope_txt);
3675 break;
3676 case STAT_STATUS_DENY:
Christopher Fauleta8b76842022-12-16 15:08:36 +01003677 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003678 "<p><div class=active_down>"
3679 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3680 "<b>Action denied.</b>"
3681 "</div>\n", uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003682 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3683 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003684 scope_txt);
3685 break;
Christopher Faulet3c2ecf72019-02-27 16:41:27 +01003686 case STAT_STATUS_IVAL:
Christopher Fauleta8b76842022-12-16 15:08:36 +01003687 chunk_appendf(&trash_chunk,
Christopher Faulet3c2ecf72019-02-27 16:41:27 +01003688 "<p><div class=active_down>"
3689 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3690 "<b>Invalid requests (unsupported method or chunked encoded request).</b>"
3691 "</div>\n", uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003692 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3693 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Christopher Faulet3c2ecf72019-02-27 16:41:27 +01003694 scope_txt);
3695 break;
William Lallemand74c24fb2016-11-21 17:18:36 +01003696 default:
Christopher Fauleta8b76842022-12-16 15:08:36 +01003697 chunk_appendf(&trash_chunk,
William Lallemand74c24fb2016-11-21 17:18:36 +01003698 "<p><div class=active_no_check>"
3699 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3700 "Unexpected result."
3701 "</div>\n", uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02003702 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3703 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01003704 scope_txt);
3705 }
Christopher Fauleta8b76842022-12-16 15:08:36 +01003706 chunk_appendf(&trash_chunk, "<p>\n");
William Lallemand74c24fb2016-11-21 17:18:36 +01003707 }
3708}
3709
Christopher Fauleta8b76842022-12-16 15:08:36 +01003710/* Dumps the HTML stats trailer block to the local trash buffer. The caller is
3711 * responsible for clearing the local trash buffer if needed.
William Lallemand74c24fb2016-11-21 17:18:36 +01003712 */
3713static void stats_dump_html_end()
3714{
Christopher Fauleta8b76842022-12-16 15:08:36 +01003715 chunk_appendf(&trash_chunk, "</body></html>\n");
William Lallemand74c24fb2016-11-21 17:18:36 +01003716}
3717
Christopher Fauleta8b76842022-12-16 15:08:36 +01003718/* Dumps the stats JSON header to the local trash buffer buffer which. The
3719 * caller is responsible for clearing it if needed.
Simon Horman05ee2132017-01-04 09:37:25 +01003720 */
3721static void stats_dump_json_header()
3722{
Christopher Fauleta8b76842022-12-16 15:08:36 +01003723 chunk_strcat(&trash_chunk, "[");
Simon Horman05ee2132017-01-04 09:37:25 +01003724}
3725
3726
Christopher Fauleta8b76842022-12-16 15:08:36 +01003727/* Dumps the JSON stats trailer block to the local trash buffer. The caller is
3728 * responsible for clearing the local trash buffer if needed.
Simon Horman05ee2132017-01-04 09:37:25 +01003729 */
3730static void stats_dump_json_end()
3731{
Christopher Fauleta8b76842022-12-16 15:08:36 +01003732 chunk_strcat(&trash_chunk, "]\n");
Simon Horman05ee2132017-01-04 09:37:25 +01003733}
3734
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003735/* Uses <appctx.ctx.stats.obj1> as a pointer to the current proxy and <obj2> as
3736 * a pointer to the current server/listener.
3737 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003738static int stats_dump_proxies(struct stconn *sc,
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003739 struct htx *htx,
3740 struct uri_auth *uri)
3741{
Willy Tarreaucaff6312022-05-27 10:17:46 +02003742 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003743 struct show_stat_ctx *ctx = appctx->svcctx;
Willy Tarreaucaff6312022-05-27 10:17:46 +02003744 struct channel *rep = sc_ic(sc);
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003745 struct proxy *px;
3746
3747 /* dump proxies */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003748 while (ctx->obj1) {
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003749 if (htx) {
3750 if (htx_almost_full(htx))
3751 goto full;
3752 }
3753 else {
3754 if (buffer_almost_full(&rep->buf))
3755 goto full;
3756 }
3757
Willy Tarreau91cefca2022-05-03 17:08:29 +02003758 px = ctx->obj1;
Marno Krahmer07954fb2021-06-24 16:51:08 +02003759 /* Skip the global frontend proxies and non-networked ones.
William Lallemand85a16b22021-08-03 13:18:11 +02003760 * Also skip proxies that were disabled in the configuration
Marno Krahmer07954fb2021-06-24 16:51:08 +02003761 * This change allows retrieving stats from "old" proxies after a reload.
3762 */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003763 if (!(px->flags & PR_FL_DISABLED) && px->uuid > 0 &&
William Lallemande7f74622021-07-28 17:45:18 +02003764 (px->cap & (PR_CAP_FE | PR_CAP_BE)) && !(px->cap & PR_CAP_INT)) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02003765 if (stats_dump_proxy_to_buffer(sc, htx, px, uri) == 0)
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003766 return 0;
3767 }
3768
Willy Tarreau91cefca2022-05-03 17:08:29 +02003769 ctx->obj1 = px->next;
3770 ctx->px_st = STAT_PX_ST_INIT;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003771 ctx->field = 0;
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003772 }
3773
3774 return 1;
3775
3776 full:
Willy Tarreaucaff6312022-05-27 10:17:46 +02003777 sc_need_room(sc);
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003778 return 0;
3779}
3780
Willy Tarreau4596fe22022-05-17 19:07:51 +02003781/* This function dumps statistics onto the stream connector's read buffer in
William Lallemand74c24fb2016-11-21 17:18:36 +01003782 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
3783 * are ignored for CSV format (hence <uri> may be NULL there). It returns 0 if
3784 * it had to stop writing data and an I/O is needed, 1 if the dump is finished
3785 * and the stream must be closed, or -1 in case of any error. This function is
3786 * used by both the CLI and the HTTP handlers.
3787 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003788static int stats_dump_stat_to_buffer(struct stconn *sc, struct htx *htx,
Christopher Fauletef779222018-10-31 08:47:01 +01003789 struct uri_auth *uri)
William Lallemand74c24fb2016-11-21 17:18:36 +01003790{
Willy Tarreaucaff6312022-05-27 10:17:46 +02003791 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003792 struct show_stat_ctx *ctx = appctx->svcctx;
Willy Tarreaucaff6312022-05-27 10:17:46 +02003793 struct channel *rep = sc_ic(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003794 enum stats_domain domain = ctx->domain;
William Lallemand74c24fb2016-11-21 17:18:36 +01003795
Christopher Fauleta8b76842022-12-16 15:08:36 +01003796 chunk_reset(&trash_chunk);
William Lallemand74c24fb2016-11-21 17:18:36 +01003797
Willy Tarreau41f88522022-05-03 18:39:27 +02003798 switch (ctx->state) {
Willy Tarreau6ef16482022-05-06 18:07:53 +02003799 case STAT_STATE_INIT:
3800 ctx->state = STAT_STATE_HEAD; /* let's start producing data */
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003801 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003802
Willy Tarreau6ef16482022-05-06 18:07:53 +02003803 case STAT_STATE_HEAD:
Willy Tarreau91cefca2022-05-03 17:08:29 +02003804 if (ctx->flags & STAT_FMT_HTML)
Willy Tarreau676c29e2019-10-09 10:50:01 +02003805 stats_dump_html_head(appctx, uri);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003806 else if (ctx->flags & STAT_JSON_SCHM)
Christopher Fauleta8b76842022-12-16 15:08:36 +01003807 stats_dump_json_schema(&trash_chunk);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003808 else if (ctx->flags & STAT_FMT_JSON)
Willy Tarreau9d7fb632017-04-11 07:53:04 +02003809 stats_dump_json_header();
Willy Tarreau91cefca2022-05-03 17:08:29 +02003810 else if (!(ctx->flags & STAT_FMT_TYPED))
3811 stats_dump_csv_header(ctx->domain);
William Lallemand74c24fb2016-11-21 17:18:36 +01003812
Christopher Fauleta8b76842022-12-16 15:08:36 +01003813 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003814 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003815
Willy Tarreau91cefca2022-05-03 17:08:29 +02003816 if (ctx->flags & STAT_JSON_SCHM) {
Willy Tarreau6ef16482022-05-06 18:07:53 +02003817 ctx->state = STAT_STATE_FIN;
Christopher Faulet6338a082019-09-09 15:50:54 +02003818 return 1;
3819 }
Willy Tarreau6ef16482022-05-06 18:07:53 +02003820 ctx->state = STAT_STATE_INFO;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003821 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003822
Willy Tarreau6ef16482022-05-06 18:07:53 +02003823 case STAT_STATE_INFO:
Willy Tarreau91cefca2022-05-03 17:08:29 +02003824 if (ctx->flags & STAT_FMT_HTML) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02003825 stats_dump_html_info(sc, uri);
Christopher Fauleta8b76842022-12-16 15:08:36 +01003826 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003827 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003828 }
3829
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003830 if (domain == STATS_DOMAIN_PROXY)
Willy Tarreau91cefca2022-05-03 17:08:29 +02003831 ctx->obj1 = proxies_list;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003832
Willy Tarreau91cefca2022-05-03 17:08:29 +02003833 ctx->px_st = STAT_PX_ST_INIT;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01003834 ctx->field = 0;
Willy Tarreau6ef16482022-05-06 18:07:53 +02003835 ctx->state = STAT_STATE_LIST;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003836 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003837
Willy Tarreau6ef16482022-05-06 18:07:53 +02003838 case STAT_STATE_LIST:
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003839 switch (domain) {
Emeric Brunf8642ee2021-10-29 17:59:18 +02003840 case STATS_DOMAIN_RESOLVERS:
Willy Tarreaucaff6312022-05-27 10:17:46 +02003841 if (!stats_dump_resolvers(sc, stat_l[domain],
Emeric Brund3b44952021-01-06 16:01:02 +01003842 stat_count[domain],
3843 &stats_module_list[domain])) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003844 return 0;
3845 }
3846 break;
3847
3848 case STATS_DOMAIN_PROXY:
3849 default:
3850 /* dump proxies */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003851 if (!stats_dump_proxies(sc, htx, uri))
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003852 return 0;
3853 break;
3854 }
William Lallemand74c24fb2016-11-21 17:18:36 +01003855
Willy Tarreau6ef16482022-05-06 18:07:53 +02003856 ctx->state = STAT_STATE_END;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003857 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003858
Willy Tarreau6ef16482022-05-06 18:07:53 +02003859 case STAT_STATE_END:
Willy Tarreau91cefca2022-05-03 17:08:29 +02003860 if (ctx->flags & (STAT_FMT_HTML|STAT_FMT_JSON)) {
3861 if (ctx->flags & STAT_FMT_HTML)
Simon Horman05ee2132017-01-04 09:37:25 +01003862 stats_dump_html_end();
3863 else
3864 stats_dump_json_end();
Christopher Fauleta8b76842022-12-16 15:08:36 +01003865 if (!stats_putchk(rep, htx, &trash_chunk))
Christopher Fauletef779222018-10-31 08:47:01 +01003866 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003867 }
3868
Willy Tarreau6ef16482022-05-06 18:07:53 +02003869 ctx->state = STAT_STATE_FIN;
Willy Tarreau9eb93c02022-11-14 07:12:05 +01003870 __fallthrough;
William Lallemand74c24fb2016-11-21 17:18:36 +01003871
Willy Tarreau6ef16482022-05-06 18:07:53 +02003872 case STAT_STATE_FIN:
William Lallemand74c24fb2016-11-21 17:18:36 +01003873 return 1;
3874
3875 default:
3876 /* unknown state ! */
Willy Tarreau6ef16482022-05-06 18:07:53 +02003877 ctx->state = STAT_STATE_FIN;
William Lallemand74c24fb2016-11-21 17:18:36 +01003878 return -1;
3879 }
Christopher Fauletef779222018-10-31 08:47:01 +01003880
3881 full:
Willy Tarreaucaff6312022-05-27 10:17:46 +02003882 sc_need_room(sc);
Christopher Fauletef779222018-10-31 08:47:01 +01003883 return 0;
3884
William Lallemand74c24fb2016-11-21 17:18:36 +01003885}
3886
3887/* We reached the stats page through a POST request. The appctx is
3888 * expected to have already been allocated by the caller.
3889 * Parse the posted data and enable/disable servers if necessary.
3890 * Returns 1 if request was parsed or zero if it needs more data.
3891 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02003892static int stats_process_http_post(struct stconn *sc)
William Lallemand74c24fb2016-11-21 17:18:36 +01003893{
Willy Tarreaucaff6312022-05-27 10:17:46 +02003894 struct stream *s = __sc_strm(sc);
3895 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003896 struct show_stat_ctx *ctx = appctx->svcctx;
William Lallemand74c24fb2016-11-21 17:18:36 +01003897
3898 struct proxy *px = NULL;
3899 struct server *sv = NULL;
3900
3901 char key[LINESIZE];
3902 int action = ST_ADM_ACTION_NONE;
3903 int reprocess = 0;
3904
3905 int total_servers = 0;
3906 int altered_servers = 0;
3907
3908 char *first_param, *cur_param, *next_param, *end_params;
3909 char *st_cur_param = NULL;
3910 char *st_next_param = NULL;
3911
Christopher Fauleta3618372018-12-13 21:59:56 +01003912 struct buffer *temp = get_trash_chunk();
William Lallemand74c24fb2016-11-21 17:18:36 +01003913
Christopher Fauletb7f88902019-07-15 21:56:43 +02003914 struct htx *htx = htxbuf(&s->req.buf);
3915 struct htx_blk *blk;
Christopher Fauleta3618372018-12-13 21:59:56 +01003916
Christopher Fauletb7f88902019-07-15 21:56:43 +02003917 /* we need more data */
3918 if (s->txn->req.msg_state < HTTP_MSG_DONE) {
3919 /* check if we can receive more */
3920 if (htx_free_data_space(htx) <= global.tune.maxrewrite) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003921 ctx->st_code = STAT_STATUS_EXCD;
Christopher Fauletb7f88902019-07-15 21:56:43 +02003922 goto out;
Christopher Fauleta3618372018-12-13 21:59:56 +01003923 }
Christopher Fauletb7f88902019-07-15 21:56:43 +02003924 goto wait;
3925 }
Christopher Fauleta3618372018-12-13 21:59:56 +01003926
Christopher Fauletb7f88902019-07-15 21:56:43 +02003927 /* The request was fully received. Copy data */
3928 blk = htx_get_head_blk(htx);
3929 while (blk) {
3930 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Fauleta3618372018-12-13 21:59:56 +01003931
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01003932 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
Christopher Fauletb7f88902019-07-15 21:56:43 +02003933 break;
3934 if (type == HTX_BLK_DATA) {
3935 struct ist v = htx_get_blk_value(htx, blk);
Christopher Fauleta3618372018-12-13 21:59:56 +01003936
Christopher Fauletb7f88902019-07-15 21:56:43 +02003937 if (!chunk_memcat(temp, v.ptr, v.len)) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003938 ctx->st_code = STAT_STATUS_EXCD;
Christopher Faulet2f9a41d2019-02-27 15:30:57 +01003939 goto out;
3940 }
Christopher Fauleta3618372018-12-13 21:59:56 +01003941 }
Christopher Fauletb7f88902019-07-15 21:56:43 +02003942 blk = htx_get_next_blk(htx, blk);
William Lallemand74c24fb2016-11-21 17:18:36 +01003943 }
3944
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003945 first_param = temp->area;
Christopher Fauleta3618372018-12-13 21:59:56 +01003946 end_params = temp->area + temp->data;
William Lallemand74c24fb2016-11-21 17:18:36 +01003947 cur_param = next_param = end_params;
3948 *end_params = '\0';
3949
Willy Tarreau91cefca2022-05-03 17:08:29 +02003950 ctx->st_code = STAT_STATUS_NONE;
William Lallemand74c24fb2016-11-21 17:18:36 +01003951
3952 /*
3953 * Parse the parameters in reverse order to only store the last value.
3954 * From the html form, the backend and the action are at the end.
3955 */
3956 while (cur_param > first_param) {
3957 char *value;
3958 int poffset, plen;
3959
3960 cur_param--;
3961
3962 if ((*cur_param == '&') || (cur_param == first_param)) {
3963 reprocess_servers:
3964 /* Parse the key */
3965 poffset = (cur_param != first_param ? 1 : 0);
3966 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
3967 if ((plen > 0) && (plen <= sizeof(key))) {
3968 strncpy(key, cur_param + poffset, plen);
3969 key[plen - 1] = '\0';
3970 } else {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003971 ctx->st_code = STAT_STATUS_ERRP;
William Lallemand74c24fb2016-11-21 17:18:36 +01003972 goto out;
3973 }
3974
3975 /* Parse the value */
3976 value = key;
3977 while (*value != '\0' && *value != '=') {
3978 value++;
3979 }
3980 if (*value == '=') {
3981 /* Ok, a value is found, we can mark the end of the key */
3982 *value++ = '\0';
3983 }
Willy Tarreau62ba9ba2020-04-23 17:54:47 +02003984 if (url_decode(key, 1) < 0 || url_decode(value, 1) < 0)
William Lallemand74c24fb2016-11-21 17:18:36 +01003985 break;
3986
3987 /* Now we can check the key to see what to do */
3988 if (!px && (strcmp(key, "b") == 0)) {
3989 if ((px = proxy_be_by_name(value)) == NULL) {
3990 /* the backend name is unknown or ambiguous (duplicate names) */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003991 ctx->st_code = STAT_STATUS_ERRP;
William Lallemand74c24fb2016-11-21 17:18:36 +01003992 goto out;
3993 }
3994 }
3995 else if (!action && (strcmp(key, "action") == 0)) {
3996 if (strcmp(value, "ready") == 0) {
3997 action = ST_ADM_ACTION_READY;
3998 }
3999 else if (strcmp(value, "drain") == 0) {
4000 action = ST_ADM_ACTION_DRAIN;
4001 }
4002 else if (strcmp(value, "maint") == 0) {
4003 action = ST_ADM_ACTION_MAINT;
4004 }
4005 else if (strcmp(value, "shutdown") == 0) {
4006 action = ST_ADM_ACTION_SHUTDOWN;
4007 }
4008 else if (strcmp(value, "dhlth") == 0) {
4009 action = ST_ADM_ACTION_DHLTH;
4010 }
4011 else if (strcmp(value, "ehlth") == 0) {
4012 action = ST_ADM_ACTION_EHLTH;
4013 }
4014 else if (strcmp(value, "hrunn") == 0) {
4015 action = ST_ADM_ACTION_HRUNN;
4016 }
4017 else if (strcmp(value, "hnolb") == 0) {
4018 action = ST_ADM_ACTION_HNOLB;
4019 }
4020 else if (strcmp(value, "hdown") == 0) {
4021 action = ST_ADM_ACTION_HDOWN;
4022 }
4023 else if (strcmp(value, "dagent") == 0) {
4024 action = ST_ADM_ACTION_DAGENT;
4025 }
4026 else if (strcmp(value, "eagent") == 0) {
4027 action = ST_ADM_ACTION_EAGENT;
4028 }
4029 else if (strcmp(value, "arunn") == 0) {
4030 action = ST_ADM_ACTION_ARUNN;
4031 }
4032 else if (strcmp(value, "adown") == 0) {
4033 action = ST_ADM_ACTION_ADOWN;
4034 }
4035 /* else these are the old supported methods */
4036 else if (strcmp(value, "disable") == 0) {
4037 action = ST_ADM_ACTION_DISABLE;
4038 }
4039 else if (strcmp(value, "enable") == 0) {
4040 action = ST_ADM_ACTION_ENABLE;
4041 }
4042 else if (strcmp(value, "stop") == 0) {
4043 action = ST_ADM_ACTION_STOP;
4044 }
4045 else if (strcmp(value, "start") == 0) {
4046 action = ST_ADM_ACTION_START;
4047 }
4048 else {
Willy Tarreau91cefca2022-05-03 17:08:29 +02004049 ctx->st_code = STAT_STATUS_ERRP;
William Lallemand74c24fb2016-11-21 17:18:36 +01004050 goto out;
4051 }
4052 }
4053 else if (strcmp(key, "s") == 0) {
4054 if (!(px && action)) {
4055 /*
4056 * Indicates that we'll need to reprocess the parameters
4057 * as soon as backend and action are known
4058 */
4059 if (!reprocess) {
4060 st_cur_param = cur_param;
4061 st_next_param = next_param;
4062 }
4063 reprocess = 1;
4064 }
4065 else if ((sv = findserver(px, value)) != NULL) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004066 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand74c24fb2016-11-21 17:18:36 +01004067 switch (action) {
4068 case ST_ADM_ACTION_DISABLE:
Emeric Brun52a91d32017-08-31 14:41:55 +02004069 if (!(sv->cur_admin & SRV_ADMF_FMAINT)) {
William Lallemand74c24fb2016-11-21 17:18:36 +01004070 altered_servers++;
4071 total_servers++;
4072 srv_set_admin_flag(sv, SRV_ADMF_FMAINT, "'disable' on stats page");
4073 }
4074 break;
4075 case ST_ADM_ACTION_ENABLE:
Emeric Brun52a91d32017-08-31 14:41:55 +02004076 if (sv->cur_admin & SRV_ADMF_FMAINT) {
William Lallemand74c24fb2016-11-21 17:18:36 +01004077 altered_servers++;
4078 total_servers++;
4079 srv_clr_admin_flag(sv, SRV_ADMF_FMAINT);
4080 }
4081 break;
4082 case ST_ADM_ACTION_STOP:
Emeric Brun52a91d32017-08-31 14:41:55 +02004083 if (!(sv->cur_admin & SRV_ADMF_FDRAIN)) {
William Lallemand74c24fb2016-11-21 17:18:36 +01004084 srv_set_admin_flag(sv, SRV_ADMF_FDRAIN, "'stop' on stats page");
4085 altered_servers++;
4086 total_servers++;
4087 }
4088 break;
4089 case ST_ADM_ACTION_START:
Emeric Brun52a91d32017-08-31 14:41:55 +02004090 if (sv->cur_admin & SRV_ADMF_FDRAIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01004091 srv_clr_admin_flag(sv, SRV_ADMF_FDRAIN);
4092 altered_servers++;
4093 total_servers++;
4094 }
4095 break;
4096 case ST_ADM_ACTION_DHLTH:
4097 if (sv->check.state & CHK_ST_CONFIGURED) {
4098 sv->check.state &= ~CHK_ST_ENABLED;
4099 altered_servers++;
4100 total_servers++;
4101 }
4102 break;
4103 case ST_ADM_ACTION_EHLTH:
4104 if (sv->check.state & CHK_ST_CONFIGURED) {
4105 sv->check.state |= CHK_ST_ENABLED;
4106 altered_servers++;
4107 total_servers++;
4108 }
4109 break;
4110 case ST_ADM_ACTION_HRUNN:
4111 if (!(sv->track)) {
4112 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004113 srv_set_running(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004114 altered_servers++;
4115 total_servers++;
4116 }
4117 break;
4118 case ST_ADM_ACTION_HNOLB:
4119 if (!(sv->track)) {
4120 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004121 srv_set_stopping(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004122 altered_servers++;
4123 total_servers++;
4124 }
4125 break;
4126 case ST_ADM_ACTION_HDOWN:
4127 if (!(sv->track)) {
4128 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004129 srv_set_stopped(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004130 altered_servers++;
4131 total_servers++;
4132 }
4133 break;
4134 case ST_ADM_ACTION_DAGENT:
4135 if (sv->agent.state & CHK_ST_CONFIGURED) {
4136 sv->agent.state &= ~CHK_ST_ENABLED;
4137 altered_servers++;
4138 total_servers++;
4139 }
4140 break;
4141 case ST_ADM_ACTION_EAGENT:
4142 if (sv->agent.state & CHK_ST_CONFIGURED) {
4143 sv->agent.state |= CHK_ST_ENABLED;
4144 altered_servers++;
4145 total_servers++;
4146 }
4147 break;
4148 case ST_ADM_ACTION_ARUNN:
4149 if (sv->agent.state & CHK_ST_ENABLED) {
4150 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004151 srv_set_running(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004152 altered_servers++;
4153 total_servers++;
4154 }
4155 break;
4156 case ST_ADM_ACTION_ADOWN:
4157 if (sv->agent.state & CHK_ST_ENABLED) {
4158 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004159 srv_set_stopped(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004160 altered_servers++;
4161 total_servers++;
4162 }
4163 break;
4164 case ST_ADM_ACTION_READY:
4165 srv_adm_set_ready(sv);
4166 altered_servers++;
4167 total_servers++;
4168 break;
4169 case ST_ADM_ACTION_DRAIN:
4170 srv_adm_set_drain(sv);
4171 altered_servers++;
4172 total_servers++;
4173 break;
4174 case ST_ADM_ACTION_MAINT:
4175 srv_adm_set_maint(sv);
4176 altered_servers++;
4177 total_servers++;
4178 break;
4179 case ST_ADM_ACTION_SHUTDOWN:
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004180 if (!(px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Willy Tarreauaf7ea812019-11-14 16:42:04 +01004181 srv_shutdown_streams(sv, SF_ERR_KILLED);
William Lallemand74c24fb2016-11-21 17:18:36 +01004182 altered_servers++;
4183 total_servers++;
4184 }
4185 break;
4186 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004187 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand74c24fb2016-11-21 17:18:36 +01004188 } else {
4189 /* the server name is unknown or ambiguous (duplicate names) */
4190 total_servers++;
4191 }
4192 }
4193 if (reprocess && px && action) {
4194 /* Now, we know the backend and the action chosen by the user.
4195 * We can safely restart from the first server parameter
4196 * to reprocess them
4197 */
4198 cur_param = st_cur_param;
4199 next_param = st_next_param;
4200 reprocess = 0;
4201 goto reprocess_servers;
4202 }
4203
4204 next_param = cur_param;
4205 }
4206 }
4207
4208 if (total_servers == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02004209 ctx->st_code = STAT_STATUS_NONE;
William Lallemand74c24fb2016-11-21 17:18:36 +01004210 }
4211 else if (altered_servers == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02004212 ctx->st_code = STAT_STATUS_ERRP;
William Lallemand74c24fb2016-11-21 17:18:36 +01004213 }
4214 else if (altered_servers == total_servers) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02004215 ctx->st_code = STAT_STATUS_DONE;
William Lallemand74c24fb2016-11-21 17:18:36 +01004216 }
4217 else {
Willy Tarreau91cefca2022-05-03 17:08:29 +02004218 ctx->st_code = STAT_STATUS_PART;
William Lallemand74c24fb2016-11-21 17:18:36 +01004219 }
4220 out:
4221 return 1;
Christopher Faulet2f9a41d2019-02-27 15:30:57 +01004222 wait:
Willy Tarreau91cefca2022-05-03 17:08:29 +02004223 ctx->st_code = STAT_STATUS_NONE;
Christopher Faulet2f9a41d2019-02-27 15:30:57 +01004224 return 0;
Christopher Fauletef779222018-10-31 08:47:01 +01004225}
4226
4227
Willy Tarreaucaff6312022-05-27 10:17:46 +02004228static int stats_send_http_headers(struct stconn *sc, struct htx *htx)
Christopher Fauletef779222018-10-31 08:47:01 +01004229{
Willy Tarreaucaff6312022-05-27 10:17:46 +02004230 struct stream *s = __sc_strm(sc);
Christopher Fauletef779222018-10-31 08:47:01 +01004231 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreaucaff6312022-05-27 10:17:46 +02004232 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02004233 struct show_stat_ctx *ctx = appctx->svcctx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004234 struct htx_sl *sl;
4235 unsigned int flags;
Christopher Fauletef779222018-10-31 08:47:01 +01004236
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004237 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);
4238 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("200"), ist("OK"));
4239 if (!sl)
Christopher Fauletef779222018-10-31 08:47:01 +01004240 goto full;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004241 sl->info.res.status = 200;
Christopher Fauletef779222018-10-31 08:47:01 +01004242
Christopher Fauletb829f4c2019-03-29 16:13:55 +01004243 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")))
Christopher Fauletef779222018-10-31 08:47:01 +01004244 goto full;
Willy Tarreau91cefca2022-05-03 17:08:29 +02004245 if (ctx->flags & STAT_FMT_HTML) {
Christopher Fauletef779222018-10-31 08:47:01 +01004246 if (!htx_add_header(htx, ist("Content-Type"), ist("text/html")))
4247 goto full;
4248 }
Willy Tarreau91cefca2022-05-03 17:08:29 +02004249 else if (ctx->flags & (STAT_FMT_JSON|STAT_JSON_SCHM)) {
Christopher Faulet6338a082019-09-09 15:50:54 +02004250 if (!htx_add_header(htx, ist("Content-Type"), ist("application/json")))
4251 goto full;
4252 }
Christopher Fauletef779222018-10-31 08:47:01 +01004253 else {
4254 if (!htx_add_header(htx, ist("Content-Type"), ist("text/plain")))
4255 goto full;
4256 }
4257
Willy Tarreau91cefca2022-05-03 17:08:29 +02004258 if (uri->refresh > 0 && !(ctx->flags & STAT_NO_REFRESH)) {
Christopher Fauletef779222018-10-31 08:47:01 +01004259 const char *refresh = U2A(uri->refresh);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01004260 if (!htx_add_header(htx, ist("Refresh"), ist(refresh)))
Christopher Fauletef779222018-10-31 08:47:01 +01004261 goto full;
4262 }
4263
Willy Tarreau91cefca2022-05-03 17:08:29 +02004264 if (ctx->flags & STAT_CHUNKED) {
Christopher Fauletef779222018-10-31 08:47:01 +01004265 if (!htx_add_header(htx, ist("Transfer-Encoding"), ist("chunked")))
4266 goto full;
4267 }
4268
4269 if (!htx_add_endof(htx, HTX_BLK_EOH))
4270 goto full;
4271
Christopher Faulet1e2d6362019-02-27 16:28:48 +01004272 channel_add_input(&s->res, htx->data);
Christopher Fauletef779222018-10-31 08:47:01 +01004273 return 1;
4274
4275 full:
4276 htx_reset(htx);
Willy Tarreaucaff6312022-05-27 10:17:46 +02004277 sc_need_room(sc);
Christopher Fauletef779222018-10-31 08:47:01 +01004278 return 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01004279}
4280
Christopher Fauletef779222018-10-31 08:47:01 +01004281
Willy Tarreaucaff6312022-05-27 10:17:46 +02004282static int stats_send_http_redirect(struct stconn *sc, struct htx *htx)
Christopher Fauletef779222018-10-31 08:47:01 +01004283{
4284 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Willy Tarreaucaff6312022-05-27 10:17:46 +02004285 struct stream *s = __sc_strm(sc);
Christopher Fauletef779222018-10-31 08:47:01 +01004286 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreaucaff6312022-05-27 10:17:46 +02004287 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02004288 struct show_stat_ctx *ctx = appctx->svcctx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004289 struct htx_sl *sl;
4290 unsigned int flags;
Christopher Fauletef779222018-10-31 08:47:01 +01004291
Willy Tarreau91cefca2022-05-03 17:08:29 +02004292 /* scope_txt = search pattern + search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Christopher Fauletef779222018-10-31 08:47:01 +01004293 scope_txt[0] = 0;
Willy Tarreau91cefca2022-05-03 17:08:29 +02004294 if (ctx->scope_len) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02004295 const char *scope_ptr = stats_scope_ptr(appctx, sc);
Christopher Fauleted7a0662019-01-14 11:07:34 +01004296
Christopher Fauletef779222018-10-31 08:47:01 +01004297 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau91cefca2022-05-03 17:08:29 +02004298 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, ctx->scope_len);
4299 scope_txt[strlen(STAT_SCOPE_PATTERN) + ctx->scope_len] = 0;
Christopher Fauletef779222018-10-31 08:47:01 +01004300 }
4301
4302 /* We don't want to land on the posted stats page because a refresh will
4303 * repost the data. We don't want this to happen on accident so we redirect
4304 * the browse to the stats page with a GET.
4305 */
4306 chunk_printf(&trash, "%s;st=%s%s%s%s",
4307 uri->uri_prefix,
Willy Tarreau91cefca2022-05-03 17:08:29 +02004308 ((ctx->st_code > STAT_STATUS_INIT) &&
4309 (ctx->st_code < STAT_STATUS_SIZE) &&
4310 stat_status_codes[ctx->st_code]) ?
4311 stat_status_codes[ctx->st_code] :
Christopher Fauletef779222018-10-31 08:47:01 +01004312 stat_status_codes[STAT_STATUS_UNKN],
Willy Tarreau91cefca2022-05-03 17:08:29 +02004313 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
4314 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Christopher Fauletef779222018-10-31 08:47:01 +01004315 scope_txt);
4316
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004317 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_CHNK);
4318 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("303"), ist("See Other"));
4319 if (!sl)
Christopher Fauletef779222018-10-31 08:47:01 +01004320 goto full;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004321 sl->info.res.status = 303;
Christopher Fauletef779222018-10-31 08:47:01 +01004322
4323 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
Christopher Fauletef779222018-10-31 08:47:01 +01004324 !htx_add_header(htx, ist("Content-Type"), ist("text/plain")) ||
4325 !htx_add_header(htx, ist("Content-Length"), ist("0")) ||
4326 !htx_add_header(htx, ist("Location"), ist2(trash.area, trash.data)))
4327 goto full;
4328
4329 if (!htx_add_endof(htx, HTX_BLK_EOH))
4330 goto full;
4331
Christopher Faulet1e2d6362019-02-27 16:28:48 +01004332 channel_add_input(&s->res, htx->data);
Christopher Fauletef779222018-10-31 08:47:01 +01004333 return 1;
4334
4335full:
4336 htx_reset(htx);
Willy Tarreaucaff6312022-05-27 10:17:46 +02004337 sc_need_room(sc);
Christopher Fauletef779222018-10-31 08:47:01 +01004338 return 0;
4339}
William Lallemand74c24fb2016-11-21 17:18:36 +01004340
Simon Horman05ee2132017-01-04 09:37:25 +01004341
Willy Tarreau4596fe22022-05-17 19:07:51 +02004342/* This I/O handler runs as an applet embedded in a stream connector. It is
William Lallemand74c24fb2016-11-21 17:18:36 +01004343 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
4344 * appctx->st0 contains the operation in progress (dump, done). The handler
4345 * automatically unregisters itself once transfer is complete.
4346 */
Christopher Fauletb7f88902019-07-15 21:56:43 +02004347static void http_stats_io_handler(struct appctx *appctx)
Christopher Fauletef779222018-10-31 08:47:01 +01004348{
Willy Tarreau91cefca2022-05-03 17:08:29 +02004349 struct show_stat_ctx *ctx = appctx->svcctx;
Willy Tarreauc12b3212022-05-27 11:08:15 +02004350 struct stconn *sc = appctx_sc(appctx);
Willy Tarreaucaff6312022-05-27 10:17:46 +02004351 struct stream *s = __sc_strm(sc);
4352 struct channel *req = sc_oc(sc);
4353 struct channel *res = sc_ic(sc);
Christopher Fauletef779222018-10-31 08:47:01 +01004354 struct htx *req_htx, *res_htx;
4355
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02004356 /* only proxy stats are available via http */
Willy Tarreau91cefca2022-05-03 17:08:29 +02004357 ctx->domain = STATS_DOMAIN_PROXY;
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02004358
Christopher Fauletef779222018-10-31 08:47:01 +01004359 res_htx = htx_from_buf(&res->buf);
4360
Willy Tarreaucaff6312022-05-27 10:17:46 +02004361 if (unlikely(sc->state == SC_ST_DIS || sc->state == SC_ST_CLO))
Christopher Fauletef779222018-10-31 08:47:01 +01004362 goto out;
4363
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004364 /* Check if the input buffer is available. */
Christopher Fauletef779222018-10-31 08:47:01 +01004365 if (!b_size(&res->buf)) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02004366 sc_need_room(sc);
Christopher Fauletef779222018-10-31 08:47:01 +01004367 goto out;
4368 }
4369
4370 /* check that the output is not closed */
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004371 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
4372 appctx->st0 = STAT_HTTP_END;
Christopher Fauletef779222018-10-31 08:47:01 +01004373
4374 /* all states are processed in sequence */
4375 if (appctx->st0 == STAT_HTTP_HEAD) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02004376 if (stats_send_http_headers(sc, res_htx)) {
Christopher Fauletef779222018-10-31 08:47:01 +01004377 if (s->txn->meth == HTTP_METH_HEAD)
4378 appctx->st0 = STAT_HTTP_DONE;
4379 else
4380 appctx->st0 = STAT_HTTP_DUMP;
4381 }
4382 }
4383
4384 if (appctx->st0 == STAT_HTTP_DUMP) {
Christopher Fauleta8b76842022-12-16 15:08:36 +01004385 trash_chunk = b_make(trash.area, channel_htx_recv_limit(res, res_htx), 0, 0);
Willy Tarreaucaff6312022-05-27 10:17:46 +02004386 if (stats_dump_stat_to_buffer(sc, res_htx, s->be->uri_auth))
Christopher Fauletef779222018-10-31 08:47:01 +01004387 appctx->st0 = STAT_HTTP_DONE;
4388 }
4389
4390 if (appctx->st0 == STAT_HTTP_POST) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02004391 if (stats_process_http_post(sc))
Christopher Fauletef779222018-10-31 08:47:01 +01004392 appctx->st0 = STAT_HTTP_LAST;
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004393 else if (req->flags & CF_SHUTR)
Christopher Fauletef779222018-10-31 08:47:01 +01004394 appctx->st0 = STAT_HTTP_DONE;
4395 }
4396
4397 if (appctx->st0 == STAT_HTTP_LAST) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02004398 if (stats_send_http_redirect(sc, res_htx))
Christopher Fauletef779222018-10-31 08:47:01 +01004399 appctx->st0 = STAT_HTTP_DONE;
4400 }
4401
4402 if (appctx->st0 == STAT_HTTP_DONE) {
Christopher Faulet08b45cb2022-04-07 09:25:13 +02004403 /* no more data are expected. If the response buffer is empty,
4404 * be sure to add something (EOT block in this case) to have
4405 * something to send. It is important to be sure the EOM flags
4406 * will be handled by the endpoint.
4407 */
4408 if (htx_is_empty(res_htx)) {
4409 if (!htx_add_endof(res_htx, HTX_BLK_EOT)) {
Willy Tarreaucaff6312022-05-27 10:17:46 +02004410 sc_need_room(sc);
Christopher Faulet08b45cb2022-04-07 09:25:13 +02004411 goto out;
4412 }
4413 channel_add_input(res, 1);
4414 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004415 res_htx->flags |= HTX_FL_EOM;
Christopher Faulet3fa5d192022-03-07 15:52:42 +01004416 res->flags |= CF_EOI;
Willy Tarreaud869e132022-05-17 18:05:31 +02004417 se_fl_set(appctx->sedesc, SE_FL_EOI);
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004418 appctx->st0 = STAT_HTTP_END;
Christopher Fauletef779222018-10-31 08:47:01 +01004419 }
4420
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004421 if (appctx->st0 == STAT_HTTP_END) {
4422 if (!(res->flags & CF_SHUTR)) {
Christopher Fauletef779222018-10-31 08:47:01 +01004423 res->flags |= CF_READ_NULL;
Willy Tarreaucaff6312022-05-27 10:17:46 +02004424 sc_shutr(sc);
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004425 }
4426
4427 /* eat the whole request */
4428 if (co_data(req)) {
4429 req_htx = htx_from_buf(&req->buf);
4430 co_htx_skip(req, req_htx, co_data(req));
4431 htx_to_buf(req_htx, &req->buf);
Christopher Fauletef779222018-10-31 08:47:01 +01004432 }
4433 }
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004434
Christopher Fauletef779222018-10-31 08:47:01 +01004435 out:
4436 /* we have left the request in the buffer for the case where we
4437 * process a POST, and this automatically re-enables activity on
4438 * read. It's better to indicate that we want to stop reading when
4439 * we're sending, so that we know there's at most one direction
4440 * deciding to wake the applet up. It saves it from looping when
4441 * emitting large blocks into small TCP windows.
4442 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004443 htx_to_buf(res_htx, &res->buf);
4444 if (!channel_is_empty(res))
Willy Tarreau75a8f8e2022-05-25 18:12:11 +02004445 applet_wont_consume(appctx);
Christopher Fauletef779222018-10-31 08:47:01 +01004446}
4447
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004448/* Dump all fields from <info> into <out> using the "show info" format (name: value) */
Willy Tarreau83061a82018-07-13 11:56:34 +02004449static int stats_dump_info_fields(struct buffer *out,
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +01004450 const struct field *info,
4451 struct show_stat_ctx *ctx)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004452{
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +01004453 int flags = ctx->flags;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004454 int field;
4455
4456 for (field = 0; field < INF_TOTAL_FIELDS; field++) {
4457 if (!field_format(info, field))
4458 continue;
4459
Willy Tarreaueaa55372019-10-09 07:39:11 +02004460 if (!chunk_appendf(out, "%s: ", info_fields[field].name))
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004461 return 0;
4462 if (!stats_emit_raw_data_field(out, &info[field]))
4463 return 0;
Willy Tarreau6b19b142019-10-09 15:44:21 +02004464 if ((flags & STAT_SHOW_FDESC) && !chunk_appendf(out, ":\"%s\"", info_fields[field].desc))
4465 return 0;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004466 if (!chunk_strcat(out, "\n"))
4467 return 0;
4468 }
4469 return 1;
4470}
4471
4472/* Dump all fields from <info> into <out> using the "show info typed" format */
Willy Tarreau83061a82018-07-13 11:56:34 +02004473static int stats_dump_typed_info_fields(struct buffer *out,
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +01004474 const struct field *info,
4475 struct show_stat_ctx *ctx)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004476{
Aurelien DARRAGONe76a0272022-12-15 12:10:03 +01004477 int flags = ctx->flags;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004478 int field;
4479
4480 for (field = 0; field < INF_TOTAL_FIELDS; field++) {
4481 if (!field_format(info, field))
4482 continue;
4483
Willy Tarreaueaa55372019-10-09 07:39:11 +02004484 if (!chunk_appendf(out, "%d.%s.%u:", field, info_fields[field].name, info[INF_PROCESS_NUM].u.u32))
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004485 return 0;
4486 if (!stats_emit_field_tags(out, &info[field], ':'))
4487 return 0;
4488 if (!stats_emit_typed_data_field(out, &info[field]))
4489 return 0;
Willy Tarreau6b19b142019-10-09 15:44:21 +02004490 if ((flags & STAT_SHOW_FDESC) && !chunk_appendf(out, ":\"%s\"", info_fields[field].desc))
4491 return 0;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004492 if (!chunk_strcat(out, "\n"))
4493 return 0;
4494 }
4495 return 1;
4496}
4497
Willy Tarreau0b26b382021-05-08 07:43:53 +02004498/* Fill <info> with HAProxy global info. <info> is preallocated array of length
4499 * <len>. The length of the array must be INF_TOTAL_FIELDS. If this length is
4500 * less then this value, the function returns 0, otherwise, it returns 1. Some
4501 * fields' presence or precision may depend on some of the STAT_* flags present
4502 * in <flags>.
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004503 */
Willy Tarreau0b26b382021-05-08 07:43:53 +02004504int stats_fill_info(struct field *info, int len, uint flags)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004505{
Willy Tarreaud37e26e2021-05-08 07:40:52 +02004506 struct timeval up;
Willy Tarreau83061a82018-07-13 11:56:34 +02004507 struct buffer *out = get_trash_chunk();
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004508
4509#ifdef USE_OPENSSL
Willy Tarreauc5977722021-05-08 08:14:04 +02004510 double ssl_sess_rate = read_freq_ctr_flt(&global.ssl_per_sec);
4511 double ssl_key_rate = read_freq_ctr_flt(&global.ssl_fe_keys_per_sec);
4512 double ssl_reuse = 0;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004513
Willy Tarreauc5977722021-05-08 08:14:04 +02004514 if (ssl_key_rate < ssl_sess_rate)
4515 ssl_reuse = 100.0 * (1.0 - ssl_key_rate / ssl_sess_rate);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004516#endif
4517
Willy Tarreaud37e26e2021-05-08 07:40:52 +02004518 tv_remain(&start_date, &now, &up);
4519
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004520 if (len < INF_TOTAL_FIELDS)
4521 return 0;
4522
4523 chunk_reset(out);
4524 memset(info, 0, sizeof(*info) * len);
4525
4526 info[INF_NAME] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, PRODUCT_NAME);
Willy Tarreau909b9d82019-01-04 18:20:32 +01004527 info[INF_VERSION] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_version);
Adis Nezirovicb62b78b2021-01-15 13:12:33 +01004528 info[INF_BUILD_INFO] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_version);
Willy Tarreau909b9d82019-01-04 18:20:32 +01004529 info[INF_RELEASE_DATE] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_date);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004530
Yves Lafon95317282018-02-26 11:10:37 +01004531 info[INF_NBTHREAD] = mkf_u32(FO_CONFIG|FS_SERVICE, global.nbthread);
Willy Tarreau91358592021-06-15 08:08:04 +02004532 info[INF_NBPROC] = mkf_u32(FO_CONFIG|FS_SERVICE, 1);
Willy Tarreaue8422bf2021-06-15 09:08:18 +02004533 info[INF_PROCESS_NUM] = mkf_u32(FO_KEY, 1);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004534 info[INF_PID] = mkf_u32(FO_STATUS, pid);
4535
4536 info[INF_UPTIME] = mkf_str(FN_DURATION, chunk_newstr(out));
Willy Tarreaud37e26e2021-05-08 07:40:52 +02004537 chunk_appendf(out, "%ud %uh%02um%02us", (uint)up.tv_sec / 86400, ((uint)up.tv_sec % 86400) / 3600, ((uint)up.tv_sec % 3600) / 60, ((uint)up.tv_sec % 60));
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004538
Willy Tarreaue8abc322021-05-08 07:56:56 +02004539 info[INF_UPTIME_SEC] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_DURATION, up.tv_sec + up.tv_usec / 1000000.0) : mkf_u32(FN_DURATION, up.tv_sec);
4540 info[INF_START_TIME_SEC] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_DURATION, start_date.tv_sec + start_date.tv_usec / 1000000.0) : mkf_u32(FN_DURATION, start_date.tv_sec);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004541 info[INF_MEMMAX_MB] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_memmax);
William Dauchya8766cf2021-01-15 22:41:37 +01004542 info[INF_MEMMAX_BYTES] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_memmax * 1048576L);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004543 info[INF_POOL_ALLOC_MB] = mkf_u32(0, (unsigned)(pool_total_allocated() / 1048576L));
Christopher Fauletc960a3b2022-12-22 11:05:48 +01004544 info[INF_POOL_ALLOC_BYTES] = mkf_u64(0, pool_total_allocated());
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004545 info[INF_POOL_USED_MB] = mkf_u32(0, (unsigned)(pool_total_used() / 1048576L));
Christopher Fauletc960a3b2022-12-22 11:05:48 +01004546 info[INF_POOL_USED_BYTES] = mkf_u64(0, pool_total_used());
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004547 info[INF_POOL_FAILED] = mkf_u32(FN_COUNTER, pool_total_failures());
4548 info[INF_ULIMIT_N] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_nofile);
4549 info[INF_MAXSOCK] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxsock);
4550 info[INF_MAXCONN] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxconn);
4551 info[INF_HARD_MAXCONN] = mkf_u32(FO_CONFIG|FN_LIMIT, global.hardmaxconn);
4552 info[INF_CURR_CONN] = mkf_u32(0, actconn);
4553 info[INF_CUM_CONN] = mkf_u32(FN_COUNTER, totalconn);
4554 info[INF_CUM_REQ] = mkf_u32(FN_COUNTER, global.req_count);
4555#ifdef USE_OPENSSL
4556 info[INF_MAX_SSL_CONNS] = mkf_u32(FN_MAX, global.maxsslconn);
Willy Tarreau82531f62021-10-06 12:15:18 +02004557 info[INF_CURR_SSL_CONNS] = mkf_u32(0, global.sslconns);
4558 info[INF_CUM_SSL_CONNS] = mkf_u32(FN_COUNTER, global.totalsslconns);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004559#endif
4560 info[INF_MAXPIPES] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxpipes);
4561 info[INF_PIPES_USED] = mkf_u32(0, pipes_used);
4562 info[INF_PIPES_FREE] = mkf_u32(0, pipes_free);
Willy Tarreauc5977722021-05-08 08:14:04 +02004563 info[INF_CONN_RATE] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, read_freq_ctr_flt(&global.conn_per_sec)) : mkf_u32(FN_RATE, read_freq_ctr(&global.conn_per_sec));
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004564 info[INF_CONN_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.cps_lim);
4565 info[INF_MAX_CONN_RATE] = mkf_u32(FN_MAX, global.cps_max);
Willy Tarreauc5977722021-05-08 08:14:04 +02004566 info[INF_SESS_RATE] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, read_freq_ctr_flt(&global.sess_per_sec)) : mkf_u32(FN_RATE, read_freq_ctr(&global.sess_per_sec));
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004567 info[INF_SESS_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.sps_lim);
4568 info[INF_MAX_SESS_RATE] = mkf_u32(FN_RATE, global.sps_max);
4569
4570#ifdef USE_OPENSSL
Willy Tarreauc5977722021-05-08 08:14:04 +02004571 info[INF_SSL_RATE] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, ssl_sess_rate) : mkf_u32(FN_RATE, ssl_sess_rate);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004572 info[INF_SSL_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.ssl_lim);
4573 info[INF_MAX_SSL_RATE] = mkf_u32(FN_MAX, global.ssl_max);
Willy Tarreauc5977722021-05-08 08:14:04 +02004574 info[INF_SSL_FRONTEND_KEY_RATE] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, ssl_key_rate) : mkf_u32(0, ssl_key_rate);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004575 info[INF_SSL_FRONTEND_MAX_KEY_RATE] = mkf_u32(FN_MAX, global.ssl_fe_keys_max);
Willy Tarreauc5977722021-05-08 08:14:04 +02004576 info[INF_SSL_FRONTEND_SESSION_REUSE_PCT] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, ssl_reuse) : mkf_u32(0, ssl_reuse);
4577 info[INF_SSL_BACKEND_KEY_RATE] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, read_freq_ctr_flt(&global.ssl_be_keys_per_sec)) : mkf_u32(FN_RATE, read_freq_ctr(&global.ssl_be_keys_per_sec));
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004578 info[INF_SSL_BACKEND_MAX_KEY_RATE] = mkf_u32(FN_MAX, global.ssl_be_keys_max);
4579 info[INF_SSL_CACHE_LOOKUPS] = mkf_u32(FN_COUNTER, global.shctx_lookups);
4580 info[INF_SSL_CACHE_MISSES] = mkf_u32(FN_COUNTER, global.shctx_misses);
4581#endif
Willy Tarreauc5977722021-05-08 08:14:04 +02004582 info[INF_COMPRESS_BPS_IN] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, read_freq_ctr_flt(&global.comp_bps_in)) : mkf_u32(FN_RATE, read_freq_ctr(&global.comp_bps_in));
4583 info[INF_COMPRESS_BPS_OUT] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, read_freq_ctr_flt(&global.comp_bps_out)) : mkf_u32(FN_RATE, read_freq_ctr(&global.comp_bps_out));
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004584 info[INF_COMPRESS_BPS_RATE_LIM] = mkf_u32(FO_CONFIG|FN_LIMIT, global.comp_rate_lim);
4585#ifdef USE_ZLIB
4586 info[INF_ZLIB_MEM_USAGE] = mkf_u32(0, zlib_used_memory);
4587 info[INF_MAX_ZLIB_MEM_USAGE] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxzlibmem);
4588#endif
Willy Tarreau955a11e2021-02-24 17:03:30 +01004589 info[INF_TASKS] = mkf_u32(0, total_allocated_tasks());
Willy Tarreau9c7b8082021-02-24 15:10:07 +01004590 info[INF_RUN_QUEUE] = mkf_u32(0, total_run_queues());
Willy Tarreauf9d5e102021-10-08 10:43:59 +02004591 info[INF_IDLE_PCT] = mkf_u32(FN_AVG, clock_report_idle());
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004592 info[INF_NODE] = mkf_str(FO_CONFIG|FN_OUTPUT|FS_SERVICE, global.node);
4593 if (global.desc)
4594 info[INF_DESCRIPTION] = mkf_str(FO_CONFIG|FN_OUTPUT|FS_SERVICE, global.desc);
Willy Tarreau00098ea2018-11-05 14:38:13 +01004595 info[INF_STOPPING] = mkf_u32(0, stopping);
4596 info[INF_JOBS] = mkf_u32(0, jobs);
William Lallemanda7199262018-11-16 16:57:20 +01004597 info[INF_UNSTOPPABLE_JOBS] = mkf_u32(0, unstoppable_jobs);
Willy Tarreau00098ea2018-11-05 14:38:13 +01004598 info[INF_LISTENERS] = mkf_u32(0, listeners);
Willy Tarreau199ad242018-11-05 16:31:22 +01004599 info[INF_ACTIVE_PEERS] = mkf_u32(0, active_peers);
Willy Tarreau2d372c22018-11-05 17:12:27 +01004600 info[INF_CONNECTED_PEERS] = mkf_u32(0, connected_peers);
Willy Tarreau13ef7732018-11-12 07:25:28 +01004601 info[INF_DROPPED_LOGS] = mkf_u32(0, dropped_logs);
Willy Tarreaubeb859a2018-11-22 18:07:59 +01004602 info[INF_BUSY_POLLING] = mkf_u32(0, !!(global.tune.options & GTUNE_BUSY_POLLING));
Emeric Brund30e9a12020-12-23 18:49:16 +01004603 info[INF_FAILED_RESOLUTIONS] = mkf_u32(0, resolv_failed_resolutions);
Willy Tarreau7cf0e452019-05-23 11:39:14 +02004604 info[INF_TOTAL_BYTES_OUT] = mkf_u64(0, global.out_bytes);
Christopher Fauletaaa70852020-07-10 13:56:30 +02004605 info[INF_TOTAL_SPLICED_BYTES_OUT] = mkf_u64(0, global.spliced_out_bytes);
Willy Tarreau7cf0e452019-05-23 11:39:14 +02004606 info[INF_BYTES_OUT_RATE] = mkf_u64(FN_RATE, (unsigned long long)read_freq_ctr(&global.out_32bps) * 32);
Willy Tarreau9b013702019-10-24 18:18:02 +02004607 info[INF_DEBUG_COMMANDS_ISSUED] = mkf_u32(0, debug_commands_issued);
Emeric Brun45c457a2020-07-09 23:23:34 +02004608 info[INF_CUM_LOG_MSGS] = mkf_u32(FN_COUNTER, cum_log_messages);
Amaury Denoyelle5dfdf3e2021-05-05 17:09:12 +02004609
4610 info[INF_TAINTED] = mkf_str(FO_STATUS, chunk_newstr(out));
4611 chunk_appendf(out, "%#x", get_tainted());
4612
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004613 return 1;
4614}
4615
Willy Tarreau4596fe22022-05-17 19:07:51 +02004616/* This function dumps information onto the stream connector's read buffer.
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004617 * It returns 0 as long as it does not complete, non-zero upon completion.
4618 * No state is used.
4619 */
Willy Tarreaucaff6312022-05-27 10:17:46 +02004620static int stats_dump_info_to_buffer(struct stconn *sc)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004621{
Willy Tarreaucaff6312022-05-27 10:17:46 +02004622 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau91cefca2022-05-03 17:08:29 +02004623 struct show_stat_ctx *ctx = appctx->svcctx;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01004624 int ret;
4625 int current_field;
Christopher Faulet2da02ae2022-02-24 13:45:27 +01004626
Willy Tarreau91cefca2022-05-03 17:08:29 +02004627 if (!stats_fill_info(info, INF_TOTAL_FIELDS, ctx->flags))
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004628 return 0;
4629
Christopher Fauleta8b76842022-12-16 15:08:36 +01004630 chunk_reset(&trash_chunk);
Aurelien DARRAGON55941842022-12-15 14:01:04 +01004631more:
4632 current_field = ctx->field;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004633
Willy Tarreau91cefca2022-05-03 17:08:29 +02004634 if (ctx->flags & STAT_FMT_TYPED)
Christopher Fauleta8b76842022-12-16 15:08:36 +01004635 ret = stats_dump_typed_info_fields(&trash_chunk, info, ctx);
Willy Tarreau91cefca2022-05-03 17:08:29 +02004636 else if (ctx->flags & STAT_FMT_JSON)
Christopher Fauleta8b76842022-12-16 15:08:36 +01004637 ret = stats_dump_json_info_fields(&trash_chunk, info, ctx);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004638 else
Christopher Fauleta8b76842022-12-16 15:08:36 +01004639 ret = stats_dump_info_fields(&trash_chunk, info, ctx);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004640
Christopher Fauleta8b76842022-12-16 15:08:36 +01004641 if (applet_putchk(appctx, &trash_chunk) == -1) {
Aurelien DARRAGON55941842022-12-15 14:01:04 +01004642 /* restore previous field */
4643 ctx->field = current_field;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004644 return 0;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01004645 }
4646 if (ret && ctx->field) {
4647 /* partial dump */
4648 goto more;
4649 }
4650 ctx->field = 0;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004651 return 1;
4652}
4653
Willy Tarreau4596fe22022-05-17 19:07:51 +02004654/* This function dumps the schema onto the stream connector's read buffer.
Simon Horman6f6bb382017-01-04 09:37:26 +01004655 * It returns 0 as long as it does not complete, non-zero upon completion.
4656 * No state is used.
4657 *
Ilya Shipitsinf38a0182020-12-21 01:16:17 +05004658 * Integer values bounded to the range [-(2**53)+1, (2**53)-1] as
Simon Horman6f6bb382017-01-04 09:37:26 +01004659 * per the recommendation for interoperable integers in section 6 of RFC 7159.
4660 */
Willy Tarreau83061a82018-07-13 11:56:34 +02004661static void stats_dump_json_schema(struct buffer *out)
Simon Horman6f6bb382017-01-04 09:37:26 +01004662{
4663
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004664 int old_len = out->data;
Simon Horman6f6bb382017-01-04 09:37:26 +01004665
4666 chunk_strcat(out,
4667 "{"
4668 "\"$schema\":\"http://json-schema.org/draft-04/schema#\","
4669 "\"oneOf\":["
4670 "{"
4671 "\"title\":\"Info\","
4672 "\"type\":\"array\","
4673 "\"items\":{"
Amaury Denoyellea53ce4c2020-10-02 18:31:59 +02004674 "\"title\":\"InfoItem\","
4675 "\"type\":\"object\","
Simon Horman6f6bb382017-01-04 09:37:26 +01004676 "\"properties\":{"
Simon Horman6f6bb382017-01-04 09:37:26 +01004677 "\"field\":{\"$ref\":\"#/definitions/field\"},"
4678 "\"processNum\":{\"$ref\":\"#/definitions/processNum\"},"
4679 "\"tags\":{\"$ref\":\"#/definitions/tags\"},"
4680 "\"value\":{\"$ref\":\"#/definitions/typedValue\"}"
4681 "},"
4682 "\"required\":[\"field\",\"processNum\",\"tags\","
4683 "\"value\"]"
4684 "}"
4685 "},"
4686 "{"
4687 "\"title\":\"Stat\","
4688 "\"type\":\"array\","
4689 "\"items\":{"
4690 "\"title\":\"InfoItem\","
4691 "\"type\":\"object\","
4692 "\"properties\":{"
4693 "\"objType\":{"
4694 "\"enum\":[\"Frontend\",\"Backend\",\"Listener\","
4695 "\"Server\",\"Unknown\"]"
4696 "},"
4697 "\"proxyId\":{"
4698 "\"type\":\"integer\","
4699 "\"minimum\":0"
4700 "},"
4701 "\"id\":{"
4702 "\"type\":\"integer\","
4703 "\"minimum\":0"
4704 "},"
4705 "\"field\":{\"$ref\":\"#/definitions/field\"},"
4706 "\"processNum\":{\"$ref\":\"#/definitions/processNum\"},"
4707 "\"tags\":{\"$ref\":\"#/definitions/tags\"},"
4708 "\"typedValue\":{\"$ref\":\"#/definitions/typedValue\"}"
4709 "},"
4710 "\"required\":[\"objType\",\"proxyId\",\"id\","
4711 "\"field\",\"processNum\",\"tags\","
4712 "\"value\"]"
4713 "}"
4714 "},"
4715 "{"
4716 "\"title\":\"Error\","
4717 "\"type\":\"object\","
4718 "\"properties\":{"
4719 "\"errorStr\":{"
4720 "\"type\":\"string\""
Amaury Denoyellea53ce4c2020-10-02 18:31:59 +02004721 "}"
4722 "},"
4723 "\"required\":[\"errorStr\"]"
Simon Horman6f6bb382017-01-04 09:37:26 +01004724 "}"
4725 "],"
4726 "\"definitions\":{"
4727 "\"field\":{"
4728 "\"type\":\"object\","
4729 "\"pos\":{"
4730 "\"type\":\"integer\","
4731 "\"minimum\":0"
4732 "},"
4733 "\"name\":{"
4734 "\"type\":\"string\""
4735 "},"
4736 "\"required\":[\"pos\",\"name\"]"
4737 "},"
4738 "\"processNum\":{"
4739 "\"type\":\"integer\","
4740 "\"minimum\":1"
4741 "},"
4742 "\"tags\":{"
4743 "\"type\":\"object\","
4744 "\"origin\":{"
4745 "\"type\":\"string\","
4746 "\"enum\":[\"Metric\",\"Status\",\"Key\","
4747 "\"Config\",\"Product\",\"Unknown\"]"
4748 "},"
4749 "\"nature\":{"
4750 "\"type\":\"string\","
4751 "\"enum\":[\"Gauge\",\"Limit\",\"Min\",\"Max\","
4752 "\"Rate\",\"Counter\",\"Duration\","
4753 "\"Age\",\"Time\",\"Name\",\"Output\","
4754 "\"Avg\", \"Unknown\"]"
4755 "},"
4756 "\"scope\":{"
4757 "\"type\":\"string\","
4758 "\"enum\":[\"Cluster\",\"Process\",\"Service\","
4759 "\"System\",\"Unknown\"]"
4760 "},"
4761 "\"required\":[\"origin\",\"nature\",\"scope\"]"
4762 "},"
4763 "\"typedValue\":{"
4764 "\"type\":\"object\","
4765 "\"oneOf\":["
4766 "{\"$ref\":\"#/definitions/typedValue/definitions/s32Value\"},"
4767 "{\"$ref\":\"#/definitions/typedValue/definitions/s64Value\"},"
4768 "{\"$ref\":\"#/definitions/typedValue/definitions/u32Value\"},"
4769 "{\"$ref\":\"#/definitions/typedValue/definitions/u64Value\"},"
4770 "{\"$ref\":\"#/definitions/typedValue/definitions/strValue\"}"
4771 "],"
4772 "\"definitions\":{"
4773 "\"s32Value\":{"
4774 "\"properties\":{"
4775 "\"type\":{"
4776 "\"type\":\"string\","
4777 "\"enum\":[\"s32\"]"
4778 "},"
4779 "\"value\":{"
4780 "\"type\":\"integer\","
4781 "\"minimum\":-2147483648,"
4782 "\"maximum\":2147483647"
4783 "}"
4784 "},"
4785 "\"required\":[\"type\",\"value\"]"
4786 "},"
4787 "\"s64Value\":{"
4788 "\"properties\":{"
4789 "\"type\":{"
4790 "\"type\":\"string\","
4791 "\"enum\":[\"s64\"]"
4792 "},"
4793 "\"value\":{"
4794 "\"type\":\"integer\","
4795 "\"minimum\":-9007199254740991,"
4796 "\"maximum\":9007199254740991"
4797 "}"
4798 "},"
4799 "\"required\":[\"type\",\"value\"]"
4800 "},"
4801 "\"u32Value\":{"
4802 "\"properties\":{"
4803 "\"type\":{"
4804 "\"type\":\"string\","
4805 "\"enum\":[\"u32\"]"
4806 "},"
4807 "\"value\":{"
4808 "\"type\":\"integer\","
4809 "\"minimum\":0,"
4810 "\"maximum\":4294967295"
4811 "}"
4812 "},"
4813 "\"required\":[\"type\",\"value\"]"
4814 "},"
4815 "\"u64Value\":{"
4816 "\"properties\":{"
4817 "\"type\":{"
4818 "\"type\":\"string\","
4819 "\"enum\":[\"u64\"]"
4820 "},"
4821 "\"value\":{"
4822 "\"type\":\"integer\","
4823 "\"minimum\":0,"
4824 "\"maximum\":9007199254740991"
4825 "}"
4826 "},"
4827 "\"required\":[\"type\",\"value\"]"
4828 "},"
4829 "\"strValue\":{"
4830 "\"properties\":{"
4831 "\"type\":{"
4832 "\"type\":\"string\","
4833 "\"enum\":[\"str\"]"
4834 "},"
4835 "\"value\":{\"type\":\"string\"}"
4836 "},"
4837 "\"required\":[\"type\",\"value\"]"
4838 "},"
4839 "\"unknownValue\":{"
4840 "\"properties\":{"
4841 "\"type\":{"
4842 "\"type\":\"integer\","
4843 "\"minimum\":0"
4844 "},"
4845 "\"value\":{"
4846 "\"type\":\"string\","
4847 "\"enum\":[\"unknown\"]"
4848 "}"
4849 "},"
4850 "\"required\":[\"type\",\"value\"]"
4851 "}"
4852 "}"
4853 "}"
4854 "}"
4855 "}");
4856
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004857 if (old_len == out->data) {
Simon Horman6f6bb382017-01-04 09:37:26 +01004858 chunk_reset(out);
4859 chunk_appendf(out,
4860 "{\"errorStr\":\"output buffer too short\"}");
4861 }
Willy Tarreau5a0e7ca2022-06-10 09:21:22 +02004862 chunk_appendf(out, "\n");
Simon Horman6f6bb382017-01-04 09:37:26 +01004863}
4864
Willy Tarreau4596fe22022-05-17 19:07:51 +02004865/* This function dumps the schema onto the stream connector's read buffer.
Simon Horman6f6bb382017-01-04 09:37:26 +01004866 * It returns 0 as long as it does not complete, non-zero upon completion.
4867 * No state is used.
4868 */
Willy Tarreaud0a06d52022-05-18 15:07:19 +02004869static int stats_dump_json_schema_to_buffer(struct appctx *appctx)
Simon Horman6f6bb382017-01-04 09:37:26 +01004870{
Simon Horman6f6bb382017-01-04 09:37:26 +01004871
Christopher Fauleta8b76842022-12-16 15:08:36 +01004872 chunk_reset(&trash_chunk);
Simon Horman6f6bb382017-01-04 09:37:26 +01004873
Christopher Fauleta8b76842022-12-16 15:08:36 +01004874 stats_dump_json_schema(&trash_chunk);
4875
4876 if (applet_putchk(appctx, &trash_chunk) == -1)
Simon Horman6f6bb382017-01-04 09:37:26 +01004877 return 0;
Simon Horman6f6bb382017-01-04 09:37:26 +01004878
4879 return 1;
4880}
4881
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004882static int cli_parse_clear_counters(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau89d467c2016-11-23 11:02:40 +01004883{
4884 struct proxy *px;
4885 struct server *sv;
4886 struct listener *li;
Amaury Denoyelled3700a72020-10-05 11:49:43 +02004887 struct stats_module *mod;
Willy Tarreau89d467c2016-11-23 11:02:40 +01004888 int clrall = 0;
4889
4890 if (strcmp(args[2], "all") == 0)
4891 clrall = 1;
4892
4893 /* check permissions */
4894 if (!cli_has_level(appctx, ACCESS_LVL_OPER) ||
4895 (clrall && !cli_has_level(appctx, ACCESS_LVL_ADMIN)))
4896 return 1;
4897
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004898 for (px = proxies_list; px; px = px->next) {
Willy Tarreau89d467c2016-11-23 11:02:40 +01004899 if (clrall) {
4900 memset(&px->be_counters, 0, sizeof(px->be_counters));
4901 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
4902 }
4903 else {
4904 px->be_counters.conn_max = 0;
4905 px->be_counters.p.http.rps_max = 0;
4906 px->be_counters.sps_max = 0;
4907 px->be_counters.cps_max = 0;
4908 px->be_counters.nbpend_max = 0;
Christopher Fauletefb41f02019-11-08 14:53:15 +01004909 px->be_counters.qtime_max = 0;
4910 px->be_counters.ctime_max = 0;
4911 px->be_counters.dtime_max = 0;
4912 px->be_counters.ttime_max = 0;
Willy Tarreau89d467c2016-11-23 11:02:40 +01004913
4914 px->fe_counters.conn_max = 0;
4915 px->fe_counters.p.http.rps_max = 0;
4916 px->fe_counters.sps_max = 0;
4917 px->fe_counters.cps_max = 0;
Willy Tarreau89d467c2016-11-23 11:02:40 +01004918 }
4919
4920 for (sv = px->srv; sv; sv = sv->next)
4921 if (clrall)
4922 memset(&sv->counters, 0, sizeof(sv->counters));
4923 else {
4924 sv->counters.cur_sess_max = 0;
4925 sv->counters.nbpend_max = 0;
4926 sv->counters.sps_max = 0;
Christopher Fauletefb41f02019-11-08 14:53:15 +01004927 sv->counters.qtime_max = 0;
4928 sv->counters.ctime_max = 0;
4929 sv->counters.dtime_max = 0;
4930 sv->counters.ttime_max = 0;
Willy Tarreau89d467c2016-11-23 11:02:40 +01004931 }
4932
4933 list_for_each_entry(li, &px->conf.listeners, by_fe)
4934 if (li->counters) {
4935 if (clrall)
4936 memset(li->counters, 0, sizeof(*li->counters));
4937 else
4938 li->counters->conn_max = 0;
4939 }
4940 }
4941
4942 global.cps_max = 0;
4943 global.sps_max = 0;
Olivier Houchard00bc3cb2017-10-17 19:23:25 +02004944 global.ssl_max = 0;
4945 global.ssl_fe_keys_max = 0;
4946 global.ssl_be_keys_max = 0;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01004947
Amaury Denoyelled3700a72020-10-05 11:49:43 +02004948 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
4949 if (!mod->clearable && !clrall)
4950 continue;
4951
4952 for (px = proxies_list; px; px = px->next) {
4953 enum stats_domain_px_cap mod_cap = stats_px_get_cap(mod->domain_flags);
4954
4955 if (px->cap & PR_CAP_FE && mod_cap & STATS_PX_CAP_FE) {
4956 EXTRA_COUNTERS_INIT(px->extra_counters_fe,
4957 mod,
4958 mod->counters,
4959 mod->counters_size);
4960 }
4961
4962 if (px->cap & PR_CAP_BE && mod_cap & STATS_PX_CAP_BE) {
4963 EXTRA_COUNTERS_INIT(px->extra_counters_be,
4964 mod,
4965 mod->counters,
4966 mod->counters_size);
4967 }
4968
4969 if (mod_cap & STATS_PX_CAP_SRV) {
4970 for (sv = px->srv; sv; sv = sv->next) {
4971 EXTRA_COUNTERS_INIT(sv->extra_counters,
4972 mod,
4973 mod->counters,
4974 mod->counters_size);
4975 }
4976 }
4977
4978 if (mod_cap & STATS_PX_CAP_LI) {
4979 list_for_each_entry(li, &px->conf.listeners, by_fe) {
4980 EXTRA_COUNTERS_INIT(li->extra_counters,
4981 mod,
4982 mod->counters,
4983 mod->counters_size);
4984 }
4985 }
4986 }
4987 }
4988
Emeric Brunf8642ee2021-10-29 17:59:18 +02004989 resolv_stats_clear_counters(clrall, &stats_module_list[STATS_DOMAIN_RESOLVERS]);
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02004990
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01004991 memset(activity, 0, sizeof(activity));
Willy Tarreau89d467c2016-11-23 11:02:40 +01004992 return 1;
4993}
4994
4995
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004996static int cli_parse_show_info(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004997{
Willy Tarreau91cefca2022-05-03 17:08:29 +02004998 struct show_stat_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Willy Tarreau2f397382019-10-09 11:43:59 +02004999 int arg = 2;
5000
Willy Tarreau91cefca2022-05-03 17:08:29 +02005001 ctx->scope_str = 0;
5002 ctx->scope_len = 0;
5003 ctx->flags = 0;
Aurelien DARRAGON55941842022-12-15 14:01:04 +01005004 ctx->field = 0; /* explicit default value */
Willy Tarreaud25fc792016-12-16 12:33:47 +01005005
Willy Tarreau2f397382019-10-09 11:43:59 +02005006 while (*args[arg]) {
5007 if (strcmp(args[arg], "typed") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005008 ctx->flags = (ctx->flags & ~STAT_FMT_MASK) | STAT_FMT_TYPED;
Willy Tarreau2f397382019-10-09 11:43:59 +02005009 else if (strcmp(args[arg], "json") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005010 ctx->flags = (ctx->flags & ~STAT_FMT_MASK) | STAT_FMT_JSON;
Willy Tarreau2f397382019-10-09 11:43:59 +02005011 else if (strcmp(args[arg], "desc") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005012 ctx->flags |= STAT_SHOW_FDESC;
Willy Tarreau27456202021-05-08 07:54:24 +02005013 else if (strcmp(args[arg], "float") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005014 ctx->flags |= STAT_USE_FLOAT;
Willy Tarreau2f397382019-10-09 11:43:59 +02005015 arg++;
5016 }
Willy Tarreau0baac8c2016-11-22 16:36:53 +01005017 return 0;
5018}
5019
5020
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02005021static int cli_parse_show_stat(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2b812e22016-11-22 16:18:05 +01005022{
Willy Tarreau91cefca2022-05-03 17:08:29 +02005023 struct show_stat_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Willy Tarreau2f397382019-10-09 11:43:59 +02005024 int arg = 2;
5025
Willy Tarreau91cefca2022-05-03 17:08:29 +02005026 ctx->scope_str = 0;
5027 ctx->scope_len = 0;
5028 ctx->flags = STAT_SHNODE | STAT_SHDESC;
Willy Tarreau578d6e42019-10-09 11:00:22 +02005029
Willy Tarreau0698c802022-05-11 14:09:57 +02005030 if ((strm_li(appctx_strm(appctx))->bind_conf->level & ACCESS_LVL_MASK) >= ACCESS_LVL_OPER)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005031 ctx->flags |= STAT_SHLGNDS;
Willy Tarreaud25fc792016-12-16 12:33:47 +01005032
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02005033 /* proxy is the default domain */
Willy Tarreau91cefca2022-05-03 17:08:29 +02005034 ctx->domain = STATS_DOMAIN_PROXY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01005035 if (strcmp(args[arg], "domain") == 0) {
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02005036 ++args;
5037
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01005038 if (strcmp(args[arg], "proxy") == 0) {
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02005039 ++args;
Emeric Brunf8642ee2021-10-29 17:59:18 +02005040 } else if (strcmp(args[arg], "resolvers") == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02005041 ctx->domain = STATS_DOMAIN_RESOLVERS;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005042 ++args;
5043 } else {
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02005044 return cli_err(appctx, "Invalid statistics domain.\n");
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005045 }
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02005046 }
5047
Willy Tarreau91cefca2022-05-03 17:08:29 +02005048 if (ctx->domain == STATS_DOMAIN_PROXY
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02005049 && *args[arg] && *args[arg+1] && *args[arg+2]) {
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01005050 struct proxy *px;
5051
Willy Tarreau2f397382019-10-09 11:43:59 +02005052 px = proxy_find_by_name(args[arg], 0, 0);
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01005053 if (px)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005054 ctx->iid = px->uuid;
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01005055 else
Willy Tarreau91cefca2022-05-03 17:08:29 +02005056 ctx->iid = atoi(args[arg]);
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01005057
Willy Tarreau91cefca2022-05-03 17:08:29 +02005058 if (!ctx->iid)
Willy Tarreau9d008692019-08-09 11:21:01 +02005059 return cli_err(appctx, "No such proxy.\n");
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01005060
Willy Tarreau91cefca2022-05-03 17:08:29 +02005061 ctx->flags |= STAT_BOUND;
5062 ctx->type = atoi(args[arg+1]);
5063 ctx->sid = atoi(args[arg+2]);
Willy Tarreau2f397382019-10-09 11:43:59 +02005064 arg += 3;
5065 }
5066
5067 while (*args[arg]) {
5068 if (strcmp(args[arg], "typed") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005069 ctx->flags = (ctx->flags & ~STAT_FMT_MASK) | STAT_FMT_TYPED;
Willy Tarreau2f397382019-10-09 11:43:59 +02005070 else if (strcmp(args[arg], "json") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005071 ctx->flags = (ctx->flags & ~STAT_FMT_MASK) | STAT_FMT_JSON;
Willy Tarreau2f397382019-10-09 11:43:59 +02005072 else if (strcmp(args[arg], "desc") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005073 ctx->flags |= STAT_SHOW_FDESC;
Willy Tarreau3e320362020-10-23 17:28:57 +02005074 else if (strcmp(args[arg], "no-maint") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005075 ctx->flags |= STAT_HIDE_MAINT;
Willy Tarreau65141ff2020-10-23 17:19:48 +02005076 else if (strcmp(args[arg], "up") == 0)
Willy Tarreau91cefca2022-05-03 17:08:29 +02005077 ctx->flags |= STAT_HIDE_DOWN;
Willy Tarreau2f397382019-10-09 11:43:59 +02005078 arg++;
Willy Tarreau2b812e22016-11-22 16:18:05 +01005079 }
Willy Tarreau2b812e22016-11-22 16:18:05 +01005080
Willy Tarreau2b812e22016-11-22 16:18:05 +01005081 return 0;
5082}
5083
Willy Tarreau0baac8c2016-11-22 16:36:53 +01005084static int cli_io_handler_dump_info(struct appctx *appctx)
5085{
Christopher Fauleta8b76842022-12-16 15:08:36 +01005086 trash_chunk = b_make(trash.area, trash.size, 0, 0);
Willy Tarreauc12b3212022-05-27 11:08:15 +02005087 return stats_dump_info_to_buffer(appctx_sc(appctx));
Willy Tarreau0baac8c2016-11-22 16:36:53 +01005088}
5089
Willy Tarreau4596fe22022-05-17 19:07:51 +02005090/* This I/O handler runs as an applet embedded in a stream connector. It is
Willy Tarreau2b812e22016-11-22 16:18:05 +01005091 * used to send raw stats over a socket.
5092 */
5093static int cli_io_handler_dump_stat(struct appctx *appctx)
5094{
Christopher Fauleta8b76842022-12-16 15:08:36 +01005095 trash_chunk = b_make(trash.area, trash.size, 0, 0);
Willy Tarreauc12b3212022-05-27 11:08:15 +02005096 return stats_dump_stat_to_buffer(appctx_sc(appctx), NULL, NULL);
Willy Tarreau2b812e22016-11-22 16:18:05 +01005097}
5098
Simon Horman6f6bb382017-01-04 09:37:26 +01005099static int cli_io_handler_dump_json_schema(struct appctx *appctx)
5100{
Christopher Fauleta8b76842022-12-16 15:08:36 +01005101 trash_chunk = b_make(trash.area, trash.size, 0, 0);
Willy Tarreaud0a06d52022-05-18 15:07:19 +02005102 return stats_dump_json_schema_to_buffer(appctx);
Simon Horman6f6bb382017-01-04 09:37:26 +01005103}
5104
Amaury Denoyelle216a1ce2021-03-18 15:48:14 +01005105int stats_allocate_proxy_counters_internal(struct extra_counters **counters,
5106 int type, int px_cap)
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005107{
5108 struct stats_module *mod;
5109
5110 EXTRA_COUNTERS_REGISTER(counters, type, alloc_failed);
5111
5112 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
5113 if (!(stats_px_get_cap(mod->domain_flags) & px_cap))
5114 continue;
5115
5116 EXTRA_COUNTERS_ADD(mod, *counters, mod->counters, mod->counters_size);
5117 }
5118
5119 EXTRA_COUNTERS_ALLOC(*counters, alloc_failed);
5120
5121 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
5122 if (!(stats_px_get_cap(mod->domain_flags) & px_cap))
5123 continue;
5124
5125 EXTRA_COUNTERS_INIT(*counters, mod, mod->counters, mod->counters_size);
5126 }
5127
5128 return 1;
5129
5130 alloc_failed:
5131 return 0;
5132}
5133
5134/* Initialize and allocate all extra counters for a proxy and its attached
5135 * servers/listeners with all already registered stats module
5136 */
5137int stats_allocate_proxy_counters(struct proxy *px)
5138{
5139 struct server *sv;
5140 struct listener *li;
5141
5142 if (px->cap & PR_CAP_FE) {
5143 if (!stats_allocate_proxy_counters_internal(&px->extra_counters_fe,
5144 COUNTERS_FE,
5145 STATS_PX_CAP_FE)) {
5146 return 0;
5147 }
5148 }
5149
5150 if (px->cap & PR_CAP_BE) {
5151 if (!stats_allocate_proxy_counters_internal(&px->extra_counters_be,
5152 COUNTERS_BE,
5153 STATS_PX_CAP_BE)) {
5154 return 0;
5155 }
5156 }
5157
5158 for (sv = px->srv; sv; sv = sv->next) {
5159 if (!stats_allocate_proxy_counters_internal(&sv->extra_counters,
5160 COUNTERS_SV,
5161 STATS_PX_CAP_SRV)) {
5162 return 0;
5163 }
5164 }
5165
5166 list_for_each_entry(li, &px->conf.listeners, by_fe) {
5167 if (!stats_allocate_proxy_counters_internal(&li->extra_counters,
5168 COUNTERS_LI,
5169 STATS_PX_CAP_LI)) {
5170 return 0;
5171 }
5172 }
5173
5174 return 1;
5175}
5176
Amaury Denoyelle58d395e2020-10-05 11:49:40 +02005177void stats_register_module(struct stats_module *m)
5178{
5179 const uint8_t domain = stats_get_domain(m->domain_flags);
5180
Willy Tarreau2b718102021-04-21 07:32:39 +02005181 LIST_APPEND(&stats_module_list[domain], &m->list);
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005182 stat_count[domain] += m->stats_count;
Amaury Denoyelle58d395e2020-10-05 11:49:40 +02005183}
5184
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005185static int allocate_stats_px_postcheck(void)
5186{
5187 struct stats_module *mod;
5188 size_t i = ST_F_TOTAL_FIELDS;
5189 int err_code = 0;
Amaury Denoyelle27373f72020-10-05 16:57:33 +02005190 struct proxy *px;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005191
5192 stat_count[STATS_DOMAIN_PROXY] += ST_F_TOTAL_FIELDS;
5193
5194 stat_f[STATS_DOMAIN_PROXY] = malloc(stat_count[STATS_DOMAIN_PROXY] * sizeof(struct name_desc));
5195 if (!stat_f[STATS_DOMAIN_PROXY]) {
5196 ha_alert("stats: cannot allocate all fields for proxy statistics\n");
5197 err_code |= ERR_ALERT | ERR_FATAL;
5198 return err_code;
5199 }
5200
5201 memcpy(stat_f[STATS_DOMAIN_PROXY], stat_fields,
5202 ST_F_TOTAL_FIELDS * sizeof(struct name_desc));
5203
5204 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
5205 memcpy(stat_f[STATS_DOMAIN_PROXY] + i,
5206 mod->stats,
5207 mod->stats_count * sizeof(struct name_desc));
5208 i += mod->stats_count;
5209 }
5210
Amaury Denoyelle27373f72020-10-05 16:57:33 +02005211 for (px = proxies_list; px; px = px->next) {
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005212 if (!stats_allocate_proxy_counters(px)) {
5213 ha_alert("stats: cannot allocate all counters for proxy statistics\n");
5214 err_code |= ERR_ALERT | ERR_FATAL;
5215 return err_code;
5216 }
5217 }
5218
Christopher Fauletde79cd22021-01-06 07:41:56 +01005219 /* wait per-thread alloc to perform corresponding stat_l allocation */
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005220
5221 return err_code;
5222}
5223
5224REGISTER_CONFIG_POSTPARSER("allocate-stats-px", allocate_stats_px_postcheck);
5225
Emeric Brunf8642ee2021-10-29 17:59:18 +02005226static int allocate_stats_rslv_postcheck(void)
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005227{
5228 struct stats_module *mod;
5229 size_t i = 0;
5230 int err_code = 0;
5231
Emeric Brunf8642ee2021-10-29 17:59:18 +02005232 stat_f[STATS_DOMAIN_RESOLVERS] = malloc(stat_count[STATS_DOMAIN_RESOLVERS] * sizeof(struct name_desc));
5233 if (!stat_f[STATS_DOMAIN_RESOLVERS]) {
5234 ha_alert("stats: cannot allocate all fields for resolver statistics\n");
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005235 err_code |= ERR_ALERT | ERR_FATAL;
5236 return err_code;
5237 }
5238
Emeric Brunf8642ee2021-10-29 17:59:18 +02005239 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_RESOLVERS], list) {
5240 memcpy(stat_f[STATS_DOMAIN_RESOLVERS] + i,
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005241 mod->stats,
5242 mod->stats_count * sizeof(struct name_desc));
5243 i += mod->stats_count;
5244 }
5245
Emeric Brunf8642ee2021-10-29 17:59:18 +02005246 if (!resolv_allocate_counters(&stats_module_list[STATS_DOMAIN_RESOLVERS])) {
5247 ha_alert("stats: cannot allocate all counters for resolver statistics\n");
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005248 err_code |= ERR_ALERT | ERR_FATAL;
5249 return err_code;
5250 }
5251
Christopher Fauletde79cd22021-01-06 07:41:56 +01005252 /* wait per-thread alloc to perform corresponding stat_l allocation */
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005253
5254 return err_code;
5255}
5256
Emeric Brunf8642ee2021-10-29 17:59:18 +02005257REGISTER_CONFIG_POSTPARSER("allocate-stats-resolver", allocate_stats_rslv_postcheck);
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005258
Christopher Fauletde79cd22021-01-06 07:41:56 +01005259static int allocate_stat_lines_per_thread(void)
5260{
Emeric Brunf8642ee2021-10-29 17:59:18 +02005261 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
Christopher Fauletde79cd22021-01-06 07:41:56 +01005262
5263 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5264 const int domain = domains[i];
5265
5266 stat_l[domain] = malloc(stat_count[domain] * sizeof(struct field));
5267 if (!stat_l[domain])
5268 return 0;
5269 }
5270 return 1;
5271}
5272
5273REGISTER_PER_THREAD_ALLOC(allocate_stat_lines_per_thread);
5274
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01005275static int allocate_trash_counters(void)
5276{
5277 struct stats_module *mod;
Emeric Brunf8642ee2021-10-29 17:59:18 +02005278 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01005279 size_t max_counters_size = 0;
5280
5281 /* calculate the greatest counters used by any stats modules */
5282 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5283 list_for_each_entry(mod, &stats_module_list[domains[i]], list) {
5284 max_counters_size = mod->counters_size > max_counters_size ?
5285 mod->counters_size : max_counters_size;
5286 }
5287 }
5288
5289 /* allocate the trash with the size of the greatest counters */
5290 if (max_counters_size) {
5291 trash_counters = malloc(max_counters_size);
5292 if (!trash_counters) {
5293 ha_alert("stats: cannot allocate trash counters for statistics\n");
5294 return 0;
5295 }
5296 }
5297
5298 return 1;
5299}
5300
5301REGISTER_PER_THREAD_ALLOC(allocate_trash_counters);
5302
Christopher Fauletde79cd22021-01-06 07:41:56 +01005303static void deinit_stat_lines_per_thread(void)
Amaury Denoyellea2a68992020-11-10 14:24:30 +01005304{
Emeric Brunf8642ee2021-10-29 17:59:18 +02005305 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
Amaury Denoyellea2a68992020-11-10 14:24:30 +01005306
5307 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5308 const int domain = domains[i];
5309
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005310 ha_free(&stat_l[domain]);
Christopher Fauletde79cd22021-01-06 07:41:56 +01005311 }
5312}
5313
5314
5315REGISTER_PER_THREAD_FREE(deinit_stat_lines_per_thread);
5316
5317static void deinit_stats(void)
5318{
Emeric Brunf8642ee2021-10-29 17:59:18 +02005319 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
Christopher Fauletde79cd22021-01-06 07:41:56 +01005320
5321 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5322 const int domain = domains[i];
Amaury Denoyellea2a68992020-11-10 14:24:30 +01005323
5324 if (stat_f[domain])
5325 free(stat_f[domain]);
5326 }
5327}
5328
5329REGISTER_POST_DEINIT(deinit_stats);
5330
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01005331static void free_trash_counters(void)
5332{
5333 if (trash_counters)
5334 free(trash_counters);
5335}
5336
5337REGISTER_PER_THREAD_FREE(free_trash_counters);
5338
Willy Tarreau2b812e22016-11-22 16:18:05 +01005339/* register cli keywords */
5340static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005341 { { "clear", "counters", NULL }, "clear counters [all] : clear max statistics counters (or all counters)", cli_parse_clear_counters, NULL, NULL },
Willy Tarreau27456202021-05-08 07:54:24 +02005342 { { "show", "info", NULL }, "show info [desc|json|typed|float]* : report information about the running process", cli_parse_show_info, cli_io_handler_dump_info, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005343 { { "show", "stat", NULL }, "show stat [desc|json|no-maint|typed|up]*: report counters for each proxy and server", cli_parse_show_stat, cli_io_handler_dump_stat, NULL },
5344 { { "show", "schema", "json", NULL }, "show schema json : report schema used for stats", NULL, cli_io_handler_dump_json_schema, NULL },
Willy Tarreau2b812e22016-11-22 16:18:05 +01005345 {{},}
5346}};
5347
Willy Tarreau0108d902018-11-25 19:14:37 +01005348INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
5349
William Lallemand74c24fb2016-11-21 17:18:36 +01005350struct applet http_stats_applet = {
5351 .obj_type = OBJ_TYPE_APPLET,
5352 .name = "<STATS>", /* used for logging */
5353 .fct = http_stats_io_handler,
5354 .release = NULL,
5355};
5356
William Lallemand74c24fb2016-11-21 17:18:36 +01005357/*
5358 * Local variables:
5359 * c-indent-level: 8
5360 * c-basic-offset: 8
5361 * End:
5362 */