blob: d15ce094d93be5a78bf8a9d9793522d1e11912b4 [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>
16#include <fcntl.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include <pwd.h>
21#include <grp.h>
22
23#include <sys/socket.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020028#include <haproxy/activity.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020029#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020030#include <haproxy/backend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/base64.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020032#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020033#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020034#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020035#include <haproxy/cli.h>
Willy Tarreau55542642021-10-08 09:33:24 +020036#include <haproxy/clock.h>
Willy Tarreau0a3bd392020-06-04 08:52:38 +020037#include <haproxy/compression.h>
Willy Tarreau2a83d602020-05-27 16:58:08 +020038#include <haproxy/debug.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020039#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020040#include <haproxy/fd.h>
41#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020042#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020043#include <haproxy/global.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020044#include <haproxy/http.h>
Willy Tarreaub7fc4c42021-10-06 18:56:42 +020045#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020046#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020047#include <haproxy/htx.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020048#include <haproxy/list.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020049#include <haproxy/listener.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020050#include <haproxy/log.h>
Willy Tarreau2cd58092020-06-04 15:10:43 +020051#include <haproxy/map-t.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020052#include <haproxy/pattern-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020053#include <haproxy/pipe.h>
54#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020055#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010056#include <haproxy/resolvers.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 Tarreaudfd3de82020-06-04 23:46:14 +020060#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020061#include <haproxy/stream_interface.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" },
William Dauchy42d7c402021-11-07 10:18:47 +0100262 [ST_F_AGG_SRV_CHECK_STATUS] = { .name = "agg_server_check_status", .desc = "Backend's aggregated gauge of servers' state check status" },
William Lallemand74c24fb2016-11-21 17:18:36 +0100263};
264
Willy Tarreau0baac8c2016-11-22 16:36:53 +0100265/* one line of info */
William Dauchy5d9b8f32021-01-11 20:07:49 +0100266THREAD_LOCAL struct field info[INF_TOTAL_FIELDS];
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200267
268/* description of statistics (static and dynamic) */
269static struct name_desc *stat_f[STATS_DOMAIN_COUNT];
270static size_t stat_count[STATS_DOMAIN_COUNT];
271
272/* one line for stats */
William Dauchyb9577452021-01-17 18:27:46 +0100273THREAD_LOCAL struct field *stat_l[STATS_DOMAIN_COUNT];
William Lallemand74c24fb2016-11-21 17:18:36 +0100274
Amaury Denoyelle58d395e2020-10-05 11:49:40 +0200275/* list of all registered stats module */
276static struct list stats_module_list[STATS_DOMAIN_COUNT] = {
277 LIST_HEAD_INIT(stats_module_list[STATS_DOMAIN_PROXY]),
Emeric Brunf8642ee2021-10-29 17:59:18 +0200278 LIST_HEAD_INIT(stats_module_list[STATS_DOMAIN_RESOLVERS]),
Amaury Denoyelle58d395e2020-10-05 11:49:40 +0200279};
280
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +0100281THREAD_LOCAL void *trash_counters;
282
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200283static inline uint8_t stats_get_domain(uint32_t domain)
284{
285 return domain >> STATS_DOMAIN & STATS_DOMAIN_MASK;
286}
287
Amaury Denoyelle72b16e52020-10-05 11:49:38 +0200288static inline enum stats_domain_px_cap stats_px_get_cap(uint32_t domain)
289{
290 return domain >> STATS_PX_CAP & STATS_PX_CAP_MASK;
291}
292
Christopher Faulet6338a082019-09-09 15:50:54 +0200293static void stats_dump_json_schema(struct buffer *out);
William Lallemand74c24fb2016-11-21 17:18:36 +0100294
Amaury Denoyelle3ca927e2020-10-02 18:32:00 +0200295int stats_putchk(struct channel *chn, struct htx *htx, struct buffer *chk)
Christopher Fauletef779222018-10-31 08:47:01 +0100296{
297 if (htx) {
Christopher Faulet69fc88c2019-01-07 14:27:53 +0100298 if (chk->data >= channel_htx_recv_max(chn, htx))
299 return 0;
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200300 if (!htx_add_data_atonce(htx, ist2(chk->area, chk->data)))
Christopher Fauletef779222018-10-31 08:47:01 +0100301 return 0;
Christopher Faulet5adbeeb2019-01-02 14:34:39 +0100302 channel_add_input(chn, chk->data);
Christopher Fauletef779222018-10-31 08:47:01 +0100303 chk->data = 0;
Christopher Fauletef779222018-10-31 08:47:01 +0100304 }
305 else {
306 if (ci_putchk(chn, chk) == -1)
307 return 0;
308 }
309 return 1;
310}
Willy Tarreau0baac8c2016-11-22 16:36:53 +0100311
Christopher Fauleted7a0662019-01-14 11:07:34 +0100312static const char *stats_scope_ptr(struct appctx *appctx, struct stream_interface *si)
313{
Christopher Fauletb7f88902019-07-15 21:56:43 +0200314 struct channel *req = si_oc(si);
315 struct htx *htx = htxbuf(&req->buf);
316 struct htx_blk *blk;
317 struct ist uri;
Christopher Fauleted7a0662019-01-14 11:07:34 +0100318
Christopher Fauletb7f88902019-07-15 21:56:43 +0200319 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +0100320 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb7f88902019-07-15 21:56:43 +0200321 ALREADY_CHECKED(blk);
322 uri = htx_sl_req_uri(htx_get_blk_ptr(htx, blk));
323 return uri.ptr + appctx->ctx.stats.scope_str;
Christopher Fauleted7a0662019-01-14 11:07:34 +0100324}
325
William Lallemand74c24fb2016-11-21 17:18:36 +0100326/*
327 * http_stats_io_handler()
328 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
329 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
Simon Horman05ee2132017-01-04 09:37:25 +0100330 * -> stats_dump_json_header() // emits the JSON headers (same as above)
William Lallemand74c24fb2016-11-21 17:18:36 +0100331 * -> stats_dump_html_head() // emits the HTML headers
332 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
333 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
334 * -> stats_dump_html_px_hdr()
335 * -> stats_dump_fe_stats()
336 * -> stats_dump_li_stats()
337 * -> stats_dump_sv_stats()
338 * -> stats_dump_be_stats()
339 * -> stats_dump_html_px_end()
340 * -> stats_dump_html_end() // emits HTML trailer
Simon Horman05ee2132017-01-04 09:37:25 +0100341 * -> stats_dump_json_end() // emits JSON trailer
William Lallemand74c24fb2016-11-21 17:18:36 +0100342 */
343
344
William Lallemand74c24fb2016-11-21 17:18:36 +0100345/* Dumps the stats CSV header to the trash buffer which. The caller is responsible
346 * for clearing it if needed.
347 * NOTE: Some tools happen to rely on the field position instead of its name,
348 * so please only append new fields at the end, never in the middle.
349 */
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200350static void stats_dump_csv_header(enum stats_domain domain)
William Lallemand74c24fb2016-11-21 17:18:36 +0100351{
352 int field;
353
354 chunk_appendf(&trash, "# ");
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200355 if (stat_f[domain]) {
356 for (field = 0; field < stat_count[domain]; ++field) {
357 chunk_appendf(&trash, "%s,", stat_f[domain][field].name);
William Lallemand74c24fb2016-11-21 17:18:36 +0100358
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200359 /* print special delimiter on proxy stats to mark end of
360 static fields */
361 if (domain == STATS_DOMAIN_PROXY && field + 1 == ST_F_TOTAL_FIELDS)
362 chunk_appendf(&trash, "-,");
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200363 }
364 }
365
William Lallemand74c24fb2016-11-21 17:18:36 +0100366 chunk_appendf(&trash, "\n");
367}
368
William Lallemand74c24fb2016-11-21 17:18:36 +0100369/* Emits a stats field without any surrounding element and properly encoded to
370 * resist CSV output. Returns non-zero on success, 0 if the buffer is full.
371 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200372int stats_emit_raw_data_field(struct buffer *out, const struct field *f)
William Lallemand74c24fb2016-11-21 17:18:36 +0100373{
374 switch (field_format(f, 0)) {
375 case FF_EMPTY: return 1;
376 case FF_S32: return chunk_appendf(out, "%d", f->u.s32);
377 case FF_U32: return chunk_appendf(out, "%u", f->u.u32);
378 case FF_S64: return chunk_appendf(out, "%lld", (long long)f->u.s64);
379 case FF_U64: return chunk_appendf(out, "%llu", (unsigned long long)f->u.u64);
Willy Tarreau065ba312021-05-08 10:38:20 +0200380 case FF_FLT: {
381 size_t prev_data = out->data;
382 out->data = flt_trim(out->area, prev_data, chunk_appendf(out, "%f", f->u.flt));
383 return out->data;
384 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100385 case FF_STR: return csv_enc_append(field_str(f, 0), 1, out) != NULL;
386 default: return chunk_appendf(out, "[INCORRECT_FIELD_TYPE_%08x]", f->type);
387 }
388}
389
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200390const char *field_to_html_str(const struct field *f)
391{
392 switch (field_format(f, 0)) {
393 case FF_S32: return U2H(f->u.s32);
394 case FF_S64: return U2H(f->u.s64);
395 case FF_U64: return U2H(f->u.u64);
396 case FF_U32: return U2H(f->u.u32);
Willy Tarreau6004fb72021-05-08 07:37:38 +0200397 case FF_FLT: return F2H(f->u.flt);
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200398 case FF_STR: return field_str(f, 0);
399 case FF_EMPTY:
400 default:
401 return "";
402 }
403}
404
William Lallemand74c24fb2016-11-21 17:18:36 +0100405/* Emits a stats field prefixed with its type. No CSV encoding is prepared, the
406 * output is supposed to be used on its own line. Returns non-zero on success, 0
407 * if the buffer is full.
408 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200409int stats_emit_typed_data_field(struct buffer *out, const struct field *f)
William Lallemand74c24fb2016-11-21 17:18:36 +0100410{
411 switch (field_format(f, 0)) {
412 case FF_EMPTY: return 1;
413 case FF_S32: return chunk_appendf(out, "s32:%d", f->u.s32);
414 case FF_U32: return chunk_appendf(out, "u32:%u", f->u.u32);
415 case FF_S64: return chunk_appendf(out, "s64:%lld", (long long)f->u.s64);
416 case FF_U64: return chunk_appendf(out, "u64:%llu", (unsigned long long)f->u.u64);
Willy Tarreau065ba312021-05-08 10:38:20 +0200417 case FF_FLT: {
418 size_t prev_data = out->data;
419 out->data = flt_trim(out->area, prev_data, chunk_appendf(out, "flt:%f", f->u.flt));
420 return out->data;
421 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100422 case FF_STR: return chunk_appendf(out, "str:%s", field_str(f, 0));
423 default: return chunk_appendf(out, "%08x:?", f->type);
424 }
425}
426
Simon Horman05ee2132017-01-04 09:37:25 +0100427/* Limit JSON integer values to the range [-(2**53)+1, (2**53)-1] as per
428 * the recommendation for interoperable integers in section 6 of RFC 7159.
429 */
430#define JSON_INT_MAX ((1ULL << 53) - 1)
431#define JSON_INT_MIN (0 - JSON_INT_MAX)
432
433/* Emits a stats field value and its type in JSON.
434 * Returns non-zero on success, 0 on error.
435 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200436int stats_emit_json_data_field(struct buffer *out, const struct field *f)
Simon Horman05ee2132017-01-04 09:37:25 +0100437{
438 int old_len;
439 char buf[20];
440 const char *type, *value = buf, *quote = "";
441
442 switch (field_format(f, 0)) {
443 case FF_EMPTY: return 1;
444 case FF_S32: type = "\"s32\"";
445 snprintf(buf, sizeof(buf), "%d", f->u.s32);
446 break;
447 case FF_U32: type = "\"u32\"";
448 snprintf(buf, sizeof(buf), "%u", f->u.u32);
449 break;
450 case FF_S64: type = "\"s64\"";
451 if (f->u.s64 < JSON_INT_MIN || f->u.s64 > JSON_INT_MAX)
452 return 0;
453 type = "\"s64\"";
454 snprintf(buf, sizeof(buf), "%lld", (long long)f->u.s64);
455 break;
456 case FF_U64: if (f->u.u64 > JSON_INT_MAX)
457 return 0;
458 type = "\"u64\"";
459 snprintf(buf, sizeof(buf), "%llu",
460 (unsigned long long) f->u.u64);
Christopher Faulet52c91bb2019-09-28 10:37:31 +0200461 break;
Christopher Faulet88a0db22019-09-24 16:35:10 +0200462 case FF_FLT: type = "\"flt\"";
Willy Tarreau065ba312021-05-08 10:38:20 +0200463 flt_trim(buf, 0, snprintf(buf, sizeof(buf), "%f", f->u.flt));
Simon Horman05ee2132017-01-04 09:37:25 +0100464 break;
465 case FF_STR: type = "\"str\"";
466 value = field_str(f, 0);
467 quote = "\"";
468 break;
469 default: snprintf(buf, sizeof(buf), "%u", f->type);
470 type = buf;
471 value = "unknown";
472 quote = "\"";
473 break;
474 }
475
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200476 old_len = out->data;
Simon Horman05ee2132017-01-04 09:37:25 +0100477 chunk_appendf(out, ",\"value\":{\"type\":%s,\"value\":%s%s%s}",
478 type, quote, value, quote);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200479 return !(old_len == out->data);
Simon Horman05ee2132017-01-04 09:37:25 +0100480}
481
William Lallemand74c24fb2016-11-21 17:18:36 +0100482/* Emits an encoding of the field type on 3 characters followed by a delimiter.
483 * Returns non-zero on success, 0 if the buffer is full.
484 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200485int stats_emit_field_tags(struct buffer *out, const struct field *f,
486 char delim)
William Lallemand74c24fb2016-11-21 17:18:36 +0100487{
488 char origin, nature, scope;
489
490 switch (field_origin(f, 0)) {
491 case FO_METRIC: origin = 'M'; break;
492 case FO_STATUS: origin = 'S'; break;
493 case FO_KEY: origin = 'K'; break;
494 case FO_CONFIG: origin = 'C'; break;
495 case FO_PRODUCT: origin = 'P'; break;
496 default: origin = '?'; break;
497 }
498
499 switch (field_nature(f, 0)) {
500 case FN_GAUGE: nature = 'G'; break;
501 case FN_LIMIT: nature = 'L'; break;
502 case FN_MIN: nature = 'm'; break;
503 case FN_MAX: nature = 'M'; break;
504 case FN_RATE: nature = 'R'; break;
505 case FN_COUNTER: nature = 'C'; break;
506 case FN_DURATION: nature = 'D'; break;
507 case FN_AGE: nature = 'A'; break;
508 case FN_TIME: nature = 'T'; break;
509 case FN_NAME: nature = 'N'; break;
510 case FN_OUTPUT: nature = 'O'; break;
511 case FN_AVG: nature = 'a'; break;
512 default: nature = '?'; break;
513 }
514
515 switch (field_scope(f, 0)) {
516 case FS_PROCESS: scope = 'P'; break;
517 case FS_SERVICE: scope = 'S'; break;
518 case FS_SYSTEM: scope = 's'; break;
519 case FS_CLUSTER: scope = 'C'; break;
520 default: scope = '?'; break;
521 }
522
523 return chunk_appendf(out, "%c%c%c%c", origin, nature, scope, delim);
524}
525
Simon Horman05ee2132017-01-04 09:37:25 +0100526/* Emits an encoding of the field type as JSON.
527 * Returns non-zero on success, 0 if the buffer is full.
528 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200529int stats_emit_json_field_tags(struct buffer *out, const struct field *f)
Simon Horman05ee2132017-01-04 09:37:25 +0100530{
531 const char *origin, *nature, *scope;
532 int old_len;
533
534 switch (field_origin(f, 0)) {
535 case FO_METRIC: origin = "Metric"; break;
536 case FO_STATUS: origin = "Status"; break;
537 case FO_KEY: origin = "Key"; break;
538 case FO_CONFIG: origin = "Config"; break;
539 case FO_PRODUCT: origin = "Product"; break;
540 default: origin = "Unknown"; break;
541 }
542
543 switch (field_nature(f, 0)) {
544 case FN_GAUGE: nature = "Gauge"; break;
545 case FN_LIMIT: nature = "Limit"; break;
546 case FN_MIN: nature = "Min"; break;
547 case FN_MAX: nature = "Max"; break;
548 case FN_RATE: nature = "Rate"; break;
549 case FN_COUNTER: nature = "Counter"; break;
550 case FN_DURATION: nature = "Duration"; break;
551 case FN_AGE: nature = "Age"; break;
552 case FN_TIME: nature = "Time"; break;
553 case FN_NAME: nature = "Name"; break;
554 case FN_OUTPUT: nature = "Output"; break;
555 case FN_AVG: nature = "Avg"; break;
556 default: nature = "Unknown"; break;
557 }
558
559 switch (field_scope(f, 0)) {
560 case FS_PROCESS: scope = "Process"; break;
561 case FS_SERVICE: scope = "Service"; break;
562 case FS_SYSTEM: scope = "System"; break;
563 case FS_CLUSTER: scope = "Cluster"; break;
564 default: scope = "Unknown"; break;
565 }
566
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200567 old_len = out->data;
Simon Horman05ee2132017-01-04 09:37:25 +0100568 chunk_appendf(out, "\"tags\":{"
569 "\"origin\":\"%s\","
570 "\"nature\":\"%s\","
571 "\"scope\":\"%s\""
572 "}", origin, nature, scope);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200573 return !(old_len == out->data);
Simon Horman05ee2132017-01-04 09:37:25 +0100574}
William Lallemand74c24fb2016-11-21 17:18:36 +0100575
576/* Dump all fields from <stats> into <out> using CSV format */
Willy Tarreau83061a82018-07-13 11:56:34 +0200577static int stats_dump_fields_csv(struct buffer *out,
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200578 const struct field *stats, size_t stats_count,
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200579 unsigned int flags,
580 enum stats_domain domain)
William Lallemand74c24fb2016-11-21 17:18:36 +0100581{
582 int field;
583
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200584 for (field = 0; field < stats_count; ++field) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100585 if (!stats_emit_raw_data_field(out, &stats[field]))
586 return 0;
587 if (!chunk_strcat(out, ","))
588 return 0;
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200589
590 /* print special delimiter on proxy stats to mark end of
591 static fields */
592 if (domain == STATS_DOMAIN_PROXY && field + 1 == ST_F_TOTAL_FIELDS) {
593 if (!chunk_strcat(out, "-,"))
594 return 0;
595 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100596 }
Amaury Denoyelle50660a82020-10-05 11:49:39 +0200597
William Lallemand74c24fb2016-11-21 17:18:36 +0100598 chunk_strcat(out, "\n");
599 return 1;
600}
601
602/* Dump all fields from <stats> into <out> using a typed "field:desc:type:value" format */
Willy Tarreau83061a82018-07-13 11:56:34 +0200603static int stats_dump_fields_typed(struct buffer *out,
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200604 const struct field *stats,
605 size_t stats_count,
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200606 unsigned int flags,
607 enum stats_domain domain)
William Lallemand74c24fb2016-11-21 17:18:36 +0100608{
609 int field;
610
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200611 for (field = 0; field < stats_count; ++field) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100612 if (!stats[field].type)
613 continue;
614
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200615 switch (domain) {
616 case STATS_DOMAIN_PROXY:
617 chunk_appendf(out, "%c.%u.%u.%d.%s.%u:",
618 stats[ST_F_TYPE].u.u32 == STATS_TYPE_FE ? 'F' :
619 stats[ST_F_TYPE].u.u32 == STATS_TYPE_BE ? 'B' :
620 stats[ST_F_TYPE].u.u32 == STATS_TYPE_SO ? 'L' :
621 stats[ST_F_TYPE].u.u32 == STATS_TYPE_SV ? 'S' :
622 '?',
623 stats[ST_F_IID].u.u32, stats[ST_F_SID].u.u32,
624 field,
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200625 stat_f[domain][field].name,
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200626 stats[ST_F_PID].u.u32);
627 break;
628
Emeric Brunf8642ee2021-10-29 17:59:18 +0200629 case STATS_DOMAIN_RESOLVERS:
630 chunk_appendf(out, "N.%d.%s:", field,
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +0200631 stat_f[domain][field].name);
632 break;
633
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200634 default:
635 break;
636 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100637
638 if (!stats_emit_field_tags(out, &stats[field], ':'))
639 return 0;
640 if (!stats_emit_typed_data_field(out, &stats[field]))
641 return 0;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200642
Willy Tarreaufc8e4382021-06-17 07:22:27 +0200643 if (flags & STAT_SHOW_FDESC &&
644 !chunk_appendf(out, ":\"%s\"", stat_f[domain][field].desc)) {
Willy Tarreau6b19b142019-10-09 15:44:21 +0200645 return 0;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200646 }
647
William Lallemand74c24fb2016-11-21 17:18:36 +0100648 if (!chunk_strcat(out, "\n"))
649 return 0;
650 }
651 return 1;
652}
653
Simon Horman05ee2132017-01-04 09:37:25 +0100654/* Dump all fields from <stats> into <out> using the "show info json" format */
Willy Tarreau83061a82018-07-13 11:56:34 +0200655static int stats_dump_json_info_fields(struct buffer *out,
Willy Tarreau43241ff2019-10-09 11:27:51 +0200656 const struct field *info, unsigned int flags)
Simon Horman05ee2132017-01-04 09:37:25 +0100657{
658 int field;
659 int started = 0;
660
661 if (!chunk_strcat(out, "["))
662 return 0;
663
664 for (field = 0; field < INF_TOTAL_FIELDS; field++) {
665 int old_len;
666
667 if (!field_format(info, field))
668 continue;
669
670 if (started && !chunk_strcat(out, ","))
671 goto err;
672 started = 1;
673
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200674 old_len = out->data;
Simon Horman05ee2132017-01-04 09:37:25 +0100675 chunk_appendf(out,
676 "{\"field\":{\"pos\":%d,\"name\":\"%s\"},"
677 "\"processNum\":%u,",
Willy Tarreaueaa55372019-10-09 07:39:11 +0200678 field, info_fields[field].name,
Simon Horman05ee2132017-01-04 09:37:25 +0100679 info[INF_PROCESS_NUM].u.u32);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200680 if (old_len == out->data)
Simon Horman05ee2132017-01-04 09:37:25 +0100681 goto err;
682
683 if (!stats_emit_json_field_tags(out, &info[field]))
684 goto err;
685
686 if (!stats_emit_json_data_field(out, &info[field]))
687 goto err;
688
689 if (!chunk_strcat(out, "}"))
690 goto err;
691 }
692
693 if (!chunk_strcat(out, "]"))
694 goto err;
695 return 1;
696
697err:
698 chunk_reset(out);
699 chunk_appendf(out, "{\"errorStr\":\"output buffer too short\"}");
700 return 0;
701}
702
Amaury Denoyellef34017b2020-10-02 18:32:03 +0200703static void stats_print_proxy_field_json(struct buffer *out,
704 const struct field *stat,
705 const char *name,
706 int pos,
707 uint32_t field_type,
708 uint32_t iid,
709 uint32_t sid,
710 uint32_t pid)
711{
712 const char *obj_type;
713 switch (field_type) {
714 case STATS_TYPE_FE: obj_type = "Frontend"; break;
715 case STATS_TYPE_BE: obj_type = "Backend"; break;
716 case STATS_TYPE_SO: obj_type = "Listener"; break;
717 case STATS_TYPE_SV: obj_type = "Server"; break;
718 default: obj_type = "Unknown"; break;
719 }
720
721 chunk_appendf(out,
722 "{"
723 "\"objType\":\"%s\","
724 "\"proxyId\":%u,"
725 "\"id\":%u,"
726 "\"field\":{\"pos\":%d,\"name\":\"%s\"},"
727 "\"processNum\":%u,",
728 obj_type, iid, sid, pos, name, pid);
729}
730
Emeric Brunf8642ee2021-10-29 17:59:18 +0200731static void stats_print_rslv_field_json(struct buffer *out,
732 const struct field *stat,
733 const char *name,
734 int pos)
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +0200735{
736 chunk_appendf(out,
737 "{"
738 "\"field\":{\"pos\":%d,\"name\":\"%s\"},",
739 pos, name);
740}
741
742
Simon Horman05ee2132017-01-04 09:37:25 +0100743/* Dump all fields from <stats> into <out> using a typed "field:desc:type:value" format */
Willy Tarreau83061a82018-07-13 11:56:34 +0200744static int stats_dump_fields_json(struct buffer *out,
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200745 const struct field *stats, size_t stats_count,
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200746 unsigned int flags,
747 enum stats_domain domain)
Simon Horman05ee2132017-01-04 09:37:25 +0100748{
749 int field;
750 int started = 0;
751
Willy Tarreaub0ce3ad2019-10-09 11:19:29 +0200752 if ((flags & STAT_STARTED) && !chunk_strcat(out, ","))
Simon Horman05ee2132017-01-04 09:37:25 +0100753 return 0;
754 if (!chunk_strcat(out, "["))
755 return 0;
756
Amaury Denoyelle97323c92020-10-02 18:32:01 +0200757 for (field = 0; field < stats_count; field++) {
Simon Horman05ee2132017-01-04 09:37:25 +0100758 int old_len;
759
760 if (!stats[field].type)
761 continue;
762
763 if (started && !chunk_strcat(out, ","))
764 goto err;
765 started = 1;
766
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200767 old_len = out->data;
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200768 if (domain == STATS_DOMAIN_PROXY) {
769 stats_print_proxy_field_json(out, &stats[field],
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200770 stat_f[domain][field].name,
771 field,
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200772 stats[ST_F_TYPE].u.u32,
773 stats[ST_F_IID].u.u32,
774 stats[ST_F_SID].u.u32,
775 stats[ST_F_PID].u.u32);
Emeric Brunf8642ee2021-10-29 17:59:18 +0200776 } else if (domain == STATS_DOMAIN_RESOLVERS) {
777 stats_print_rslv_field_json(out, &stats[field],
778 stat_f[domain][field].name,
779 field);
Amaury Denoyelle072f97e2020-10-05 11:49:37 +0200780 }
Amaury Denoyellef34017b2020-10-02 18:32:03 +0200781
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200782 if (old_len == out->data)
Simon Horman05ee2132017-01-04 09:37:25 +0100783 goto err;
784
785 if (!stats_emit_json_field_tags(out, &stats[field]))
786 goto err;
787
788 if (!stats_emit_json_data_field(out, &stats[field]))
789 goto err;
790
791 if (!chunk_strcat(out, "}"))
792 goto err;
793 }
794
795 if (!chunk_strcat(out, "]"))
796 goto err;
797
798 return 1;
799
800err:
801 chunk_reset(out);
Willy Tarreaub0ce3ad2019-10-09 11:19:29 +0200802 if (flags & STAT_STARTED)
803 chunk_strcat(out, ",");
Simon Horman05ee2132017-01-04 09:37:25 +0100804 chunk_appendf(out, "{\"errorStr\":\"output buffer too short\"}");
805 return 0;
806}
807
William Lallemand74c24fb2016-11-21 17:18:36 +0100808/* Dump all fields from <stats> into <out> using the HTML format. A column is
Willy Tarreauab02b3f2019-10-09 11:11:46 +0200809 * reserved for the checkbox is STAT_ADMIN is set in <flags>. Some extra info
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +0200810 * are provided if STAT_SHLGNDS is present in <flags>. The statistics from
811 * extra modules are displayed at the end of the lines if STAT_SHMODULES is
812 * present in <flags>.
William Lallemand74c24fb2016-11-21 17:18:36 +0100813 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200814static int stats_dump_fields_html(struct buffer *out,
815 const struct field *stats,
816 unsigned int flags)
William Lallemand74c24fb2016-11-21 17:18:36 +0100817{
Willy Tarreau83061a82018-07-13 11:56:34 +0200818 struct buffer src;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200819 struct stats_module *mod;
820 int i = 0, j = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100821
822 if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_FE) {
823 chunk_appendf(out,
824 /* name, queue */
825 "<tr class=\"frontend\">");
826
Willy Tarreauab02b3f2019-10-09 11:11:46 +0200827 if (flags & STAT_ADMIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100828 /* Column sub-heading for Enable or Disable server */
829 chunk_appendf(out, "<td></td>");
830 }
831
832 chunk_appendf(out,
833 "<td class=ac>"
834 "<a name=\"%s/Frontend\"></a>"
835 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
836 "<td colspan=3></td>"
837 "",
838 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_PXNAME));
839
840 chunk_appendf(out,
841 /* sessions rate : current */
842 "<td><u>%s<div class=tips><table class=det>"
843 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
844 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
845 "",
846 U2H(stats[ST_F_RATE].u.u32),
847 U2H(stats[ST_F_CONN_RATE].u.u32),
848 U2H(stats[ST_F_RATE].u.u32));
849
850 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
851 chunk_appendf(out,
852 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
853 U2H(stats[ST_F_REQ_RATE].u.u32));
854
855 chunk_appendf(out,
856 "</table></div></u></td>"
857 /* sessions rate : max */
858 "<td><u>%s<div class=tips><table class=det>"
859 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
860 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
861 "",
862 U2H(stats[ST_F_RATE_MAX].u.u32),
863 U2H(stats[ST_F_CONN_RATE_MAX].u.u32),
864 U2H(stats[ST_F_RATE_MAX].u.u32));
865
866 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
867 chunk_appendf(out,
868 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
869 U2H(stats[ST_F_REQ_RATE_MAX].u.u32));
870
871 chunk_appendf(out,
872 "</table></div></u></td>"
873 /* sessions rate : limit */
874 "<td>%s</td>",
875 LIM2A(stats[ST_F_RATE_LIM].u.u32, "-"));
876
877 chunk_appendf(out,
878 /* sessions: current, max, limit, total */
879 "<td>%s</td><td>%s</td><td>%s</td>"
880 "<td><u>%s<div class=tips><table class=det>"
881 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
882 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
883 "",
884 U2H(stats[ST_F_SCUR].u.u32), U2H(stats[ST_F_SMAX].u.u32), U2H(stats[ST_F_SLIM].u.u32),
885 U2H(stats[ST_F_STOT].u.u64),
886 U2H(stats[ST_F_CONN_TOT].u.u64),
887 U2H(stats[ST_F_STOT].u.u64));
888
889 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
890 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
891 chunk_appendf(out,
892 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
893 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
894 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
895 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
896 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
897 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
898 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
899 "<tr><th>- other responses:</th><td>%s</td></tr>"
900 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
Willy Tarreaua1214a52018-12-14 14:00:25 +0100901 "<tr><th>Cache lookups:</th><td>%s</td></tr>"
902 "<tr><th>Cache hits:</th><td>%s</td><td>(%d%%)</td></tr>"
Willy Tarreau1b0f85e2018-05-28 15:12:40 +0200903 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
Christopher Faulet0159ee42019-12-16 14:40:39 +0100904 "<tr><th>Internal errors:</th><td>%s</td></tr>"
William Lallemand74c24fb2016-11-21 17:18:36 +0100905 "",
906 U2H(stats[ST_F_REQ_TOT].u.u64),
907 U2H(stats[ST_F_HRSP_1XX].u.u64),
908 U2H(stats[ST_F_HRSP_2XX].u.u64),
909 U2H(stats[ST_F_COMP_RSP].u.u64),
910 stats[ST_F_HRSP_2XX].u.u64 ?
911 (int)(100 * stats[ST_F_COMP_RSP].u.u64 / stats[ST_F_HRSP_2XX].u.u64) : 0,
912 U2H(stats[ST_F_HRSP_3XX].u.u64),
913 U2H(stats[ST_F_HRSP_4XX].u.u64),
914 U2H(stats[ST_F_HRSP_5XX].u.u64),
915 U2H(stats[ST_F_HRSP_OTHER].u.u64),
Willy Tarreau1b0f85e2018-05-28 15:12:40 +0200916 U2H(stats[ST_F_INTERCEPTED].u.u64),
Willy Tarreaua1214a52018-12-14 14:00:25 +0100917 U2H(stats[ST_F_CACHE_LOOKUPS].u.u64),
918 U2H(stats[ST_F_CACHE_HITS].u.u64),
919 stats[ST_F_CACHE_LOOKUPS].u.u64 ?
920 (int)(100 * stats[ST_F_CACHE_HITS].u.u64 / stats[ST_F_CACHE_LOOKUPS].u.u64) : 0,
Christopher Faulet0159ee42019-12-16 14:40:39 +0100921 U2H(stats[ST_F_WREW].u.u64),
922 U2H(stats[ST_F_EINT].u.u64));
William Lallemand74c24fb2016-11-21 17:18:36 +0100923 }
924
925 chunk_appendf(out,
926 "</table></div></u></td>"
927 /* sessions: lbtot, lastsess */
928 "<td></td><td></td>"
929 /* bytes : in */
930 "<td>%s</td>"
931 "",
932 U2H(stats[ST_F_BIN].u.u64));
933
934 chunk_appendf(out,
935 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
936 "<td>%s%s<div class=tips><table class=det>"
937 "<tr><th>Response bytes in:</th><td>%s</td></tr>"
938 "<tr><th>Compression in:</th><td>%s</td></tr>"
939 "<tr><th>Compression out:</th><td>%s</td><td>(%d%%)</td></tr>"
940 "<tr><th>Compression bypass:</th><td>%s</td></tr>"
941 "<tr><th>Total bytes saved:</th><td>%s</td><td>(%d%%)</td></tr>"
942 "</table></div>%s</td>",
943 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "<u>":"",
944 U2H(stats[ST_F_BOUT].u.u64),
945 U2H(stats[ST_F_BOUT].u.u64),
946 U2H(stats[ST_F_COMP_IN].u.u64),
947 U2H(stats[ST_F_COMP_OUT].u.u64),
948 stats[ST_F_COMP_IN].u.u64 ? (int)(stats[ST_F_COMP_OUT].u.u64 * 100 / stats[ST_F_COMP_IN].u.u64) : 0,
949 U2H(stats[ST_F_COMP_BYP].u.u64),
950 U2H(stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64),
951 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,
952 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "</u>":"");
953
954 chunk_appendf(out,
955 /* denied: req, resp */
956 "<td>%s</td><td>%s</td>"
957 /* errors : request, connect, response */
958 "<td>%s</td><td></td><td></td>"
959 /* warnings: retries, redispatches */
960 "<td></td><td></td>"
961 /* server status : reflect frontend status */
962 "<td class=ac>%s</td>"
963 /* rest of server: nothing */
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200964 "<td class=ac colspan=8></td>"
William Lallemand74c24fb2016-11-21 17:18:36 +0100965 "",
966 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
967 U2H(stats[ST_F_EREQ].u.u64),
968 field_str(stats, ST_F_STATUS));
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200969
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +0200970 if (flags & STAT_SHMODULES) {
971 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +0100972 chunk_appendf(out, "<td>");
973
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +0200974 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_FE) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +0100975 chunk_appendf(out,
976 "<u>%s<div class=tips><table class=det>",
977 mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +0200978 for (j = 0; j < mod->stats_count; ++j) {
979 chunk_appendf(out,
980 "<tr><th>%s</th><td>%s</td></tr>",
981 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
982 ++i;
983 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +0100984 chunk_appendf(out, "</table></div></u>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +0200985 } else {
986 i += mod->stats_count;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200987 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200988
Amaury Denoyellee6ee8202020-11-03 15:04:46 +0100989 chunk_appendf(out, "</td>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +0200990 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +0200991 }
992
993 chunk_appendf(out, "</tr>");
William Lallemand74c24fb2016-11-21 17:18:36 +0100994 }
995 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_SO) {
996 chunk_appendf(out, "<tr class=socket>");
Willy Tarreauab02b3f2019-10-09 11:11:46 +0200997 if (flags & STAT_ADMIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100998 /* Column sub-heading for Enable or Disable server */
999 chunk_appendf(out, "<td></td>");
1000 }
1001
1002 chunk_appendf(out,
1003 /* frontend name, listener name */
1004 "<td class=ac><a name=\"%s/+%s\"></a>%s"
1005 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
1006 "",
1007 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME),
Willy Tarreau708c4162019-10-09 10:19:16 +02001008 (flags & STAT_SHLGNDS)?"<u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01001009 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME), field_str(stats, ST_F_SVNAME));
1010
Willy Tarreau708c4162019-10-09 10:19:16 +02001011 if (flags & STAT_SHLGNDS) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001012 chunk_appendf(out, "<div class=tips>");
1013
Willy Tarreau90807112020-02-25 08:16:33 +01001014 if (isdigit((unsigned char)*field_str(stats, ST_F_ADDR)))
William Lallemand74c24fb2016-11-21 17:18:36 +01001015 chunk_appendf(out, "IPv4: %s, ", field_str(stats, ST_F_ADDR));
1016 else if (*field_str(stats, ST_F_ADDR) == '[')
1017 chunk_appendf(out, "IPv6: %s, ", field_str(stats, ST_F_ADDR));
1018 else if (*field_str(stats, ST_F_ADDR))
1019 chunk_appendf(out, "%s, ", field_str(stats, ST_F_ADDR));
1020
1021 /* id */
1022 chunk_appendf(out, "id: %d</div>", stats[ST_F_SID].u.u32);
1023 }
1024
1025 chunk_appendf(out,
1026 /* queue */
1027 "%s</td><td colspan=3></td>"
1028 /* sessions rate: current, max, limit */
1029 "<td colspan=3>&nbsp;</td>"
1030 /* sessions: current, max, limit, total, lbtot, lastsess */
1031 "<td>%s</td><td>%s</td><td>%s</td>"
1032 "<td>%s</td><td>&nbsp;</td><td>&nbsp;</td>"
1033 /* bytes: in, out */
1034 "<td>%s</td><td>%s</td>"
1035 "",
Willy Tarreau708c4162019-10-09 10:19:16 +02001036 (flags & STAT_SHLGNDS)?"</u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01001037 U2H(stats[ST_F_SCUR].u.u32), U2H(stats[ST_F_SMAX].u.u32), U2H(stats[ST_F_SLIM].u.u32),
1038 U2H(stats[ST_F_STOT].u.u64), U2H(stats[ST_F_BIN].u.u64), U2H(stats[ST_F_BOUT].u.u64));
1039
1040 chunk_appendf(out,
1041 /* denied: req, resp */
1042 "<td>%s</td><td>%s</td>"
1043 /* errors: request, connect, response */
1044 "<td>%s</td><td></td><td></td>"
1045 /* warnings: retries, redispatches */
1046 "<td></td><td></td>"
1047 /* server status: reflect listener status */
1048 "<td class=ac>%s</td>"
1049 /* rest of server: nothing */
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001050 "<td class=ac colspan=8></td>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001051 "",
1052 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
1053 U2H(stats[ST_F_EREQ].u.u64),
1054 field_str(stats, ST_F_STATUS));
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001055
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001056 if (flags & STAT_SHMODULES) {
1057 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001058 chunk_appendf(out, "<td>");
1059
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001060 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_LI) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001061 chunk_appendf(out,
1062 "<u>%s<div class=tips><table class=det>",
1063 mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001064 for (j = 0; j < mod->stats_count; ++j) {
1065 chunk_appendf(out,
1066 "<tr><th>%s</th><td>%s</td></tr>",
1067 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1068 ++i;
1069 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001070 chunk_appendf(out, "</table></div></u>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001071 } else {
1072 i += mod->stats_count;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001073 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001074
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001075 chunk_appendf(out, "</td>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001076 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001077 }
1078
1079 chunk_appendf(out, "</tr>");
William Lallemand74c24fb2016-11-21 17:18:36 +01001080 }
1081 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_SV) {
1082 const char *style;
1083
1084 /* determine the style to use depending on the server's state,
1085 * its health and weight. There isn't a 1-to-1 mapping between
1086 * state and styles for the cases where the server is (still)
1087 * up. The reason is that we don't want to report nolb and
1088 * drain with the same color.
1089 */
1090
1091 if (strcmp(field_str(stats, ST_F_STATUS), "DOWN") == 0 ||
1092 strcmp(field_str(stats, ST_F_STATUS), "DOWN (agent)") == 0) {
1093 style = "down";
1094 }
Florian Apolloner39272c22021-03-30 13:28:35 +02001095 else if (strncmp(field_str(stats, ST_F_STATUS), "DOWN ", strlen("DOWN ")) == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001096 style = "going_up";
1097 }
Daniel Corbettb4285172020-03-28 12:35:50 -04001098 else if (strcmp(field_str(stats, ST_F_STATUS), "DRAIN") == 0) {
1099 style = "draining";
1100 }
Florian Apolloner39272c22021-03-30 13:28:35 +02001101 else if (strncmp(field_str(stats, ST_F_STATUS), "NOLB ", strlen("NOLB ")) == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001102 style = "going_down";
1103 }
1104 else if (strcmp(field_str(stats, ST_F_STATUS), "NOLB") == 0) {
1105 style = "nolb";
1106 }
1107 else if (strcmp(field_str(stats, ST_F_STATUS), "no check") == 0) {
1108 style = "no_check";
1109 }
1110 else if (!stats[ST_F_CHKFAIL].type ||
1111 stats[ST_F_CHECK_HEALTH].u.u32 == stats[ST_F_CHECK_RISE].u.u32 + stats[ST_F_CHECK_FALL].u.u32 - 1) {
1112 /* no check or max health = UP */
1113 if (stats[ST_F_WEIGHT].u.u32)
1114 style = "up";
1115 else
1116 style = "draining";
1117 }
1118 else {
1119 style = "going_down";
1120 }
1121
Willy Tarreau7b524852020-08-11 10:26:36 +02001122 if (strncmp(field_str(stats, ST_F_STATUS), "MAINT", 5) == 0)
William Lallemand74c24fb2016-11-21 17:18:36 +01001123 chunk_appendf(out, "<tr class=\"maintain\">");
1124 else
1125 chunk_appendf(out,
1126 "<tr class=\"%s_%s\">",
1127 (stats[ST_F_BCK].u.u32) ? "backup" : "active", style);
1128
1129
Willy Tarreauab02b3f2019-10-09 11:11:46 +02001130 if (flags & STAT_ADMIN)
William Lallemand74c24fb2016-11-21 17:18:36 +01001131 chunk_appendf(out,
David Harrigand3db35a2016-12-30 12:12:49 +00001132 "<td><input class='%s-checkbox' type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
1133 field_str(stats, ST_F_PXNAME),
William Lallemand74c24fb2016-11-21 17:18:36 +01001134 field_str(stats, ST_F_SVNAME));
1135
1136 chunk_appendf(out,
1137 "<td class=ac><a name=\"%s/%s\"></a>%s"
1138 "<a class=lfsb href=\"#%s/%s\">%s</a>"
1139 "",
1140 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME),
Willy Tarreau708c4162019-10-09 10:19:16 +02001141 (flags & STAT_SHLGNDS) ? "<u>" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01001142 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME), field_str(stats, ST_F_SVNAME));
1143
Willy Tarreau708c4162019-10-09 10:19:16 +02001144 if (flags & STAT_SHLGNDS) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001145 chunk_appendf(out, "<div class=tips>");
1146
Willy Tarreau90807112020-02-25 08:16:33 +01001147 if (isdigit((unsigned char)*field_str(stats, ST_F_ADDR)))
William Lallemand74c24fb2016-11-21 17:18:36 +01001148 chunk_appendf(out, "IPv4: %s, ", field_str(stats, ST_F_ADDR));
1149 else if (*field_str(stats, ST_F_ADDR) == '[')
1150 chunk_appendf(out, "IPv6: %s, ", field_str(stats, ST_F_ADDR));
1151 else if (*field_str(stats, ST_F_ADDR))
1152 chunk_appendf(out, "%s, ", field_str(stats, ST_F_ADDR));
1153
1154 /* id */
1155 chunk_appendf(out, "id: %d", stats[ST_F_SID].u.u32);
1156
1157 /* cookie */
1158 if (stats[ST_F_COOKIE].type) {
1159 chunk_appendf(out, ", cookie: '");
1160 chunk_initstr(&src, field_str(stats, ST_F_COOKIE));
1161 chunk_htmlencode(out, &src);
1162 chunk_appendf(out, "'");
1163 }
1164
1165 chunk_appendf(out, "</div>");
1166 }
1167
1168 chunk_appendf(out,
1169 /* queue : current, max, limit */
1170 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
1171 /* sessions rate : current, max, limit */
1172 "<td>%s</td><td>%s</td><td></td>"
1173 "",
Willy Tarreau708c4162019-10-09 10:19:16 +02001174 (flags & STAT_SHLGNDS) ? "</u>" : "",
William Lallemand74c24fb2016-11-21 17:18:36 +01001175 U2H(stats[ST_F_QCUR].u.u32), U2H(stats[ST_F_QMAX].u.u32), LIM2A(stats[ST_F_QLIMIT].u.u32, "-"),
1176 U2H(stats[ST_F_RATE].u.u32), U2H(stats[ST_F_RATE_MAX].u.u32));
1177
1178 chunk_appendf(out,
1179 /* sessions: current, max, limit, total */
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001180 "<td><u>%s<div class=tips>"
1181 "<table class=det>"
1182 "<tr><th>Current active connections:</th><td>%s</td></tr>"
Willy Tarreau3bb617c2020-06-29 13:51:05 +02001183 "<tr><th>Current used connections:</th><td>%s</td></tr>"
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001184 "<tr><th>Current idle connections:</th><td>%s</td></tr>"
Willy Tarreau3bb617c2020-06-29 13:51:05 +02001185 "<tr><th>- unsafe:</th><td>%s</td></tr>"
1186 "<tr><th>- safe:</th><td>%s</td></tr>"
Willy Tarreaua9fcecb2020-06-29 15:38:53 +02001187 "<tr><th>Estimated need of connections:</th><td>%s</td></tr>"
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001188 "<tr><th>Active connections limit:</th><td>%s</td></tr>"
1189 "<tr><th>Idle connections limit:</th><td>%s</td></tr>"
1190 "</table></div></u>"
1191 "</td><td>%s</td><td>%s</td>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001192 "<td><u>%s<div class=tips><table class=det>"
1193 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
1194 "",
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001195 U2H(stats[ST_F_SCUR].u.u32),
Willy Tarreau3bb617c2020-06-29 13:51:05 +02001196 U2H(stats[ST_F_SCUR].u.u32),
1197 U2H(stats[ST_F_USED_CONN_CUR].u.u32),
1198 U2H(stats[ST_F_SRV_ICUR].u.u32),
1199 U2H(stats[ST_F_IDLE_CONN_CUR].u.u32),
1200 U2H(stats[ST_F_SAFE_CONN_CUR].u.u32),
Willy Tarreaua9fcecb2020-06-29 15:38:53 +02001201 U2H(stats[ST_F_NEED_CONN_EST].u.u32),
Willy Tarreau3bb617c2020-06-29 13:51:05 +02001202
Willy Tarreauf21d17b2019-09-08 09:24:56 +02001203 LIM2A(stats[ST_F_SLIM].u.u32, "-"),
1204 stats[ST_F_SRV_ILIM].type ? U2H(stats[ST_F_SRV_ILIM].u.u32) : "-",
1205 U2H(stats[ST_F_SMAX].u.u32), LIM2A(stats[ST_F_SLIM].u.u32, "-"),
William Lallemand74c24fb2016-11-21 17:18:36 +01001206 U2H(stats[ST_F_STOT].u.u64),
1207 U2H(stats[ST_F_STOT].u.u64));
1208
1209 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1210 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001211 chunk_appendf(out,
Willy Tarreauf1573842018-12-14 11:35:36 +01001212 "<tr><th>New connections:</th><td>%s</td></tr>"
1213 "<tr><th>Reused connections:</th><td>%s</td><td>(%d%%)</td></tr>"
Marcin Deranek3c27dda2020-05-15 18:32:51 +02001214 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001215 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1216 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1217 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1218 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1219 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1220 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
Willy Tarreau1b0f85e2018-05-28 15:12:40 +02001221 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
Christopher Faulet0159ee42019-12-16 14:40:39 +01001222 "<tr><th>Internal error:</th><td>%s</td></tr>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001223 "",
Willy Tarreauf1573842018-12-14 11:35:36 +01001224 U2H(stats[ST_F_CONNECT].u.u64),
1225 U2H(stats[ST_F_REUSE].u.u64),
1226 (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64) ?
1227 (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 +02001228 U2H(stats[ST_F_REQ_TOT].u.u64),
1229 U2H(stats[ST_F_HRSP_1XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1230 (int)(100 * stats[ST_F_HRSP_1XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1231 U2H(stats[ST_F_HRSP_2XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1232 (int)(100 * stats[ST_F_HRSP_2XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1233 U2H(stats[ST_F_HRSP_3XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1234 (int)(100 * stats[ST_F_HRSP_3XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1235 U2H(stats[ST_F_HRSP_4XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1236 (int)(100 * stats[ST_F_HRSP_4XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1237 U2H(stats[ST_F_HRSP_5XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1238 (int)(100 * stats[ST_F_HRSP_5XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1239 U2H(stats[ST_F_HRSP_OTHER].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1240 (int)(100 * stats[ST_F_HRSP_OTHER].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
Christopher Faulet0159ee42019-12-16 14:40:39 +01001241 U2H(stats[ST_F_WREW].u.u64),
1242 U2H(stats[ST_F_EINT].u.u64));
William Lallemand74c24fb2016-11-21 17:18:36 +01001243 }
1244
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001245 chunk_appendf(out, "<tr><th colspan=3>Max / Avg over last 1024 success. conn.</th></tr>");
1246 chunk_appendf(out, "<tr><th>- Queue time:</th><td>%s / %s</td><td>ms</td></tr>",
1247 U2H(stats[ST_F_QT_MAX].u.u32), U2H(stats[ST_F_QTIME].u.u32));
1248 chunk_appendf(out, "<tr><th>- Connect time:</th><td>%s / %s</td><td>ms</td></tr>",
1249 U2H(stats[ST_F_CT_MAX].u.u32), U2H(stats[ST_F_CTIME].u.u32));
William Lallemand74c24fb2016-11-21 17:18:36 +01001250 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001251 chunk_appendf(out, "<tr><th>- Responses time:</th><td>%s / %s</td><td>ms</td></tr>",
1252 U2H(stats[ST_F_RT_MAX].u.u32), U2H(stats[ST_F_RTIME].u.u32));
1253 chunk_appendf(out, "<tr><th>- Total time:</th><td>%s / %s</td><td>ms</td></tr>",
1254 U2H(stats[ST_F_TT_MAX].u.u32), U2H(stats[ST_F_TTIME].u.u32));
William Lallemand74c24fb2016-11-21 17:18:36 +01001255
1256 chunk_appendf(out,
1257 "</table></div></u></td>"
1258 /* sessions: lbtot, last */
1259 "<td>%s</td><td>%s</td>",
1260 U2H(stats[ST_F_LBTOT].u.u64),
1261 human_time(stats[ST_F_LASTSESS].u.s32, 1));
1262
1263 chunk_appendf(out,
1264 /* bytes : in, out */
1265 "<td>%s</td><td>%s</td>"
1266 /* denied: req, resp */
1267 "<td></td><td>%s</td>"
1268 /* errors : request, connect */
1269 "<td></td><td>%s</td>"
1270 /* errors : response */
1271 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
1272 /* warnings: retries, redispatches */
1273 "<td>%lld</td><td>%lld</td>"
1274 "",
1275 U2H(stats[ST_F_BIN].u.u64), U2H(stats[ST_F_BOUT].u.u64),
1276 U2H(stats[ST_F_DRESP].u.u64),
1277 U2H(stats[ST_F_ECON].u.u64),
1278 U2H(stats[ST_F_ERESP].u.u64),
1279 (long long)stats[ST_F_CLI_ABRT].u.u64,
1280 (long long)stats[ST_F_SRV_ABRT].u.u64,
1281 (long long)stats[ST_F_WRETR].u.u64,
1282 (long long)stats[ST_F_WREDIS].u.u64);
1283
1284 /* status, last change */
1285 chunk_appendf(out, "<td class=ac>");
1286
1287 /* FIXME!!!!
1288 * LASTCHG should contain the last change for *this* server and must be computed
1289 * properly above, as was done below, ie: this server if maint, otherwise ref server
1290 * if tracking. Note that ref is either local or remote depending on tracking.
1291 */
1292
1293
Willy Tarreau7b524852020-08-11 10:26:36 +02001294 if (strncmp(field_str(stats, ST_F_STATUS), "MAINT", 5) == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001295 chunk_appendf(out, "%s MAINT", human_time(stats[ST_F_LASTCHG].u.u32, 1));
1296 }
Willy Tarreau7b524852020-08-11 10:26:36 +02001297 else if (strcmp(field_str(stats, ST_F_STATUS), "no check") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001298 chunk_strcat(out, "<i>no check</i>");
1299 }
1300 else {
1301 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 +02001302 if (strncmp(field_str(stats, ST_F_STATUS), "DOWN", 4) == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001303 if (stats[ST_F_CHECK_HEALTH].u.u32)
1304 chunk_strcat(out, " &uarr;");
1305 }
1306 else if (stats[ST_F_CHECK_HEALTH].u.u32 < stats[ST_F_CHECK_RISE].u.u32 + stats[ST_F_CHECK_FALL].u.u32 - 1)
1307 chunk_strcat(out, " &darr;");
1308 }
1309
Willy Tarreau7b524852020-08-11 10:26:36 +02001310 if (strncmp(field_str(stats, ST_F_STATUS), "DOWN", 4) == 0 &&
William Lallemand74c24fb2016-11-21 17:18:36 +01001311 stats[ST_F_AGENT_STATUS].type && !stats[ST_F_AGENT_HEALTH].u.u32) {
1312 chunk_appendf(out,
1313 "</td><td class=ac><u> %s",
1314 field_str(stats, ST_F_AGENT_STATUS));
1315
1316 if (stats[ST_F_AGENT_CODE].type)
1317 chunk_appendf(out, "/%d", stats[ST_F_AGENT_CODE].u.u32);
1318
1319 if (stats[ST_F_AGENT_DURATION].type)
1320 chunk_appendf(out, " in %lums", (long)stats[ST_F_AGENT_DURATION].u.u64);
1321
1322 chunk_appendf(out, "<div class=tips>%s", field_str(stats, ST_F_AGENT_DESC));
1323
1324 if (*field_str(stats, ST_F_LAST_AGT)) {
1325 chunk_appendf(out, ": ");
1326 chunk_initstr(&src, field_str(stats, ST_F_LAST_AGT));
1327 chunk_htmlencode(out, &src);
1328 }
1329 chunk_appendf(out, "</div></u>");
1330 }
1331 else if (stats[ST_F_CHECK_STATUS].type) {
1332 chunk_appendf(out,
1333 "</td><td class=ac><u> %s",
1334 field_str(stats, ST_F_CHECK_STATUS));
1335
1336 if (stats[ST_F_CHECK_CODE].type)
1337 chunk_appendf(out, "/%d", stats[ST_F_CHECK_CODE].u.u32);
1338
1339 if (stats[ST_F_CHECK_DURATION].type)
1340 chunk_appendf(out, " in %lums", (long)stats[ST_F_CHECK_DURATION].u.u64);
1341
1342 chunk_appendf(out, "<div class=tips>%s", field_str(stats, ST_F_CHECK_DESC));
1343
1344 if (*field_str(stats, ST_F_LAST_CHK)) {
1345 chunk_appendf(out, ": ");
1346 chunk_initstr(&src, field_str(stats, ST_F_LAST_CHK));
1347 chunk_htmlencode(out, &src);
1348 }
1349 chunk_appendf(out, "</div></u>");
1350 }
1351 else
1352 chunk_appendf(out, "</td><td>");
1353
1354 chunk_appendf(out,
Willy Tarreaubd715102020-10-23 22:44:30 +02001355 /* weight / uweight */
1356 "</td><td class=ac>%d/%d</td>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001357 /* act, bck */
1358 "<td class=ac>%s</td><td class=ac>%s</td>"
1359 "",
Willy Tarreaubd715102020-10-23 22:44:30 +02001360 stats[ST_F_WEIGHT].u.u32, stats[ST_F_UWEIGHT].u.u32,
William Lallemand74c24fb2016-11-21 17:18:36 +01001361 stats[ST_F_BCK].u.u32 ? "-" : "Y",
1362 stats[ST_F_BCK].u.u32 ? "Y" : "-");
1363
1364 /* check failures: unique, fatal, down time */
1365 if (strcmp(field_str(stats, ST_F_STATUS), "MAINT (resolution)") == 0) {
1366 chunk_appendf(out, "<td class=ac colspan=3>resolution</td>");
1367 }
1368 else if (stats[ST_F_CHKFAIL].type) {
1369 chunk_appendf(out, "<td><u>%lld", (long long)stats[ST_F_CHKFAIL].u.u64);
1370
1371 if (stats[ST_F_HANAFAIL].type)
1372 chunk_appendf(out, "/%lld", (long long)stats[ST_F_HANAFAIL].u.u64);
1373
1374 chunk_appendf(out,
1375 "<div class=tips>Failed Health Checks%s</div></u></td>"
1376 "<td>%lld</td><td>%s</td>"
1377 "",
1378 stats[ST_F_HANAFAIL].type ? "/Health Analyses" : "",
1379 (long long)stats[ST_F_CHKDOWN].u.u64, human_time(stats[ST_F_DOWNTIME].u.u32, 1));
1380 }
1381 else if (strcmp(field_str(stats, ST_F_STATUS), "MAINT") != 0 && field_format(stats, ST_F_TRACKED) == FF_STR) {
1382 /* tracking a server (hence inherited maint would appear as "MAINT (via...)" */
1383 chunk_appendf(out,
1384 "<td class=ac colspan=3><a class=lfsb href=\"#%s\">via %s</a></td>",
1385 field_str(stats, ST_F_TRACKED), field_str(stats, ST_F_TRACKED));
1386 }
1387 else
1388 chunk_appendf(out, "<td colspan=3></td>");
1389
1390 /* throttle */
1391 if (stats[ST_F_THROTTLE].type)
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001392 chunk_appendf(out, "<td class=ac>%d %%</td>\n", stats[ST_F_THROTTLE].u.u32);
William Lallemand74c24fb2016-11-21 17:18:36 +01001393 else
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001394 chunk_appendf(out, "<td class=ac>-</td>");
1395
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001396 if (flags & STAT_SHMODULES) {
1397 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001398 chunk_appendf(out, "<td>");
1399
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001400 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_SRV) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001401 chunk_appendf(out,
1402 "<u>%s<div class=tips><table class=det>",
1403 mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001404 for (j = 0; j < mod->stats_count; ++j) {
1405 chunk_appendf(out,
1406 "<tr><th>%s</th><td>%s</td></tr>",
1407 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1408 ++i;
1409 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001410 chunk_appendf(out, "</table></div></u>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001411 } else {
1412 i += mod->stats_count;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001413 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001414
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001415 chunk_appendf(out, "</td>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001416 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001417 }
1418
1419 chunk_appendf(out, "</tr>\n");
William Lallemand74c24fb2016-11-21 17:18:36 +01001420 }
1421 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_BE) {
1422 chunk_appendf(out, "<tr class=\"backend\">");
Willy Tarreauab02b3f2019-10-09 11:11:46 +02001423 if (flags & STAT_ADMIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001424 /* Column sub-heading for Enable or Disable server */
1425 chunk_appendf(out, "<td></td>");
1426 }
1427 chunk_appendf(out,
1428 "<td class=ac>"
1429 /* name */
1430 "%s<a name=\"%s/Backend\"></a>"
1431 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
1432 "",
Willy Tarreau708c4162019-10-09 10:19:16 +02001433 (flags & STAT_SHLGNDS)?"<u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01001434 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_PXNAME));
1435
Willy Tarreau708c4162019-10-09 10:19:16 +02001436 if (flags & STAT_SHLGNDS) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001437 /* balancing */
1438 chunk_appendf(out, "<div class=tips>balancing: %s",
1439 field_str(stats, ST_F_ALGO));
1440
1441 /* cookie */
1442 if (stats[ST_F_COOKIE].type) {
1443 chunk_appendf(out, ", cookie: '");
1444 chunk_initstr(&src, field_str(stats, ST_F_COOKIE));
1445 chunk_htmlencode(out, &src);
1446 chunk_appendf(out, "'");
1447 }
1448 chunk_appendf(out, "</div>");
1449 }
1450
1451 chunk_appendf(out,
1452 "%s</td>"
1453 /* queue : current, max */
1454 "<td>%s</td><td>%s</td><td></td>"
1455 /* sessions rate : current, max, limit */
1456 "<td>%s</td><td>%s</td><td></td>"
1457 "",
Willy Tarreau708c4162019-10-09 10:19:16 +02001458 (flags & STAT_SHLGNDS)?"</u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01001459 U2H(stats[ST_F_QCUR].u.u32), U2H(stats[ST_F_QMAX].u.u32),
1460 U2H(stats[ST_F_RATE].u.u32), U2H(stats[ST_F_RATE_MAX].u.u32));
1461
1462 chunk_appendf(out,
1463 /* sessions: current, max, limit, total */
1464 "<td>%s</td><td>%s</td><td>%s</td>"
1465 "<td><u>%s<div class=tips><table class=det>"
1466 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
1467 "",
Willy Tarreau8e0f1752016-12-12 15:07:29 +01001468 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 +01001469 U2H(stats[ST_F_STOT].u.u64),
1470 U2H(stats[ST_F_STOT].u.u64));
1471
1472 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1473 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
1474 chunk_appendf(out,
Willy Tarreauf1573842018-12-14 11:35:36 +01001475 "<tr><th>New connections:</th><td>%s</td></tr>"
1476 "<tr><th>Reused connections:</th><td>%s</td><td>(%d%%)</td></tr>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001477 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
1478 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
1479 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
1480 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
1481 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
1482 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
1483 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
1484 "<tr><th>- other responses:</th><td>%s</td></tr>"
Willy Tarreaua1214a52018-12-14 14:00:25 +01001485 "<tr><th>Cache lookups:</th><td>%s</td></tr>"
1486 "<tr><th>Cache hits:</th><td>%s</td><td>(%d%%)</td></tr>"
Willy Tarreau1b0f85e2018-05-28 15:12:40 +02001487 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
Christopher Faulet0159ee42019-12-16 14:40:39 +01001488 "<tr><th>Internal errors:</th><td>%s</td></tr>"
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001489 "",
Willy Tarreauf1573842018-12-14 11:35:36 +01001490 U2H(stats[ST_F_CONNECT].u.u64),
1491 U2H(stats[ST_F_REUSE].u.u64),
1492 (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64) ?
1493 (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 +01001494 U2H(stats[ST_F_REQ_TOT].u.u64),
1495 U2H(stats[ST_F_HRSP_1XX].u.u64),
1496 U2H(stats[ST_F_HRSP_2XX].u.u64),
1497 U2H(stats[ST_F_COMP_RSP].u.u64),
1498 stats[ST_F_HRSP_2XX].u.u64 ?
1499 (int)(100 * stats[ST_F_COMP_RSP].u.u64 / stats[ST_F_HRSP_2XX].u.u64) : 0,
1500 U2H(stats[ST_F_HRSP_3XX].u.u64),
1501 U2H(stats[ST_F_HRSP_4XX].u.u64),
1502 U2H(stats[ST_F_HRSP_5XX].u.u64),
Willy Tarreaufeead3a2018-12-14 13:48:44 +01001503 U2H(stats[ST_F_HRSP_OTHER].u.u64),
Willy Tarreaua1214a52018-12-14 14:00:25 +01001504 U2H(stats[ST_F_CACHE_LOOKUPS].u.u64),
1505 U2H(stats[ST_F_CACHE_HITS].u.u64),
1506 stats[ST_F_CACHE_LOOKUPS].u.u64 ?
1507 (int)(100 * stats[ST_F_CACHE_HITS].u.u64 / stats[ST_F_CACHE_LOOKUPS].u.u64) : 0,
Christopher Faulet0159ee42019-12-16 14:40:39 +01001508 U2H(stats[ST_F_WREW].u.u64),
1509 U2H(stats[ST_F_EINT].u.u64));
William Lallemand74c24fb2016-11-21 17:18:36 +01001510 }
1511
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001512 chunk_appendf(out, "<tr><th colspan=3>Max / Avg over last 1024 success. conn.</th></tr>");
1513 chunk_appendf(out, "<tr><th>- Queue time:</th><td>%s / %s</td><td>ms</td></tr>",
1514 U2H(stats[ST_F_QT_MAX].u.u32), U2H(stats[ST_F_QTIME].u.u32));
1515 chunk_appendf(out, "<tr><th>- Connect time:</th><td>%s / %s</td><td>ms</td></tr>",
1516 U2H(stats[ST_F_CT_MAX].u.u32), U2H(stats[ST_F_CTIME].u.u32));
William Lallemand74c24fb2016-11-21 17:18:36 +01001517 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
Christopher Faulet0d1c2a62019-11-08 14:59:51 +01001518 chunk_appendf(out, "<tr><th>- Responses time:</th><td>%s / %s</td><td>ms</td></tr>",
1519 U2H(stats[ST_F_RT_MAX].u.u32), U2H(stats[ST_F_RTIME].u.u32));
1520 chunk_appendf(out, "<tr><th>- Total time:</th><td>%s / %s</td><td>ms</td></tr>",
1521 U2H(stats[ST_F_TT_MAX].u.u32), U2H(stats[ST_F_TTIME].u.u32));
William Lallemand74c24fb2016-11-21 17:18:36 +01001522
1523 chunk_appendf(out,
1524 "</table></div></u></td>"
1525 /* sessions: lbtot, last */
1526 "<td>%s</td><td>%s</td>"
1527 /* bytes: in */
1528 "<td>%s</td>"
1529 "",
1530 U2H(stats[ST_F_LBTOT].u.u64),
1531 human_time(stats[ST_F_LASTSESS].u.s32, 1),
1532 U2H(stats[ST_F_BIN].u.u64));
1533
1534 chunk_appendf(out,
1535 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
1536 "<td>%s%s<div class=tips><table class=det>"
1537 "<tr><th>Response bytes in:</th><td>%s</td></tr>"
1538 "<tr><th>Compression in:</th><td>%s</td></tr>"
1539 "<tr><th>Compression out:</th><td>%s</td><td>(%d%%)</td></tr>"
1540 "<tr><th>Compression bypass:</th><td>%s</td></tr>"
1541 "<tr><th>Total bytes saved:</th><td>%s</td><td>(%d%%)</td></tr>"
1542 "</table></div>%s</td>",
1543 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "<u>":"",
1544 U2H(stats[ST_F_BOUT].u.u64),
1545 U2H(stats[ST_F_BOUT].u.u64),
1546 U2H(stats[ST_F_COMP_IN].u.u64),
1547 U2H(stats[ST_F_COMP_OUT].u.u64),
1548 stats[ST_F_COMP_IN].u.u64 ? (int)(stats[ST_F_COMP_OUT].u.u64 * 100 / stats[ST_F_COMP_IN].u.u64) : 0,
1549 U2H(stats[ST_F_COMP_BYP].u.u64),
1550 U2H(stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64),
1551 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,
1552 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "</u>":"");
1553
1554 chunk_appendf(out,
1555 /* denied: req, resp */
1556 "<td>%s</td><td>%s</td>"
1557 /* errors : request, connect */
1558 "<td></td><td>%s</td>"
1559 /* errors : response */
1560 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
1561 /* warnings: retries, redispatches */
1562 "<td>%lld</td><td>%lld</td>"
1563 /* backend status: reflect backend status (up/down): we display UP
1564 * if the backend has known working servers or if it has no server at
1565 * all (eg: for stats). Then we display the total weight, number of
1566 * active and backups. */
Willy Tarreaubd715102020-10-23 22:44:30 +02001567 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d/%d</td>"
William Lallemand74c24fb2016-11-21 17:18:36 +01001568 "<td class=ac>%d</td><td class=ac>%d</td>"
1569 "",
1570 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
1571 U2H(stats[ST_F_ECON].u.u64),
1572 U2H(stats[ST_F_ERESP].u.u64),
1573 (long long)stats[ST_F_CLI_ABRT].u.u64,
1574 (long long)stats[ST_F_SRV_ABRT].u.u64,
1575 (long long)stats[ST_F_WRETR].u.u64, (long long)stats[ST_F_WREDIS].u.u64,
1576 human_time(stats[ST_F_LASTCHG].u.u32, 1),
1577 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 +02001578 stats[ST_F_WEIGHT].u.u32, stats[ST_F_UWEIGHT].u.u32,
William Lallemand74c24fb2016-11-21 17:18:36 +01001579 stats[ST_F_ACT].u.u32, stats[ST_F_BCK].u.u32);
1580
1581 chunk_appendf(out,
1582 /* rest of backend: nothing, down transitions, total downtime, throttle */
1583 "<td class=ac>&nbsp;</td><td>%d</td>"
1584 "<td>%s</td>"
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001585 "<td></td>",
William Lallemand74c24fb2016-11-21 17:18:36 +01001586 stats[ST_F_CHKDOWN].u.u32,
1587 stats[ST_F_DOWNTIME].type ? human_time(stats[ST_F_DOWNTIME].u.u32, 1) : "&nbsp;");
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001588
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001589 if (flags & STAT_SHMODULES) {
1590 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001591 chunk_appendf(out, "<td>");
1592
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001593 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_BE) {
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001594 chunk_appendf(out,
1595 "<u>%s<div class=tips><table class=det>",
1596 mod->name);
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001597 for (j = 0; j < mod->stats_count; ++j) {
1598 chunk_appendf(out,
1599 "<tr><th>%s</th><td>%s</td></tr>",
1600 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1601 ++i;
1602 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001603 chunk_appendf(out, "</table></div></u>");
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001604 } else {
1605 i += mod->stats_count;
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001606 }
Amaury Denoyellee6ee8202020-11-03 15:04:46 +01001607
1608 chunk_appendf(out, "</td>");
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001609 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001610 }
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02001611
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001612 chunk_appendf(out, "</tr>");
William Lallemand74c24fb2016-11-21 17:18:36 +01001613 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02001614
William Lallemand74c24fb2016-11-21 17:18:36 +01001615 return 1;
1616}
1617
Amaury Denoyelle97323c92020-10-02 18:32:01 +02001618int stats_dump_one_line(const struct field *stats, size_t stats_count,
1619 struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +01001620{
Simon Horman05ee2132017-01-04 09:37:25 +01001621 int ret;
1622
William Lallemand74c24fb2016-11-21 17:18:36 +01001623 if (appctx->ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreau43241ff2019-10-09 11:27:51 +02001624 ret = stats_dump_fields_html(&trash, stats, appctx->ctx.stats.flags);
William Lallemand74c24fb2016-11-21 17:18:36 +01001625 else if (appctx->ctx.stats.flags & STAT_FMT_TYPED)
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02001626 ret = stats_dump_fields_typed(&trash, stats, stats_count, appctx->ctx.stats.flags, appctx->ctx.stats.domain);
Simon Horman05ee2132017-01-04 09:37:25 +01001627 else if (appctx->ctx.stats.flags & STAT_FMT_JSON)
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02001628 ret = stats_dump_fields_json(&trash, stats, stats_count, appctx->ctx.stats.flags, appctx->ctx.stats.domain);
William Lallemand74c24fb2016-11-21 17:18:36 +01001629 else
Amaury Denoyelle50660a82020-10-05 11:49:39 +02001630 ret = stats_dump_fields_csv(&trash, stats, stats_count, appctx->ctx.stats.flags, appctx->ctx.stats.domain);
Simon Horman05ee2132017-01-04 09:37:25 +01001631
1632 if (ret)
1633 appctx->ctx.stats.flags |= STAT_STARTED;
1634
1635 return ret;
William Lallemand74c24fb2016-11-21 17:18:36 +01001636}
1637
William Dauchy0ef54392021-01-17 18:27:45 +01001638/* Fill <stats> with the frontend statistics. <stats> is preallocated array of
Christopher Fauletd808f172021-01-22 17:33:22 +01001639 * length <len>. If <selected_field> is != NULL, only fill this one. The length
1640 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
1641 * this value, or if the selected field is not implemented for frontends, the
1642 * function returns 0, otherwise, it returns 1.
William Lallemand74c24fb2016-11-21 17:18:36 +01001643 */
William Dauchy0ef54392021-01-17 18:27:45 +01001644int stats_fill_fe_stats(struct proxy *px, struct field *stats, int len,
1645 enum stat_field *selected_field)
William Lallemand74c24fb2016-11-21 17:18:36 +01001646{
William Dauchy0ef54392021-01-17 18:27:45 +01001647 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
William Dauchy0ef54392021-01-17 18:27:45 +01001648
William Lallemand74c24fb2016-11-21 17:18:36 +01001649 if (len < ST_F_TOTAL_FIELDS)
1650 return 0;
1651
William Dauchy0ef54392021-01-17 18:27:45 +01001652 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
Christopher Faulet8596bfb2021-01-25 15:16:41 +01001653 struct field metric = { 0 };
1654
William Dauchy0ef54392021-01-17 18:27:45 +01001655 switch (current_field) {
1656 case ST_F_PXNAME:
1657 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
1658 break;
1659 case ST_F_SVNAME:
1660 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, "FRONTEND");
1661 break;
1662 case ST_F_MODE:
1663 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
1664 break;
1665 case ST_F_SCUR:
1666 metric = mkf_u32(0, px->feconn);
1667 break;
1668 case ST_F_SMAX:
1669 metric = mkf_u32(FN_MAX, px->fe_counters.conn_max);
1670 break;
1671 case ST_F_SLIM:
1672 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->maxconn);
1673 break;
1674 case ST_F_STOT:
1675 metric = mkf_u64(FN_COUNTER, px->fe_counters.cum_sess);
1676 break;
1677 case ST_F_BIN:
1678 metric = mkf_u64(FN_COUNTER, px->fe_counters.bytes_in);
1679 break;
1680 case ST_F_BOUT:
1681 metric = mkf_u64(FN_COUNTER, px->fe_counters.bytes_out);
1682 break;
1683 case ST_F_DREQ:
1684 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_req);
1685 break;
1686 case ST_F_DRESP:
1687 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_resp);
1688 break;
1689 case ST_F_EREQ:
1690 metric = mkf_u64(FN_COUNTER, px->fe_counters.failed_req);
1691 break;
1692 case ST_F_DCON:
1693 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_conn);
1694 break;
1695 case ST_F_DSES:
1696 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_sess);
1697 break;
1698 case ST_F_STATUS:
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001699 metric = mkf_str(FO_STATUS, (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) ? "STOP" : "OPEN");
William Dauchy0ef54392021-01-17 18:27:45 +01001700 break;
1701 case ST_F_PID:
Willy Tarreaue8422bf2021-06-15 09:08:18 +02001702 metric = mkf_u32(FO_KEY, 1);
William Dauchy0ef54392021-01-17 18:27:45 +01001703 break;
1704 case ST_F_IID:
1705 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
1706 break;
1707 case ST_F_SID:
1708 metric = mkf_u32(FO_KEY|FS_SERVICE, 0);
1709 break;
1710 case ST_F_TYPE:
1711 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_FE);
1712 break;
1713 case ST_F_RATE:
1714 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_sess_per_sec));
1715 break;
1716 case ST_F_RATE_LIM:
1717 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->fe_sps_lim);
1718 break;
1719 case ST_F_RATE_MAX:
1720 metric = mkf_u32(FN_MAX, px->fe_counters.sps_max);
1721 break;
1722 case ST_F_WREW:
1723 metric = mkf_u64(FN_COUNTER, px->fe_counters.failed_rewrites);
1724 break;
1725 case ST_F_EINT:
1726 metric = mkf_u64(FN_COUNTER, px->fe_counters.internal_errors);
1727 break;
1728 case ST_F_HRSP_1XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001729 if (px->mode == PR_MODE_HTTP)
1730 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[1]);
William Dauchy0ef54392021-01-17 18:27:45 +01001731 break;
1732 case ST_F_HRSP_2XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001733 if (px->mode == PR_MODE_HTTP)
1734 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[2]);
William Dauchy0ef54392021-01-17 18:27:45 +01001735 break;
1736 case ST_F_HRSP_3XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001737 if (px->mode == PR_MODE_HTTP)
1738 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[3]);
William Dauchy0ef54392021-01-17 18:27:45 +01001739 break;
1740 case ST_F_HRSP_4XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001741 if (px->mode == PR_MODE_HTTP)
1742 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[4]);
William Dauchy0ef54392021-01-17 18:27:45 +01001743 break;
1744 case ST_F_HRSP_5XX:
William Dauchy2107a0f2021-01-22 21:09:48 +01001745 if (px->mode == PR_MODE_HTTP)
1746 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[5]);
William Dauchy0ef54392021-01-17 18:27:45 +01001747 break;
1748 case ST_F_HRSP_OTHER:
William Dauchy2107a0f2021-01-22 21:09:48 +01001749 if (px->mode == PR_MODE_HTTP)
1750 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[0]);
William Dauchy0ef54392021-01-17 18:27:45 +01001751 break;
1752 case ST_F_INTERCEPTED:
William Dauchy2107a0f2021-01-22 21:09:48 +01001753 if (px->mode == PR_MODE_HTTP)
1754 metric = mkf_u64(FN_COUNTER, px->fe_counters.intercepted_req);
William Dauchy0ef54392021-01-17 18:27:45 +01001755 break;
1756 case ST_F_CACHE_LOOKUPS:
William Dauchy2107a0f2021-01-22 21:09:48 +01001757 if (px->mode == PR_MODE_HTTP)
1758 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cache_lookups);
William Dauchy0ef54392021-01-17 18:27:45 +01001759 break;
1760 case ST_F_CACHE_HITS:
William Dauchy2107a0f2021-01-22 21:09:48 +01001761 if (px->mode == PR_MODE_HTTP)
1762 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cache_hits);
William Dauchy0ef54392021-01-17 18:27:45 +01001763 break;
1764 case ST_F_REQ_RATE:
1765 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_req_per_sec));
1766 break;
1767 case ST_F_REQ_RATE_MAX:
1768 metric = mkf_u32(FN_MAX, px->fe_counters.p.http.rps_max);
1769 break;
1770 case ST_F_REQ_TOT:
1771 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cum_req);
1772 break;
1773 case ST_F_COMP_IN:
1774 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_in);
1775 break;
1776 case ST_F_COMP_OUT:
1777 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_out);
1778 break;
1779 case ST_F_COMP_BYP:
1780 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_byp);
1781 break;
1782 case ST_F_COMP_RSP:
1783 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.comp_rsp);
1784 break;
1785 case ST_F_CONN_RATE:
1786 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_conn_per_sec));
1787 break;
1788 case ST_F_CONN_RATE_MAX:
1789 metric = mkf_u32(FN_MAX, px->fe_counters.cps_max);
1790 break;
1791 case ST_F_CONN_TOT:
1792 metric = mkf_u64(FN_COUNTER, px->fe_counters.cum_conn);
1793 break;
1794 default:
Christopher Fauletd808f172021-01-22 17:33:22 +01001795 /* not used for frontends. If a specific metric
1796 * is requested, return an error. Otherwise continue.
1797 */
1798 if (selected_field != NULL)
1799 return 0;
1800 continue;
William Dauchy0ef54392021-01-17 18:27:45 +01001801 }
1802 stats[current_field] = metric;
1803 if (selected_field != NULL)
1804 break;
William Lallemand74c24fb2016-11-21 17:18:36 +01001805 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001806 return 1;
1807}
1808
1809/* Dumps a frontend's line to the trash for the current proxy <px> and uses
1810 * the state from stream interface <si>. The caller is responsible for clearing
1811 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
1812 */
1813static int stats_dump_fe_stats(struct stream_interface *si, struct proxy *px)
1814{
Christopher Faulet693b23b2022-02-28 09:09:05 +01001815 struct appctx *appctx = __cs_appctx(si->cs);
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02001816 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
1817 struct stats_module *mod;
1818 size_t stats_count = ST_F_TOTAL_FIELDS;
William Lallemand74c24fb2016-11-21 17:18:36 +01001819
1820 if (!(px->cap & PR_CAP_FE))
1821 return 0;
1822
1823 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_FE)))
1824 return 0;
1825
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02001826 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
1827
William Dauchy0ef54392021-01-17 18:27:45 +01001828 if (!stats_fill_fe_stats(px, stats, ST_F_TOTAL_FIELDS, NULL))
William Lallemand74c24fb2016-11-21 17:18:36 +01001829 return 0;
1830
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02001831 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
1832 void *counters;
1833
1834 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_FE)) {
1835 stats_count += mod->stats_count;
1836 continue;
1837 }
1838
1839 counters = EXTRA_COUNTERS_GET(px->extra_counters_fe, mod);
1840 mod->fill_stats(counters, stats + stats_count);
1841 stats_count += mod->stats_count;
1842 }
1843
1844 return stats_dump_one_line(stats, stats_count, appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01001845}
1846
William Dauchy655e14e2021-02-14 23:22:54 +01001847/* Fill <stats> with the listener statistics. <stats> is preallocated array of
1848 * length <len>. The length of the array must be at least ST_F_TOTAL_FIELDS. If
1849 * this length is less then this value, the function returns 0, otherwise, it
1850 * returns 1. If selected_field is != NULL, only fill this one. <flags> can
1851 * take the value STAT_SHLGNDS.
William Lallemand74c24fb2016-11-21 17:18:36 +01001852 */
1853int stats_fill_li_stats(struct proxy *px, struct listener *l, int flags,
William Dauchy655e14e2021-02-14 23:22:54 +01001854 struct field *stats, int len, enum stat_field *selected_field)
William Lallemand74c24fb2016-11-21 17:18:36 +01001855{
William Dauchy655e14e2021-02-14 23:22:54 +01001856 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
Willy Tarreau83061a82018-07-13 11:56:34 +02001857 struct buffer *out = get_trash_chunk();
William Lallemand74c24fb2016-11-21 17:18:36 +01001858
1859 if (len < ST_F_TOTAL_FIELDS)
1860 return 0;
1861
1862 if (!l->counters)
1863 return 0;
1864
1865 chunk_reset(out);
William Lallemand74c24fb2016-11-21 17:18:36 +01001866
William Dauchy655e14e2021-02-14 23:22:54 +01001867 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
1868 struct field metric = { 0 };
William Lallemand74c24fb2016-11-21 17:18:36 +01001869
William Dauchy655e14e2021-02-14 23:22:54 +01001870 switch (current_field) {
1871 case ST_F_PXNAME:
1872 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
1873 break;
1874 case ST_F_SVNAME:
1875 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, l->name);
1876 break;
1877 case ST_F_MODE:
1878 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
1879 break;
1880 case ST_F_SCUR:
1881 metric = mkf_u32(0, l->nbconn);
1882 break;
1883 case ST_F_SMAX:
1884 metric = mkf_u32(FN_MAX, l->counters->conn_max);
1885 break;
1886 case ST_F_SLIM:
1887 metric = mkf_u32(FO_CONFIG|FN_LIMIT, l->maxconn);
1888 break;
1889 case ST_F_STOT:
1890 metric = mkf_u64(FN_COUNTER, l->counters->cum_conn);
1891 break;
1892 case ST_F_BIN:
1893 metric = mkf_u64(FN_COUNTER, l->counters->bytes_in);
1894 break;
1895 case ST_F_BOUT:
1896 metric = mkf_u64(FN_COUNTER, l->counters->bytes_out);
1897 break;
1898 case ST_F_DREQ:
1899 metric = mkf_u64(FN_COUNTER, l->counters->denied_req);
1900 break;
1901 case ST_F_DRESP:
1902 metric = mkf_u64(FN_COUNTER, l->counters->denied_resp);
1903 break;
1904 case ST_F_EREQ:
1905 metric = mkf_u64(FN_COUNTER, l->counters->failed_req);
1906 break;
1907 case ST_F_DCON:
1908 metric = mkf_u64(FN_COUNTER, l->counters->denied_conn);
1909 break;
1910 case ST_F_DSES:
1911 metric = mkf_u64(FN_COUNTER, l->counters->denied_sess);
1912 break;
1913 case ST_F_STATUS:
William Dauchy3679d0c2021-02-14 23:22:55 +01001914 metric = mkf_str(FO_STATUS, li_status_st[get_li_status(l)]);
William Dauchy655e14e2021-02-14 23:22:54 +01001915 break;
1916 case ST_F_PID:
Willy Tarreaue8422bf2021-06-15 09:08:18 +02001917 metric = mkf_u32(FO_KEY, 1);
William Dauchy655e14e2021-02-14 23:22:54 +01001918 break;
1919 case ST_F_IID:
1920 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
1921 break;
1922 case ST_F_SID:
1923 metric = mkf_u32(FO_KEY|FS_SERVICE, l->luid);
1924 break;
1925 case ST_F_TYPE:
1926 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_SO);
1927 break;
1928 case ST_F_WREW:
1929 metric = mkf_u64(FN_COUNTER, l->counters->failed_rewrites);
1930 break;
1931 case ST_F_EINT:
1932 metric = mkf_u64(FN_COUNTER, l->counters->internal_errors);
1933 break;
1934 case ST_F_ADDR:
1935 if (flags & STAT_SHLGNDS) {
1936 char str[INET6_ADDRSTRLEN];
1937 int port;
William Lallemand74c24fb2016-11-21 17:18:36 +01001938
William Dauchy655e14e2021-02-14 23:22:54 +01001939 port = get_host_port(&l->rx.addr);
1940 switch (addr_to_str(&l->rx.addr, str, sizeof(str))) {
1941 case AF_INET:
1942 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1943 chunk_appendf(out, "%s:%d", str, port);
1944 break;
1945 case AF_INET6:
1946 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1947 chunk_appendf(out, "[%s]:%d", str, port);
1948 break;
1949 case AF_UNIX:
1950 metric = mkf_str(FO_CONFIG|FS_SERVICE, "unix");
1951 break;
1952 case -1:
1953 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1954 chunk_strcat(out, strerror(errno));
1955 break;
1956 default: /* address family not supported */
1957 break;
1958 }
1959 }
1960 break;
1961 default:
1962 /* not used for listen. If a specific metric
1963 * is requested, return an error. Otherwise continue.
1964 */
1965 if (selected_field != NULL)
1966 return 0;
1967 continue;
William Lallemand74c24fb2016-11-21 17:18:36 +01001968 }
William Dauchy655e14e2021-02-14 23:22:54 +01001969 stats[current_field] = metric;
1970 if (selected_field != NULL)
1971 break;
William Lallemand74c24fb2016-11-21 17:18:36 +01001972 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001973 return 1;
1974}
1975
1976/* Dumps a line for listener <l> and proxy <px> to the trash and uses the state
Willy Tarreau43241ff2019-10-09 11:27:51 +02001977 * from stream interface <si>. The caller is responsible for clearing the trash
1978 * if needed. Returns non-zero if it emits anything, zero otherwise.
William Lallemand74c24fb2016-11-21 17:18:36 +01001979 */
Willy Tarreau43241ff2019-10-09 11:27:51 +02001980static int stats_dump_li_stats(struct stream_interface *si, struct proxy *px, struct listener *l)
William Lallemand74c24fb2016-11-21 17:18:36 +01001981{
Christopher Faulet693b23b2022-02-28 09:09:05 +01001982 struct appctx *appctx = __cs_appctx(si->cs);
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02001983 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
1984 struct stats_module *mod;
1985 size_t stats_count = ST_F_TOTAL_FIELDS;
1986
1987 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
William Lallemand74c24fb2016-11-21 17:18:36 +01001988
William Dauchy655e14e2021-02-14 23:22:54 +01001989 if (!stats_fill_li_stats(px, l, appctx->ctx.stats.flags, stats,
1990 ST_F_TOTAL_FIELDS, NULL))
William Lallemand74c24fb2016-11-21 17:18:36 +01001991 return 0;
1992
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02001993 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
1994 void *counters;
1995
1996 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_LI)) {
1997 stats_count += mod->stats_count;
1998 continue;
1999 }
2000
2001 counters = EXTRA_COUNTERS_GET(l->extra_counters, mod);
2002 mod->fill_stats(counters, stats + stats_count);
2003 stats_count += mod->stats_count;
2004 }
2005
2006 return stats_dump_one_line(stats, stats_count, appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01002007}
2008
2009enum srv_stats_state {
2010 SRV_STATS_STATE_DOWN = 0,
2011 SRV_STATS_STATE_DOWN_AGENT,
2012 SRV_STATS_STATE_GOING_UP,
2013 SRV_STATS_STATE_UP_GOING_DOWN,
2014 SRV_STATS_STATE_UP,
2015 SRV_STATS_STATE_NOLB_GOING_DOWN,
2016 SRV_STATS_STATE_NOLB,
2017 SRV_STATS_STATE_DRAIN_GOING_DOWN,
2018 SRV_STATS_STATE_DRAIN,
2019 SRV_STATS_STATE_DRAIN_AGENT,
2020 SRV_STATS_STATE_NO_CHECK,
2021
2022 SRV_STATS_STATE_COUNT, /* Must be last */
2023};
2024
2025static const char *srv_hlt_st[SRV_STATS_STATE_COUNT] = {
2026 [SRV_STATS_STATE_DOWN] = "DOWN",
2027 [SRV_STATS_STATE_DOWN_AGENT] = "DOWN (agent)",
2028 [SRV_STATS_STATE_GOING_UP] = "DOWN %d/%d",
2029 [SRV_STATS_STATE_UP_GOING_DOWN] = "UP %d/%d",
2030 [SRV_STATS_STATE_UP] = "UP",
2031 [SRV_STATS_STATE_NOLB_GOING_DOWN] = "NOLB %d/%d",
2032 [SRV_STATS_STATE_NOLB] = "NOLB",
2033 [SRV_STATS_STATE_DRAIN_GOING_DOWN] = "DRAIN %d/%d",
2034 [SRV_STATS_STATE_DRAIN] = "DRAIN",
2035 [SRV_STATS_STATE_DRAIN_AGENT] = "DRAIN (agent)",
2036 [SRV_STATS_STATE_NO_CHECK] = "no check"
2037};
2038
William Dauchyd3a9a492021-01-25 17:29:03 +01002039/* Compute server state helper
William Lallemand74c24fb2016-11-21 17:18:36 +01002040 */
William Dauchyd3a9a492021-01-25 17:29:03 +01002041static void stats_fill_sv_stats_computestate(struct server *sv, struct server *ref,
2042 enum srv_stats_state *state)
William Lallemand74c24fb2016-11-21 17:18:36 +01002043{
Emeric Brun52a91d32017-08-31 14:41:55 +02002044 if (sv->cur_state == SRV_ST_RUNNING || sv->cur_state == SRV_ST_STARTING) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002045 if ((ref->check.state & CHK_ST_ENABLED) &&
2046 (ref->check.health < ref->check.rise + ref->check.fall - 1)) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002047 *state = SRV_STATS_STATE_UP_GOING_DOWN;
William Lallemand74c24fb2016-11-21 17:18:36 +01002048 } else {
William Dauchyd3a9a492021-01-25 17:29:03 +01002049 *state = SRV_STATS_STATE_UP;
William Lallemand74c24fb2016-11-21 17:18:36 +01002050 }
2051
Emeric Brun52a91d32017-08-31 14:41:55 +02002052 if (sv->cur_admin & SRV_ADMF_DRAIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002053 if (ref->agent.state & CHK_ST_ENABLED)
William Dauchyd3a9a492021-01-25 17:29:03 +01002054 *state = SRV_STATS_STATE_DRAIN_AGENT;
2055 else if (*state == SRV_STATS_STATE_UP_GOING_DOWN)
2056 *state = SRV_STATS_STATE_DRAIN_GOING_DOWN;
William Lallemand74c24fb2016-11-21 17:18:36 +01002057 else
William Dauchyd3a9a492021-01-25 17:29:03 +01002058 *state = SRV_STATS_STATE_DRAIN;
William Lallemand74c24fb2016-11-21 17:18:36 +01002059 }
2060
William Dauchyd3a9a492021-01-25 17:29:03 +01002061 if (*state == SRV_STATS_STATE_UP && !(ref->check.state & CHK_ST_ENABLED)) {
2062 *state = SRV_STATS_STATE_NO_CHECK;
William Lallemand74c24fb2016-11-21 17:18:36 +01002063 }
2064 }
Emeric Brun52a91d32017-08-31 14:41:55 +02002065 else if (sv->cur_state == SRV_ST_STOPPING) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002066 if ((!(sv->check.state & CHK_ST_ENABLED) && !sv->track) ||
2067 (ref->check.health == ref->check.rise + ref->check.fall - 1)) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002068 *state = SRV_STATS_STATE_NOLB;
William Lallemand74c24fb2016-11-21 17:18:36 +01002069 } else {
William Dauchyd3a9a492021-01-25 17:29:03 +01002070 *state = SRV_STATS_STATE_NOLB_GOING_DOWN;
William Lallemand74c24fb2016-11-21 17:18:36 +01002071 }
2072 }
2073 else { /* stopped */
2074 if ((ref->agent.state & CHK_ST_ENABLED) && !ref->agent.health) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002075 *state = SRV_STATS_STATE_DOWN_AGENT;
William Lallemand74c24fb2016-11-21 17:18:36 +01002076 } else if ((ref->check.state & CHK_ST_ENABLED) && !ref->check.health) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002077 *state = SRV_STATS_STATE_DOWN; /* DOWN */
William Lallemand74c24fb2016-11-21 17:18:36 +01002078 } else if ((ref->agent.state & CHK_ST_ENABLED) || (ref->check.state & CHK_ST_ENABLED)) {
William Dauchyd3a9a492021-01-25 17:29:03 +01002079 *state = SRV_STATS_STATE_GOING_UP;
William Lallemand74c24fb2016-11-21 17:18:36 +01002080 } else {
William Dauchyd3a9a492021-01-25 17:29:03 +01002081 *state = SRV_STATS_STATE_DOWN; /* DOWN, unchecked */
William Lallemand74c24fb2016-11-21 17:18:36 +01002082 }
2083 }
William Dauchyd3a9a492021-01-25 17:29:03 +01002084}
William Lallemand74c24fb2016-11-21 17:18:36 +01002085
William Dauchyd3a9a492021-01-25 17:29:03 +01002086/* Fill <stats> with the backend statistics. <stats> is preallocated array of
2087 * length <len>. If <selected_field> is != NULL, only fill this one. The length
2088 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
2089 * this value, or if the selected field is not implemented for servers, the
2090 * function returns 0, otherwise, it returns 1. <flags> can take the value
2091 * STAT_SHLGNDS.
2092 */
2093int stats_fill_sv_stats(struct proxy *px, struct server *sv, int flags,
2094 struct field *stats, int len,
2095 enum stat_field *selected_field)
2096{
2097 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
2098 struct server *via = sv->track ? sv->track : sv;
2099 struct server *ref = via;
2100 enum srv_stats_state state = 0;
2101 char str[INET6_ADDRSTRLEN];
2102 struct buffer *out = get_trash_chunk();
2103 char *fld_status;
2104 long long srv_samples_counter;
2105 unsigned int srv_samples_window = TIME_STATS_SAMPLES;
William Lallemand74c24fb2016-11-21 17:18:36 +01002106
William Dauchyd3a9a492021-01-25 17:29:03 +01002107 if (len < ST_F_TOTAL_FIELDS)
2108 return 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01002109
William Dauchyd3a9a492021-01-25 17:29:03 +01002110 chunk_reset(out);
William Lallemand74c24fb2016-11-21 17:18:36 +01002111
William Dauchyd3a9a492021-01-25 17:29:03 +01002112 /* compute state for later use */
2113 if (selected_field == NULL || *selected_field == ST_F_STATUS ||
2114 *selected_field == ST_F_CHECK_RISE || *selected_field == ST_F_CHECK_FALL ||
2115 *selected_field == ST_F_CHECK_HEALTH || *selected_field == ST_F_HANAFAIL) {
2116 /* we have "via" which is the tracked server as described in the configuration,
2117 * and "ref" which is the checked server and the end of the chain.
2118 */
2119 while (ref->track)
2120 ref = ref->track;
2121 stats_fill_sv_stats_computestate(sv, ref, &state);
William Lallemand74c24fb2016-11-21 17:18:36 +01002122 }
2123
William Dauchyd3a9a492021-01-25 17:29:03 +01002124 /* compue time values for later use */
2125 if (selected_field == NULL || *selected_field == ST_F_QTIME ||
2126 *selected_field == ST_F_CTIME || *selected_field == ST_F_RTIME ||
2127 *selected_field == ST_F_TTIME) {
2128 srv_samples_counter = (px->mode == PR_MODE_HTTP) ? sv->counters.p.http.cum_req : sv->counters.cum_lbconn;
2129 if (srv_samples_counter < TIME_STATS_SAMPLES && srv_samples_counter > 0)
2130 srv_samples_window = srv_samples_counter;
William Lallemand74c24fb2016-11-21 17:18:36 +01002131 }
2132
William Dauchyd3a9a492021-01-25 17:29:03 +01002133 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
2134 struct field metric = { 0 };
William Lallemand74c24fb2016-11-21 17:18:36 +01002135
William Dauchyd3a9a492021-01-25 17:29:03 +01002136 switch (current_field) {
2137 case ST_F_PXNAME:
2138 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
2139 break;
2140 case ST_F_SVNAME:
2141 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, sv->id);
2142 break;
2143 case ST_F_MODE:
2144 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
Christopher Faulet3888b8c2021-01-27 13:32:25 +01002145 break;
William Dauchyd3a9a492021-01-25 17:29:03 +01002146 case ST_F_QCUR:
Willy Tarreaua0570452021-06-18 09:30:30 +02002147 metric = mkf_u32(0, sv->queue.length);
William Dauchyd3a9a492021-01-25 17:29:03 +01002148 break;
2149 case ST_F_QMAX:
2150 metric = mkf_u32(FN_MAX, sv->counters.nbpend_max);
2151 break;
2152 case ST_F_SCUR:
2153 metric = mkf_u32(0, sv->cur_sess);
2154 break;
2155 case ST_F_SMAX:
2156 metric = mkf_u32(FN_MAX, sv->counters.cur_sess_max);
2157 break;
2158 case ST_F_SLIM:
2159 if (sv->maxconn)
2160 metric = mkf_u32(FO_CONFIG|FN_LIMIT, sv->maxconn);
2161 break;
2162 case ST_F_SRV_ICUR:
2163 metric = mkf_u32(0, sv->curr_idle_conns);
2164 break;
2165 case ST_F_SRV_ILIM:
2166 if (sv->max_idle_conns != -1)
2167 metric = mkf_u32(FO_CONFIG|FN_LIMIT, sv->max_idle_conns);
2168 break;
2169 case ST_F_STOT:
2170 metric = mkf_u64(FN_COUNTER, sv->counters.cum_sess);
2171 break;
2172 case ST_F_BIN:
2173 metric = mkf_u64(FN_COUNTER, sv->counters.bytes_in);
2174 break;
2175 case ST_F_BOUT:
2176 metric = mkf_u64(FN_COUNTER, sv->counters.bytes_out);
2177 break;
2178 case ST_F_DRESP:
2179 metric = mkf_u64(FN_COUNTER, sv->counters.denied_resp);
2180 break;
2181 case ST_F_ECON:
2182 metric = mkf_u64(FN_COUNTER, sv->counters.failed_conns);
2183 break;
2184 case ST_F_ERESP:
2185 metric = mkf_u64(FN_COUNTER, sv->counters.failed_resp);
2186 break;
2187 case ST_F_WRETR:
2188 metric = mkf_u64(FN_COUNTER, sv->counters.retries);
2189 break;
2190 case ST_F_WREDIS:
2191 metric = mkf_u64(FN_COUNTER, sv->counters.redispatches);
2192 break;
2193 case ST_F_WREW:
2194 metric = mkf_u64(FN_COUNTER, sv->counters.failed_rewrites);
2195 break;
2196 case ST_F_EINT:
2197 metric = mkf_u64(FN_COUNTER, sv->counters.internal_errors);
2198 break;
2199 case ST_F_CONNECT:
2200 metric = mkf_u64(FN_COUNTER, sv->counters.connect);
2201 break;
2202 case ST_F_REUSE:
2203 metric = mkf_u64(FN_COUNTER, sv->counters.reuse);
2204 break;
2205 case ST_F_IDLE_CONN_CUR:
2206 metric = mkf_u32(0, sv->curr_idle_nb);
2207 break;
2208 case ST_F_SAFE_CONN_CUR:
2209 metric = mkf_u32(0, sv->curr_safe_nb);
2210 break;
2211 case ST_F_USED_CONN_CUR:
2212 metric = mkf_u32(0, sv->curr_used_conns);
2213 break;
2214 case ST_F_NEED_CONN_EST:
2215 metric = mkf_u32(0, sv->est_need_conns);
2216 break;
2217 case ST_F_STATUS:
2218 fld_status = chunk_newstr(out);
2219 if (sv->cur_admin & SRV_ADMF_RMAINT)
2220 chunk_appendf(out, "MAINT (resolution)");
2221 else if (sv->cur_admin & SRV_ADMF_IMAINT)
2222 chunk_appendf(out, "MAINT (via %s/%s)", via->proxy->id, via->id);
2223 else if (sv->cur_admin & SRV_ADMF_MAINT)
2224 chunk_appendf(out, "MAINT");
2225 else
2226 chunk_appendf(out,
2227 srv_hlt_st[state],
2228 (ref->cur_state != SRV_ST_STOPPED) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2229 (ref->cur_state != SRV_ST_STOPPED) ? (ref->check.fall) : (ref->check.rise));
William Lallemand74c24fb2016-11-21 17:18:36 +01002230
William Dauchyd3a9a492021-01-25 17:29:03 +01002231 metric = mkf_str(FO_STATUS, fld_status);
2232 break;
2233 case ST_F_LASTCHG:
2234 metric = mkf_u32(FN_AGE, now.tv_sec - sv->last_change);
2235 break;
2236 case ST_F_WEIGHT:
2237 metric = mkf_u32(FN_AVG, (sv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv);
2238 break;
2239 case ST_F_UWEIGHT:
2240 metric = mkf_u32(FN_AVG, sv->uweight);
2241 break;
2242 case ST_F_ACT:
2243 metric = mkf_u32(FO_STATUS, (sv->flags & SRV_F_BACKUP) ? 0 : 1);
2244 break;
2245 case ST_F_BCK:
2246 metric = mkf_u32(FO_STATUS, (sv->flags & SRV_F_BACKUP) ? 1 : 0);
2247 break;
2248 case ST_F_CHKFAIL:
2249 if (sv->check.state & CHK_ST_ENABLED)
2250 metric = mkf_u64(FN_COUNTER, sv->counters.failed_checks);
2251 break;
2252 case ST_F_CHKDOWN:
2253 if (sv->check.state & CHK_ST_ENABLED)
2254 metric = mkf_u64(FN_COUNTER, sv->counters.down_trans);
2255 break;
2256 case ST_F_DOWNTIME:
2257 if (sv->check.state & CHK_ST_ENABLED)
2258 metric = mkf_u32(FN_COUNTER, srv_downtime(sv));
2259 break;
2260 case ST_F_QLIMIT:
2261 if (sv->maxqueue)
2262 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->maxqueue);
2263 break;
2264 case ST_F_PID:
Willy Tarreaue8422bf2021-06-15 09:08:18 +02002265 metric = mkf_u32(FO_KEY, 1);
William Dauchyd3a9a492021-01-25 17:29:03 +01002266 break;
2267 case ST_F_IID:
2268 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
2269 break;
2270 case ST_F_SID:
2271 metric = mkf_u32(FO_KEY|FS_SERVICE, sv->puid);
2272 break;
2273 case ST_F_THROTTLE:
2274 if (sv->cur_state == SRV_ST_STARTING && !server_is_draining(sv))
2275 metric = mkf_u32(FN_AVG, server_throttle_rate(sv));
2276 break;
2277 case ST_F_LBTOT:
2278 metric = mkf_u64(FN_COUNTER, sv->counters.cum_lbconn);
2279 break;
2280 case ST_F_TRACKED:
2281 if (sv->track) {
2282 char *fld_track = chunk_newstr(out);
2283 chunk_appendf(out, "%s/%s", sv->track->proxy->id, sv->track->id);
2284 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, fld_track);
2285 }
2286 break;
2287 case ST_F_TYPE:
2288 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_SV);
2289 break;
2290 case ST_F_RATE:
2291 metric = mkf_u32(FN_RATE, read_freq_ctr(&sv->sess_per_sec));
2292 break;
2293 case ST_F_RATE_MAX:
2294 metric = mkf_u32(FN_MAX, sv->counters.sps_max);
2295 break;
2296 case ST_F_CHECK_STATUS:
2297 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) {
2298 const char *fld_chksts;
Marcin Deraneka8dbdf32020-05-15 20:02:40 +02002299
William Dauchyd3a9a492021-01-25 17:29:03 +01002300 fld_chksts = chunk_newstr(out);
2301 chunk_strcat(out, "* "); // for check in progress
2302 chunk_strcat(out, get_check_status_info(sv->check.status));
2303 if (!(sv->check.state & CHK_ST_INPROGRESS))
2304 fld_chksts += 2; // skip "* "
Willy Tarreau973a9372021-05-12 17:29:14 +02002305 metric = mkf_str(FN_OUTPUT, fld_chksts);
William Dauchyd3a9a492021-01-25 17:29:03 +01002306 }
2307 break;
2308 case ST_F_CHECK_CODE:
2309 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2310 sv->check.status >= HCHK_STATUS_L57DATA)
2311 metric = mkf_u32(FN_OUTPUT, sv->check.code);
2312 break;
2313 case ST_F_CHECK_DURATION:
2314 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2315 sv->check.status >= HCHK_STATUS_CHECKED)
2316 metric = mkf_u64(FN_DURATION, sv->check.duration);
2317 break;
2318 case ST_F_CHECK_DESC:
2319 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2320 metric = mkf_str(FN_OUTPUT, get_check_status_description(sv->check.status));
2321 break;
2322 case ST_F_LAST_CHK:
2323 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2324 metric = mkf_str(FN_OUTPUT, sv->check.desc);
2325 break;
2326 case ST_F_CHECK_RISE:
2327 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2328 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.rise);
2329 break;
2330 case ST_F_CHECK_FALL:
2331 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2332 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.fall);
2333 break;
2334 case ST_F_CHECK_HEALTH:
2335 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2336 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.health);
2337 break;
Christopher Faulet59bab612021-07-22 08:04:38 +02002338 case ST_F_AGENT_STATUS:
2339 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) {
2340 const char *fld_chksts;
2341
2342 fld_chksts = chunk_newstr(out);
2343 chunk_strcat(out, "* "); // for check in progress
2344 chunk_strcat(out, get_check_status_info(sv->agent.status));
2345 if (!(sv->agent.state & CHK_ST_INPROGRESS))
2346 fld_chksts += 2; // skip "* "
2347 metric = mkf_str(FN_OUTPUT, fld_chksts);
2348 }
2349 break;
2350 case ST_F_AGENT_CODE:
2351 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2352 (sv->agent.status >= HCHK_STATUS_L57DATA))
2353 metric = mkf_u32(FN_OUTPUT, sv->agent.code);
2354 break;
2355 case ST_F_AGENT_DURATION:
2356 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2357 metric = mkf_u64(FN_DURATION, sv->agent.duration);
2358 break;
2359 case ST_F_AGENT_DESC:
2360 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2361 metric = mkf_str(FN_OUTPUT, get_check_status_description(sv->agent.status));
2362 break;
2363 case ST_F_LAST_AGT:
2364 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2365 metric = mkf_str(FN_OUTPUT, sv->agent.desc);
2366 break;
2367 case ST_F_AGENT_RISE:
2368 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2369 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.rise);
2370 break;
2371 case ST_F_AGENT_FALL:
2372 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2373 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.fall);
2374 break;
2375 case ST_F_AGENT_HEALTH:
2376 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2377 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.health);
2378 break;
William Dauchyd3a9a492021-01-25 17:29:03 +01002379 case ST_F_REQ_TOT:
2380 if (px->mode == PR_MODE_HTTP)
2381 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.cum_req);
2382 break;
2383 case ST_F_HRSP_1XX:
2384 if (px->mode == PR_MODE_HTTP)
2385 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[1]);
2386 break;
2387 case ST_F_HRSP_2XX:
2388 if (px->mode == PR_MODE_HTTP)
2389 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[2]);
2390 break;
2391 case ST_F_HRSP_3XX:
2392 if (px->mode == PR_MODE_HTTP)
2393 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[3]);
2394 break;
2395 case ST_F_HRSP_4XX:
2396 if (px->mode == PR_MODE_HTTP)
2397 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[4]);
2398 break;
2399 case ST_F_HRSP_5XX:
2400 if (px->mode == PR_MODE_HTTP)
2401 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[5]);
2402 break;
2403 case ST_F_HRSP_OTHER:
2404 if (px->mode == PR_MODE_HTTP)
2405 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[0]);
2406 break;
2407 case ST_F_HANAFAIL:
2408 if (ref->observe)
2409 metric = mkf_u64(FN_COUNTER, sv->counters.failed_hana);
2410 break;
2411 case ST_F_CLI_ABRT:
2412 metric = mkf_u64(FN_COUNTER, sv->counters.cli_aborts);
2413 break;
2414 case ST_F_SRV_ABRT:
2415 metric = mkf_u64(FN_COUNTER, sv->counters.srv_aborts);
2416 break;
2417 case ST_F_LASTSESS:
2418 metric = mkf_s32(FN_AGE, srv_lastsession(sv));
2419 break;
2420 case ST_F_QTIME:
2421 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.q_time, srv_samples_window));
2422 break;
2423 case ST_F_CTIME:
2424 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.c_time, srv_samples_window));
2425 break;
2426 case ST_F_RTIME:
2427 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.d_time, srv_samples_window));
2428 break;
2429 case ST_F_TTIME:
2430 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.t_time, srv_samples_window));
2431 break;
2432 case ST_F_QT_MAX:
2433 metric = mkf_u32(FN_MAX, sv->counters.qtime_max);
2434 break;
2435 case ST_F_CT_MAX:
2436 metric = mkf_u32(FN_MAX, sv->counters.ctime_max);
2437 break;
2438 case ST_F_RT_MAX:
2439 metric = mkf_u32(FN_MAX, sv->counters.dtime_max);
2440 break;
2441 case ST_F_TT_MAX:
2442 metric = mkf_u32(FN_MAX, sv->counters.ttime_max);
2443 break;
2444 case ST_F_ADDR:
2445 if (flags & STAT_SHLGNDS) {
2446 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2447 case AF_INET:
2448 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2449 chunk_appendf(out, "%s:%d", str, sv->svc_port);
2450 break;
2451 case AF_INET6:
2452 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2453 chunk_appendf(out, "[%s]:%d", str, sv->svc_port);
2454 break;
2455 case AF_UNIX:
2456 metric = mkf_str(FO_CONFIG|FS_SERVICE, "unix");
2457 break;
2458 case -1:
2459 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2460 chunk_strcat(out, strerror(errno));
2461 break;
2462 default: /* address family not supported */
2463 break;
2464 }
2465 }
2466 break;
2467 case ST_F_COOKIE:
2468 if (flags & STAT_SHLGNDS && sv->cookie)
2469 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, sv->cookie);
2470 break;
2471 default:
2472 /* not used for servers. If a specific metric
2473 * is requested, return an error. Otherwise continue.
2474 */
2475 if (selected_field != NULL)
2476 return 0;
2477 continue;
William Lallemand74c24fb2016-11-21 17:18:36 +01002478 }
William Dauchyd3a9a492021-01-25 17:29:03 +01002479 stats[current_field] = metric;
2480 if (selected_field != NULL)
2481 break;
William Lallemand74c24fb2016-11-21 17:18:36 +01002482 }
William Lallemand74c24fb2016-11-21 17:18:36 +01002483 return 1;
2484}
2485
2486/* Dumps a line for server <sv> and proxy <px> to the trash and uses the state
Willy Tarreau43241ff2019-10-09 11:27:51 +02002487 * from stream interface <si>, and server state <state>. The caller is
2488 * responsible for clearing the trash if needed. Returns non-zero if it emits
2489 * anything, zero otherwise.
William Lallemand74c24fb2016-11-21 17:18:36 +01002490 */
Willy Tarreau43241ff2019-10-09 11:27:51 +02002491static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, struct server *sv)
William Lallemand74c24fb2016-11-21 17:18:36 +01002492{
Christopher Faulet693b23b2022-02-28 09:09:05 +01002493 struct appctx *appctx = __cs_appctx(si->cs);
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002494 struct stats_module *mod;
2495 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
2496 size_t stats_count = ST_F_TOTAL_FIELDS;
2497
2498 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
William Lallemand74c24fb2016-11-21 17:18:36 +01002499
William Dauchyd3a9a492021-01-25 17:29:03 +01002500 if (!stats_fill_sv_stats(px, sv, appctx->ctx.stats.flags, stats,
2501 ST_F_TOTAL_FIELDS, NULL))
William Lallemand74c24fb2016-11-21 17:18:36 +01002502 return 0;
2503
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002504 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2505 void *counters;
2506
2507 if (stats_get_domain(mod->domain_flags) != STATS_DOMAIN_PROXY)
2508 continue;
2509
2510 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_SRV)) {
2511 stats_count += mod->stats_count;
2512 continue;
2513 }
2514
2515 counters = EXTRA_COUNTERS_GET(sv->extra_counters, mod);
2516 mod->fill_stats(counters, stats + stats_count);
2517 stats_count += mod->stats_count;
2518 }
2519
2520 return stats_dump_one_line(stats, stats_count, appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01002521}
2522
William Dauchyda3b4662021-01-25 17:29:01 +01002523/* Helper to compute srv values for a given backend
William Lallemand74c24fb2016-11-21 17:18:36 +01002524 */
William Dauchyda3b4662021-01-25 17:29:01 +01002525static void stats_fill_be_stats_computesrv(struct proxy *px, int *nbup, int *nbsrv, int *totuw)
William Lallemand74c24fb2016-11-21 17:18:36 +01002526{
William Dauchyda3b4662021-01-25 17:29:01 +01002527 int nbup_tmp, nbsrv_tmp, totuw_tmp;
Willy Tarreau2fbe6942020-10-23 18:02:54 +02002528 const struct server *srv;
William Lallemand74c24fb2016-11-21 17:18:36 +01002529
William Dauchyda3b4662021-01-25 17:29:01 +01002530 nbup_tmp = nbsrv_tmp = totuw_tmp = 0;
Willy Tarreaubd715102020-10-23 22:44:30 +02002531 for (srv = px->srv; srv; srv = srv->next) {
2532 if (srv->cur_state != SRV_ST_STOPPED) {
William Dauchyda3b4662021-01-25 17:29:01 +01002533 nbup_tmp++;
Willy Tarreaubd715102020-10-23 22:44:30 +02002534 if (srv_currently_usable(srv) &&
2535 (!px->srv_act ^ !(srv->flags & SRV_F_BACKUP)))
William Dauchyda3b4662021-01-25 17:29:01 +01002536 totuw_tmp += srv->uweight;
Willy Tarreau2fbe6942020-10-23 18:02:54 +02002537 }
William Dauchyda3b4662021-01-25 17:29:01 +01002538 nbsrv_tmp++;
Willy Tarreau2fbe6942020-10-23 18:02:54 +02002539 }
2540
Willy Tarreaubd715102020-10-23 22:44:30 +02002541 HA_RWLOCK_RDLOCK(LBPRM_LOCK, &px->lbprm.lock);
2542 if (!px->srv_act && px->lbprm.fbck)
William Dauchyda3b4662021-01-25 17:29:01 +01002543 totuw_tmp = px->lbprm.fbck->uweight;
Willy Tarreaubd715102020-10-23 22:44:30 +02002544 HA_RWLOCK_RDUNLOCK(LBPRM_LOCK, &px->lbprm.lock);
2545
William Dauchyda3b4662021-01-25 17:29:01 +01002546 /* use tmp variable then assign result to make gcc happy */
2547 *nbup = nbup_tmp;
2548 *nbsrv = nbsrv_tmp;
2549 *totuw = totuw_tmp;
2550}
Willy Tarreau2fbe6942020-10-23 18:02:54 +02002551
William Dauchyda3b4662021-01-25 17:29:01 +01002552/* Fill <stats> with the backend statistics. <stats> is preallocated array of
2553 * length <len>. If <selected_field> is != NULL, only fill this one. The length
2554 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
2555 * this value, or if the selected field is not implemented for backends, the
2556 * function returns 0, otherwise, it returns 1. <flags> can take the value
2557 * STAT_SHLGNDS.
2558 */
2559int stats_fill_be_stats(struct proxy *px, int flags, struct field *stats, int len,
2560 enum stat_field *selected_field)
2561{
2562 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
2563 long long be_samples_counter;
2564 unsigned int be_samples_window = TIME_STATS_SAMPLES;
2565 struct buffer *out = get_trash_chunk();
2566 int nbup, nbsrv, totuw;
2567 char *fld;
William Lallemand74c24fb2016-11-21 17:18:36 +01002568
William Dauchyda3b4662021-01-25 17:29:01 +01002569 if (len < ST_F_TOTAL_FIELDS)
2570 return 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01002571
William Dauchyda3b4662021-01-25 17:29:01 +01002572 nbup = nbsrv = totuw = 0;
2573 /* some srv values compute for later if we either select all fields or
2574 * need them for one of the mentioned ones */
2575 if (selected_field == NULL || *selected_field == ST_F_STATUS ||
2576 *selected_field == ST_F_UWEIGHT)
2577 stats_fill_be_stats_computesrv(px, &nbup, &nbsrv, &totuw);
William Lallemand74c24fb2016-11-21 17:18:36 +01002578
William Dauchyda3b4662021-01-25 17:29:01 +01002579 /* same here but specific to time fields */
2580 if (selected_field == NULL || *selected_field == ST_F_QTIME ||
2581 *selected_field == ST_F_CTIME || *selected_field == ST_F_RTIME ||
2582 *selected_field == ST_F_TTIME) {
2583 be_samples_counter = (px->mode == PR_MODE_HTTP) ? px->be_counters.p.http.cum_req : px->be_counters.cum_lbconn;
2584 if (be_samples_counter < TIME_STATS_SAMPLES && be_samples_counter > 0)
2585 be_samples_window = be_samples_counter;
William Lallemand74c24fb2016-11-21 17:18:36 +01002586 }
2587
William Dauchyda3b4662021-01-25 17:29:01 +01002588 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
2589 struct field metric = { 0 };
William Lallemand74c24fb2016-11-21 17:18:36 +01002590
William Dauchyda3b4662021-01-25 17:29:01 +01002591 switch (current_field) {
2592 case ST_F_PXNAME:
2593 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
2594 break;
2595 case ST_F_SVNAME:
2596 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, "BACKEND");
2597 break;
2598 case ST_F_MODE:
2599 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
2600 break;
2601 case ST_F_QCUR:
Willy Tarreau7f3c1df2021-06-18 09:22:21 +02002602 metric = mkf_u32(0, px->queue.length);
William Dauchyda3b4662021-01-25 17:29:01 +01002603 break;
2604 case ST_F_QMAX:
2605 metric = mkf_u32(FN_MAX, px->be_counters.nbpend_max);
2606 break;
2607 case ST_F_SCUR:
2608 metric = mkf_u32(0, px->beconn);
2609 break;
2610 case ST_F_SMAX:
2611 metric = mkf_u32(FN_MAX, px->be_counters.conn_max);
2612 break;
2613 case ST_F_SLIM:
2614 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->fullconn);
2615 break;
2616 case ST_F_STOT:
2617 metric = mkf_u64(FN_COUNTER, px->be_counters.cum_conn);
2618 break;
2619 case ST_F_BIN:
2620 metric = mkf_u64(FN_COUNTER, px->be_counters.bytes_in);
2621 break;
2622 case ST_F_BOUT:
2623 metric = mkf_u64(FN_COUNTER, px->be_counters.bytes_out);
2624 break;
2625 case ST_F_DREQ:
2626 metric = mkf_u64(FN_COUNTER, px->be_counters.denied_req);
2627 break;
2628 case ST_F_DRESP:
2629 metric = mkf_u64(FN_COUNTER, px->be_counters.denied_resp);
2630 break;
2631 case ST_F_ECON:
2632 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_conns);
2633 break;
2634 case ST_F_ERESP:
2635 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_resp);
2636 break;
2637 case ST_F_WRETR:
2638 metric = mkf_u64(FN_COUNTER, px->be_counters.retries);
2639 break;
2640 case ST_F_WREDIS:
2641 metric = mkf_u64(FN_COUNTER, px->be_counters.redispatches);
2642 break;
2643 case ST_F_WREW:
2644 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_rewrites);
2645 break;
2646 case ST_F_EINT:
2647 metric = mkf_u64(FN_COUNTER, px->be_counters.internal_errors);
2648 break;
2649 case ST_F_CONNECT:
2650 metric = mkf_u64(FN_COUNTER, px->be_counters.connect);
2651 break;
2652 case ST_F_REUSE:
2653 metric = mkf_u64(FN_COUNTER, px->be_counters.reuse);
2654 break;
2655 case ST_F_STATUS:
2656 fld = chunk_newstr(out);
2657 chunk_appendf(out, "%s", (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN");
2658 if (flags & (STAT_HIDE_MAINT|STAT_HIDE_DOWN))
2659 chunk_appendf(out, " (%d/%d)", nbup, nbsrv);
2660 metric = mkf_str(FO_STATUS, fld);
2661 break;
William Dauchy42d7c402021-11-07 10:18:47 +01002662 case ST_F_AGG_SRV_CHECK_STATUS:
2663 metric = mkf_u32(FN_GAUGE, 0);
2664 break;
William Dauchyda3b4662021-01-25 17:29:01 +01002665 case ST_F_WEIGHT:
2666 metric = mkf_u32(FN_AVG, (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv);
2667 break;
2668 case ST_F_UWEIGHT:
2669 metric = mkf_u32(FN_AVG, totuw);
2670 break;
2671 case ST_F_ACT:
2672 metric = mkf_u32(0, px->srv_act);
2673 break;
2674 case ST_F_BCK:
2675 metric = mkf_u32(0, px->srv_bck);
2676 break;
2677 case ST_F_CHKDOWN:
2678 metric = mkf_u64(FN_COUNTER, px->down_trans);
2679 break;
2680 case ST_F_LASTCHG:
2681 metric = mkf_u32(FN_AGE, now.tv_sec - px->last_change);
2682 break;
2683 case ST_F_DOWNTIME:
2684 if (px->srv)
2685 metric = mkf_u32(FN_COUNTER, be_downtime(px));
2686 break;
2687 case ST_F_PID:
Willy Tarreaue8422bf2021-06-15 09:08:18 +02002688 metric = mkf_u32(FO_KEY, 1);
William Dauchyda3b4662021-01-25 17:29:01 +01002689 break;
2690 case ST_F_IID:
2691 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
2692 break;
2693 case ST_F_SID:
2694 metric = mkf_u32(FO_KEY|FS_SERVICE, 0);
2695 break;
2696 case ST_F_LBTOT:
2697 metric = mkf_u64(FN_COUNTER, px->be_counters.cum_lbconn);
2698 break;
2699 case ST_F_TYPE:
2700 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_BE);
2701 break;
2702 case ST_F_RATE:
2703 metric = mkf_u32(0, read_freq_ctr(&px->be_sess_per_sec));
2704 break;
2705 case ST_F_RATE_MAX:
2706 metric = mkf_u32(0, px->be_counters.sps_max);
2707 break;
2708 case ST_F_COOKIE:
2709 if (flags & STAT_SHLGNDS && px->cookie_name)
2710 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, px->cookie_name);
2711 break;
2712 case ST_F_ALGO:
2713 if (flags & STAT_SHLGNDS)
2714 metric = mkf_str(FO_CONFIG|FS_SERVICE, backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
2715 break;
2716 case ST_F_REQ_TOT:
2717 if (px->mode == PR_MODE_HTTP)
2718 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cum_req);
2719 break;
2720 case ST_F_HRSP_1XX:
2721 if (px->mode == PR_MODE_HTTP)
2722 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[1]);
2723 break;
2724 case ST_F_HRSP_2XX:
2725 if (px->mode == PR_MODE_HTTP)
2726 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[2]);
2727 break;
2728 case ST_F_HRSP_3XX:
2729 if (px->mode == PR_MODE_HTTP)
2730 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[3]);
2731 break;
2732 case ST_F_HRSP_4XX:
2733 if (px->mode == PR_MODE_HTTP)
2734 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[4]);
2735 break;
2736 case ST_F_HRSP_5XX:
2737 if (px->mode == PR_MODE_HTTP)
2738 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[5]);
2739 break;
2740 case ST_F_HRSP_OTHER:
2741 if (px->mode == PR_MODE_HTTP)
2742 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[0]);
2743 break;
2744 case ST_F_CACHE_LOOKUPS:
2745 if (px->mode == PR_MODE_HTTP)
2746 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_lookups);
2747 break;
2748 case ST_F_CACHE_HITS:
2749 if (px->mode == PR_MODE_HTTP)
2750 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_hits);
2751 break;
2752 case ST_F_CLI_ABRT:
2753 metric = mkf_u64(FN_COUNTER, px->be_counters.cli_aborts);
2754 break;
2755 case ST_F_SRV_ABRT:
2756 metric = mkf_u64(FN_COUNTER, px->be_counters.srv_aborts);
2757 break;
2758 case ST_F_COMP_IN:
2759 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_in);
2760 break;
2761 case ST_F_COMP_OUT:
2762 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_out);
2763 break;
2764 case ST_F_COMP_BYP:
2765 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_byp);
2766 break;
2767 case ST_F_COMP_RSP:
2768 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.comp_rsp);
2769 break;
2770 case ST_F_LASTSESS:
2771 metric = mkf_s32(FN_AGE, be_lastsession(px));
2772 break;
2773 case ST_F_QTIME:
2774 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.q_time, be_samples_window));
2775 break;
2776 case ST_F_CTIME:
2777 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.c_time, be_samples_window));
2778 break;
2779 case ST_F_RTIME:
2780 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.d_time, be_samples_window));
2781 break;
2782 case ST_F_TTIME:
2783 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.t_time, be_samples_window));
2784 break;
2785 case ST_F_QT_MAX:
2786 metric = mkf_u32(FN_MAX, px->be_counters.qtime_max);
2787 break;
2788 case ST_F_CT_MAX:
2789 metric = mkf_u32(FN_MAX, px->be_counters.ctime_max);
2790 break;
2791 case ST_F_RT_MAX:
2792 metric = mkf_u32(FN_MAX, px->be_counters.dtime_max);
2793 break;
2794 case ST_F_TT_MAX:
2795 metric = mkf_u32(FN_MAX, px->be_counters.ttime_max);
2796 break;
2797 default:
2798 /* not used for backends. If a specific metric
2799 * is requested, return an error. Otherwise continue.
2800 */
2801 if (selected_field != NULL)
2802 return 0;
2803 continue;
2804 }
2805 stats[current_field] = metric;
2806 if (selected_field != NULL)
2807 break;
2808 }
William Lallemand74c24fb2016-11-21 17:18:36 +01002809 return 1;
2810}
2811
2812/* Dumps a line for backend <px> to the trash for and uses the state from stream
Willy Tarreau43241ff2019-10-09 11:27:51 +02002813 * interface <si>. The caller is responsible for clearing the trash if needed.
2814 * Returns non-zero if it emits anything, zero otherwise.
William Lallemand74c24fb2016-11-21 17:18:36 +01002815 */
Willy Tarreau43241ff2019-10-09 11:27:51 +02002816static int stats_dump_be_stats(struct stream_interface *si, struct proxy *px)
William Lallemand74c24fb2016-11-21 17:18:36 +01002817{
Christopher Faulet693b23b2022-02-28 09:09:05 +01002818 struct appctx *appctx = __cs_appctx(si->cs);
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002819 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
2820 struct stats_module *mod;
2821 size_t stats_count = ST_F_TOTAL_FIELDS;
William Lallemand74c24fb2016-11-21 17:18:36 +01002822
2823 if (!(px->cap & PR_CAP_BE))
2824 return 0;
2825
2826 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_BE)))
2827 return 0;
2828
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002829 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
2830
William Dauchyda3b4662021-01-25 17:29:01 +01002831 if (!stats_fill_be_stats(px, appctx->ctx.stats.flags, stats, ST_F_TOTAL_FIELDS, NULL))
William Lallemand74c24fb2016-11-21 17:18:36 +01002832 return 0;
2833
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02002834 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2835 struct extra_counters *counters;
2836
2837 if (stats_get_domain(mod->domain_flags) != STATS_DOMAIN_PROXY)
2838 continue;
2839
2840 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_BE)) {
2841 stats_count += mod->stats_count;
2842 continue;
2843 }
2844
2845 counters = EXTRA_COUNTERS_GET(px->extra_counters_be, mod);
2846 mod->fill_stats(counters, stats + stats_count);
2847 stats_count += mod->stats_count;
2848 }
2849
2850 return stats_dump_one_line(stats, stats_count, appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01002851}
2852
2853/* Dumps the HTML table header for proxy <px> to the trash for and uses the state from
2854 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
2855 * for clearing the trash if needed.
2856 */
Willy Tarreau676c29e2019-10-09 10:50:01 +02002857static void stats_dump_html_px_hdr(struct stream_interface *si, struct proxy *px)
William Lallemand74c24fb2016-11-21 17:18:36 +01002858{
Christopher Faulet693b23b2022-02-28 09:09:05 +01002859 struct appctx *appctx = __cs_appctx(si->cs);
William Lallemand74c24fb2016-11-21 17:18:36 +01002860 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02002861 struct stats_module *mod;
2862 int stats_module_len = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01002863
2864 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
2865 /* A form to enable/disable this proxy servers */
2866
2867 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
2868 scope_txt[0] = 0;
2869 if (appctx->ctx.stats.scope_len) {
Christopher Fauleted7a0662019-01-14 11:07:34 +01002870 const char *scope_ptr = stats_scope_ptr(appctx, si);
2871
William Lallemand74c24fb2016-11-21 17:18:36 +01002872 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Christopher Fauleted7a0662019-01-14 11:07:34 +01002873 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, appctx->ctx.stats.scope_len);
William Lallemand74c24fb2016-11-21 17:18:36 +01002874 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
2875 }
2876
2877 chunk_appendf(&trash,
2878 "<form method=\"post\">");
2879 }
2880
2881 /* print a new table */
2882 chunk_appendf(&trash,
2883 "<table class=\"tbl\" width=\"100%%\">\n"
2884 "<tr class=\"titre\">"
2885 "<th class=\"pxname\" width=\"10%%\">");
2886
2887 chunk_appendf(&trash,
2888 "<a name=\"%s\"></a>%s"
2889 "<a class=px href=\"#%s\">%s</a>",
2890 px->id,
Willy Tarreau676c29e2019-10-09 10:50:01 +02002891 (appctx->ctx.stats.flags & STAT_SHLGNDS) ? "<u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01002892 px->id, px->id);
2893
Willy Tarreau676c29e2019-10-09 10:50:01 +02002894 if (appctx->ctx.stats.flags & STAT_SHLGNDS) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002895 /* cap, mode, id */
2896 chunk_appendf(&trash, "<div class=tips>cap: %s, mode: %s, id: %d",
2897 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
2898 px->uuid);
2899 chunk_appendf(&trash, "</div>");
2900 }
2901
2902 chunk_appendf(&trash,
2903 "%s</th>"
2904 "<th class=\"%s\" width=\"90%%\">%s</th>"
2905 "</tr>\n"
2906 "</table>\n"
2907 "<table class=\"tbl\" width=\"100%%\">\n"
2908 "<tr class=\"titre\">",
Willy Tarreau676c29e2019-10-09 10:50:01 +02002909 (appctx->ctx.stats.flags & STAT_SHLGNDS) ? "</u>":"",
William Lallemand74c24fb2016-11-21 17:18:36 +01002910 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
2911
Christopher Fauletbc271ec2019-12-02 11:29:04 +01002912 if (appctx->ctx.stats.flags & STAT_ADMIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01002913 /* Column heading for Enable or Disable server */
Christopher Fauletbc271ec2019-12-02 11:29:04 +01002914 if ((px->cap & PR_CAP_BE) && px->srv)
2915 chunk_appendf(&trash,
2916 "<th rowspan=2 width=1><input type=\"checkbox\" "
2917 "onclick=\"for(c in document.getElementsByClassName('%s-checkbox')) "
2918 "document.getElementsByClassName('%s-checkbox').item(c).checked = this.checked\"></th>",
2919 px->id,
2920 px->id);
2921 else
2922 chunk_appendf(&trash, "<th rowspan=2></th>");
William Lallemand74c24fb2016-11-21 17:18:36 +01002923 }
2924
2925 chunk_appendf(&trash,
2926 "<th rowspan=2></th>"
2927 "<th colspan=3>Queue</th>"
2928 "<th colspan=3>Session rate</th><th colspan=6>Sessions</th>"
2929 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
2930 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02002931 "<th colspan=9>Server</th>");
2932
2933 if (appctx->ctx.stats.flags & STAT_SHMODULES) {
2934 // calculate the count of module for colspan attribute
2935 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2936 ++stats_module_len;
2937 }
2938 chunk_appendf(&trash, "<th colspan=%d>Extra modules</th>",
2939 stats_module_len);
2940 }
2941
2942 chunk_appendf(&trash,
William Lallemand74c24fb2016-11-21 17:18:36 +01002943 "</tr>\n"
2944 "<tr class=\"titre\">"
2945 "<th>Cur</th><th>Max</th><th>Limit</th>"
2946 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
2947 "<th>Limit</th><th>Total</th><th>LbTot</th><th>Last</th><th>In</th><th>Out</th>"
2948 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
2949 "<th>Resp</th><th>Retr</th><th>Redis</th>"
2950 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
2951 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02002952 "<th>Thrtle</th>\n");
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02002953
Amaury Denoyelle0b70a8a2020-10-05 11:49:45 +02002954 if (appctx->ctx.stats.flags & STAT_SHMODULES) {
2955 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2956 chunk_appendf(&trash, "<th>%s</th>", mod->name);
2957 }
Amaury Denoyellee3f576c2020-10-05 11:49:44 +02002958 }
2959
2960 chunk_appendf(&trash, "</tr>");
William Lallemand74c24fb2016-11-21 17:18:36 +01002961}
2962
2963/* Dumps the HTML table trailer for proxy <px> to the trash for and uses the state from
2964 * stream interface <si>. The caller is responsible for clearing the trash if needed.
2965 */
2966static void stats_dump_html_px_end(struct stream_interface *si, struct proxy *px)
2967{
Christopher Faulet693b23b2022-02-28 09:09:05 +01002968 struct appctx *appctx = __cs_appctx(si->cs);
2969
William Lallemand74c24fb2016-11-21 17:18:36 +01002970 chunk_appendf(&trash, "</table>");
2971
2972 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
2973 /* close the form used to enable/disable this proxy servers */
2974 chunk_appendf(&trash,
2975 "Choose the action to perform on the checked servers : "
2976 "<select name=action>"
2977 "<option value=\"\"></option>"
2978 "<option value=\"ready\">Set state to READY</option>"
2979 "<option value=\"drain\">Set state to DRAIN</option>"
2980 "<option value=\"maint\">Set state to MAINT</option>"
2981 "<option value=\"dhlth\">Health: disable checks</option>"
2982 "<option value=\"ehlth\">Health: enable checks</option>"
2983 "<option value=\"hrunn\">Health: force UP</option>"
2984 "<option value=\"hnolb\">Health: force NOLB</option>"
2985 "<option value=\"hdown\">Health: force DOWN</option>"
2986 "<option value=\"dagent\">Agent: disable checks</option>"
2987 "<option value=\"eagent\">Agent: enable checks</option>"
2988 "<option value=\"arunn\">Agent: force UP</option>"
2989 "<option value=\"adown\">Agent: force DOWN</option>"
2990 "<option value=\"shutdown\">Kill Sessions</option>"
2991 "</select>"
2992 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
2993 "&nbsp;<input type=\"submit\" value=\"Apply\">"
2994 "</form>",
2995 px->uuid);
2996 }
2997
2998 chunk_appendf(&trash, "<p>\n");
2999}
3000
3001/*
3002 * Dumps statistics for a proxy. The output is sent to the stream interface's
3003 * input buffer. Returns 0 if it had to stop dumping data because of lack of
3004 * buffer space, or non-zero if everything completed. This function is used
3005 * both by the CLI and the HTTP entry points, and is able to dump the output
3006 * in HTML or CSV formats. If the later, <uri> must be NULL.
3007 */
Christopher Fauletef779222018-10-31 08:47:01 +01003008int stats_dump_proxy_to_buffer(struct stream_interface *si, struct htx *htx,
3009 struct proxy *px, struct uri_auth *uri)
William Lallemand74c24fb2016-11-21 17:18:36 +01003010{
Christopher Faulet693b23b2022-02-28 09:09:05 +01003011 struct appctx *appctx = __cs_appctx(si->cs);
William Lallemand74c24fb2016-11-21 17:18:36 +01003012 struct stream *s = si_strm(si);
3013 struct channel *rep = si_ic(si);
3014 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
3015 struct listener *l;
William Lallemand74c24fb2016-11-21 17:18:36 +01003016
3017 chunk_reset(&trash);
3018
3019 switch (appctx->ctx.stats.px_st) {
3020 case STAT_PX_ST_INIT:
3021 /* we are on a new proxy */
3022 if (uri && uri->scope) {
3023 /* we have a limited scope, we have to check the proxy name */
3024 struct stat_scope *scope;
3025 int len;
3026
3027 len = strlen(px->id);
3028 scope = uri->scope;
3029
3030 while (scope) {
3031 /* match exact proxy name */
3032 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
3033 break;
3034
3035 /* match '.' which means 'self' proxy */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003036 if (strcmp(scope->px_id, ".") == 0 && px == s->be)
William Lallemand74c24fb2016-11-21 17:18:36 +01003037 break;
3038 scope = scope->next;
3039 }
3040
3041 /* proxy name not found : don't dump anything */
3042 if (scope == NULL)
3043 return 1;
3044 }
3045
3046 /* if the user has requested a limited output and the proxy
3047 * name does not match, skip it.
3048 */
Christopher Fauleted7a0662019-01-14 11:07:34 +01003049 if (appctx->ctx.stats.scope_len) {
3050 const char *scope_ptr = stats_scope_ptr(appctx, si);
3051
3052 if (strnistr(px->id, strlen(px->id), scope_ptr, appctx->ctx.stats.scope_len) == NULL)
3053 return 1;
3054 }
William Lallemand74c24fb2016-11-21 17:18:36 +01003055
3056 if ((appctx->ctx.stats.flags & STAT_BOUND) &&
3057 (appctx->ctx.stats.iid != -1) &&
3058 (px->uuid != appctx->ctx.stats.iid))
3059 return 1;
3060
3061 appctx->ctx.stats.px_st = STAT_PX_ST_TH;
3062 /* fall through */
3063
3064 case STAT_PX_ST_TH:
3065 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau676c29e2019-10-09 10:50:01 +02003066 stats_dump_html_px_hdr(si, px);
Christopher Fauletef779222018-10-31 08:47:01 +01003067 if (!stats_putchk(rep, htx, &trash))
3068 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003069 }
3070
3071 appctx->ctx.stats.px_st = STAT_PX_ST_FE;
3072 /* fall through */
3073
3074 case STAT_PX_ST_FE:
3075 /* print the frontend */
3076 if (stats_dump_fe_stats(si, px)) {
Christopher Fauletef779222018-10-31 08:47:01 +01003077 if (!stats_putchk(rep, htx, &trash))
3078 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003079 }
3080
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02003081 appctx->ctx.stats.obj2 = px->conf.listeners.n;
William Lallemand74c24fb2016-11-21 17:18:36 +01003082 appctx->ctx.stats.px_st = STAT_PX_ST_LI;
3083 /* fall through */
3084
3085 case STAT_PX_ST_LI:
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02003086 /* obj2 points to listeners list as initialized above */
3087 for (; appctx->ctx.stats.obj2 != &px->conf.listeners; appctx->ctx.stats.obj2 = l->by_fe.n) {
Christopher Fauletef779222018-10-31 08:47:01 +01003088 if (htx) {
3089 if (htx_almost_full(htx))
3090 goto full;
3091 }
3092 else {
3093 if (buffer_almost_full(&rep->buf))
3094 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003095 }
3096
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02003097 l = LIST_ELEM(appctx->ctx.stats.obj2, struct listener *, by_fe);
William Lallemand74c24fb2016-11-21 17:18:36 +01003098 if (!l->counters)
3099 continue;
3100
3101 if (appctx->ctx.stats.flags & STAT_BOUND) {
3102 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SO)))
3103 break;
3104
3105 if (appctx->ctx.stats.sid != -1 && l->luid != appctx->ctx.stats.sid)
3106 continue;
3107 }
3108
3109 /* print the frontend */
Willy Tarreau43241ff2019-10-09 11:27:51 +02003110 if (stats_dump_li_stats(si, px, l)) {
Christopher Fauletef779222018-10-31 08:47:01 +01003111 if (!stats_putchk(rep, htx, &trash))
3112 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003113 }
3114 }
3115
Amaury Denoyelleda5b6d12020-10-02 18:32:02 +02003116 appctx->ctx.stats.obj2 = px->srv; /* may be NULL */
William Lallemand74c24fb2016-11-21 17:18:36 +01003117 appctx->ctx.stats.px_st = STAT_PX_ST_SV;
3118 /* fall through */
3119
3120 case STAT_PX_ST_SV:
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003121 /* obj2 points to servers list as initialized above.
3122 *
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02003123 * A server may be removed during the stats dumping.
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003124 * Temporarily increment its refcount to prevent its
3125 * anticipated cleaning. Call free_server to release it.
3126 */
3127 for (; appctx->ctx.stats.obj2 != NULL;
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02003128 appctx->ctx.stats.obj2 = srv_drop(sv)) {
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003129
3130 sv = appctx->ctx.stats.obj2;
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02003131 srv_take(sv);
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003132
Christopher Fauletef779222018-10-31 08:47:01 +01003133 if (htx) {
3134 if (htx_almost_full(htx))
3135 goto full;
3136 }
3137 else {
3138 if (buffer_almost_full(&rep->buf))
3139 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003140 }
3141
William Lallemand74c24fb2016-11-21 17:18:36 +01003142 if (appctx->ctx.stats.flags & STAT_BOUND) {
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003143 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SV))) {
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02003144 srv_drop(sv);
William Lallemand74c24fb2016-11-21 17:18:36 +01003145 break;
Amaury Denoyelle0a8d05d2021-08-25 14:39:53 +02003146 }
William Lallemand74c24fb2016-11-21 17:18:36 +01003147
3148 if (appctx->ctx.stats.sid != -1 && sv->puid != appctx->ctx.stats.sid)
3149 continue;
3150 }
3151
Willy Tarreau3e320362020-10-23 17:28:57 +02003152 /* do not report disabled servers */
3153 if (appctx->ctx.stats.flags & STAT_HIDE_MAINT &&
3154 sv->cur_admin & SRV_ADMF_MAINT) {
3155 continue;
3156 }
3157
William Lallemand74c24fb2016-11-21 17:18:36 +01003158 svs = sv;
3159 while (svs->track)
3160 svs = svs->track;
3161
3162 /* do not report servers which are DOWN and not changing state */
3163 if ((appctx->ctx.stats.flags & STAT_HIDE_DOWN) &&
Emeric Brun52a91d32017-08-31 14:41:55 +02003164 ((sv->cur_admin & SRV_ADMF_MAINT) || /* server is in maintenance */
3165 (sv->cur_state == SRV_ST_STOPPED && /* server is down */
William Lallemand74c24fb2016-11-21 17:18:36 +01003166 (!((svs->agent.state | svs->check.state) & CHK_ST_ENABLED) ||
3167 ((svs->agent.state & CHK_ST_ENABLED) && !svs->agent.health) ||
3168 ((svs->check.state & CHK_ST_ENABLED) && !svs->check.health))))) {
3169 continue;
3170 }
3171
Willy Tarreau43241ff2019-10-09 11:27:51 +02003172 if (stats_dump_sv_stats(si, px, sv)) {
Christopher Fauletef779222018-10-31 08:47:01 +01003173 if (!stats_putchk(rep, htx, &trash))
3174 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003175 }
3176 } /* for sv */
3177
3178 appctx->ctx.stats.px_st = STAT_PX_ST_BE;
3179 /* fall through */
3180
3181 case STAT_PX_ST_BE:
3182 /* print the backend */
Willy Tarreau43241ff2019-10-09 11:27:51 +02003183 if (stats_dump_be_stats(si, px)) {
Christopher Fauletef779222018-10-31 08:47:01 +01003184 if (!stats_putchk(rep, htx, &trash))
3185 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003186 }
3187
3188 appctx->ctx.stats.px_st = STAT_PX_ST_END;
3189 /* fall through */
3190
3191 case STAT_PX_ST_END:
3192 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
3193 stats_dump_html_px_end(si, px);
Christopher Fauletef779222018-10-31 08:47:01 +01003194 if (!stats_putchk(rep, htx, &trash))
3195 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003196 }
3197
3198 appctx->ctx.stats.px_st = STAT_PX_ST_FIN;
3199 /* fall through */
3200
3201 case STAT_PX_ST_FIN:
3202 return 1;
3203
3204 default:
3205 /* unknown state, we should put an abort() here ! */
3206 return 1;
3207 }
Christopher Fauletef779222018-10-31 08:47:01 +01003208
3209 full:
3210 si_rx_room_blk(si);
3211 return 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01003212}
3213
3214/* Dumps the HTTP stats head block to the trash for and uses the per-uri
3215 * parameters <uri>. The caller is responsible for clearing the trash if needed.
3216 */
Willy Tarreau676c29e2019-10-09 10:50:01 +02003217static void stats_dump_html_head(struct appctx *appctx, struct uri_auth *uri)
William Lallemand74c24fb2016-11-21 17:18:36 +01003218{
3219 /* WARNING! This must fit in the first buffer !!! */
3220 chunk_appendf(&trash,
3221 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3222 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3223 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
Thierry Fournierb6b1cde2021-09-24 00:03:07 +02003224 "<link rel=\"icon\" href=\"data:,\">\n"
William Lallemand74c24fb2016-11-21 17:18:36 +01003225 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3226 "<style type=\"text/css\"><!--\n"
3227 "body {"
3228 " font-family: arial, helvetica, sans-serif;"
3229 " font-size: 12px;"
3230 " font-weight: normal;"
3231 " color: black;"
3232 " background: white;"
3233 "}\n"
3234 "th,td {"
3235 " font-size: 10px;"
3236 "}\n"
3237 "h1 {"
3238 " font-size: x-large;"
3239 " margin-bottom: 0.5em;"
3240 "}\n"
3241 "h2 {"
3242 " font-family: helvetica, arial;"
3243 " font-size: x-large;"
3244 " font-weight: bold;"
3245 " font-style: italic;"
3246 " color: #6020a0;"
3247 " margin-top: 0em;"
3248 " margin-bottom: 0em;"
3249 "}\n"
3250 "h3 {"
3251 " font-family: helvetica, arial;"
3252 " font-size: 16px;"
3253 " font-weight: bold;"
3254 " color: #b00040;"
3255 " background: #e8e8d0;"
3256 " margin-top: 0em;"
3257 " margin-bottom: 0em;"
3258 "}\n"
3259 "li {"
3260 " margin-top: 0.25em;"
3261 " margin-right: 2em;"
3262 "}\n"
3263 ".hr {margin-top: 0.25em;"
3264 " border-color: black;"
3265 " border-bottom-style: solid;"
3266 "}\n"
3267 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3268 ".total {background: #20D0D0;color: #ffff80;}\n"
3269 ".frontend {background: #e8e8d0;}\n"
3270 ".socket {background: #d0d0d0;}\n"
3271 ".backend {background: #e8e8d0;}\n"
3272 ".active_down {background: #ff9090;}\n"
3273 ".active_going_up {background: #ffd020;}\n"
3274 ".active_going_down {background: #ffffa0;}\n"
3275 ".active_up {background: #c0ffc0;}\n"
3276 ".active_nolb {background: #20a0ff;}\n"
3277 ".active_draining {background: #20a0FF;}\n"
3278 ".active_no_check {background: #e0e0e0;}\n"
3279 ".backup_down {background: #ff9090;}\n"
3280 ".backup_going_up {background: #ff80ff;}\n"
3281 ".backup_going_down {background: #c060ff;}\n"
3282 ".backup_up {background: #b0d0ff;}\n"
3283 ".backup_nolb {background: #90b0e0;}\n"
3284 ".backup_draining {background: #cc9900;}\n"
3285 ".backup_no_check {background: #e0e0e0;}\n"
3286 ".maintain {background: #c07820;}\n"
3287 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3288 "\n"
3289 "a.px:link {color: #ffff40; text-decoration: none;}"
3290 "a.px:visited {color: #ffff40; text-decoration: none;}"
3291 "a.px:hover {color: #ffffff; text-decoration: none;}"
3292 "a.lfsb:link {color: #000000; text-decoration: none;}"
3293 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3294 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3295 "\n"
3296 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3297 "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"
3298 "table.tbl td.ac { text-align: center;}\n"
3299 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3300 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3301 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3302 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3303 "\n"
3304 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3305 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3306 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
3307 "table.det { border-collapse: collapse; border-style: none; }\n"
3308 "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"
3309 "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"
3310 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Thierry Fournierb6b1cde2021-09-24 00:03:07 +02003311 "div.tips {\n"
3312 " display:block;\n"
3313 " visibility:hidden;\n"
3314 " z-index:2147483647;\n"
3315 " position:absolute;\n"
3316 " padding:2px 4px 3px;\n"
3317 " background:#f0f060; color:#000000;\n"
3318 " border:1px solid #7040c0;\n"
3319 " white-space:nowrap;\n"
3320 " font-style:normal;font-size:11px;font-weight:normal;\n"
3321 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
3322 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
3323 "}\n"
3324 "u:hover div.tips {visibility:visible;}\n"
Thierry Fourniere9ed63e2021-09-23 23:59:49 +02003325 "@media (prefers-color-scheme: dark) {\n"
3326 " body { font-family: arial, helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #e8e6e3; background: #131516;}\n"
3327 " h1 { color: #a265e0!important; }\n"
3328 " h2 { color: #a265e0; }\n"
3329 " h3 { color: #ff5190; background-color: #3e3e1f; }\n"
3330 " a { color: #3391ff; }\n"
3331 " input { background-color: #2f3437; }\n"
3332 " .hr { border-color: #8c8273; }\n"
3333 " .titre { background-color: #1aa6a6; color: #e8e6e3; }\n"
3334 " .frontend {background: #2f3437;}\n"
3335 " .backend {background: #2f3437;}\n"
3336 " .active_down {background: #760000;}\n"
3337 " .active_going_up {background: #b99200;}\n"
3338 " .active_going_down {background: #6c6c00;}\n"
3339 " .active_up {background: #165900;}\n"
3340 " .active_nolb {background: #006ab9;}\n"
3341 " .active_draining {background: #006ab9;}\n"
3342 " .active_no_check {background: #2a2d2f;}\n"
3343 " .backup_down {background: #760000;}\n"
3344 " .backup_going_up {background: #7f007f;}\n"
3345 " .backup_going_down {background: #580092;}\n"
3346 " .backup_up {background: #2e3234;}\n"
3347 " .backup_nolb {background: #1e3c6a;}\n"
3348 " .backup_draining {background: #a37a00;}\n"
3349 " .backup_no_check {background: #2a2d2f;}\n"
3350 " .maintain {background: #9a601a;}\n"
3351 " a.px:link {color: #d8d83b; text-decoration: none;}\n"
3352 " a.px:visited {color: #d8d83b; text-decoration: none;}\n"
3353 " a.px:hover {color: #ffffff; text-decoration: none;}\n"
3354 " a.lfsb:link {color: #e8e6e3; text-decoration: none;}\n"
3355 " a.lfsb:visited {color: #e8e6e3; text-decoration: none;}\n"
3356 " a.lfsb:hover {color: #b5afa6; text-decoration: none;}\n"
3357 " table.tbl th.empty { background-color: #181a1b; }\n"
3358 " table.tbl th.pxname { background-color: #8d0033; color: #ffff46; }\n"
3359 " table.tbl th { border-color: #808080; }\n"
3360 " table.tbl td { border-color: #808080; }\n"
3361 " u {text-decoration:none; border-bottom: 1px dotted #e8e6e3;}\n"
3362 " div.tips {\n"
3363 " background:#8e8e0d;\n"
3364 " color:#e8e6e3;\n"
3365 " border-color: #4e2c86;\n"
3366 " -moz-box-shadow: #60686c 2px 2px 3px;\n"
3367 " -webkit-box-shadow: #60686c 2px 2px 3px;\n"
3368 " box-shadow: #60686c 2px 2px 3px;\n"
3369 " }\n"
3370 "}\n"
William Lallemand74c24fb2016-11-21 17:18:36 +01003371 "-->\n"
3372 "</style></head>\n",
Willy Tarreau676c29e2019-10-09 10:50:01 +02003373 (appctx->ctx.stats.flags & STAT_SHNODE) ? " on " : "",
Willy Tarreau027d2062020-01-23 11:47:13 +01003374 (appctx->ctx.stats.flags & STAT_SHNODE) ? (uri && uri->node ? uri->node : global.node) : ""
William Lallemand74c24fb2016-11-21 17:18:36 +01003375 );
3376}
3377
3378/* Dumps the HTML stats information block to the trash for and uses the state from
3379 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
3380 * for clearing the trash if needed.
3381 */
3382static void stats_dump_html_info(struct stream_interface *si, struct uri_auth *uri)
3383{
Christopher Faulet693b23b2022-02-28 09:09:05 +01003384 struct appctx *appctx = __cs_appctx(si->cs);
William Lallemand74c24fb2016-11-21 17:18:36 +01003385 unsigned int up = (now.tv_sec - start_date.tv_sec);
3386 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Christopher Fauleted7a0662019-01-14 11:07:34 +01003387 const char *scope_ptr = stats_scope_ptr(appctx, si);
Willy Tarreau1713c032019-05-23 12:23:55 +02003388 unsigned long long bps = (unsigned long long)read_freq_ctr(&global.out_32bps) * 32;
3389
3390 /* Turn the bytes per second to bits per second and take care of the
3391 * usual ethernet overhead in order to help figure how far we are from
3392 * interface saturation since it's the only case which usually matters.
3393 * For this we count the total size of an Ethernet frame on the wire
3394 * including preamble and IFG (1538) for the largest TCP segment it
3395 * transports (1448 with TCP timestamps). This is not valid for smaller
3396 * packets (under-estimated), but it gives a reasonably accurate
3397 * estimation of how far we are from uplink saturation.
3398 */
3399 bps = bps * 8 * 1538 / 1448;
William Lallemand74c24fb2016-11-21 17:18:36 +01003400
3401 /* WARNING! this has to fit the first packet too.
3402 * We are around 3.5 kB, add adding entries will
3403 * become tricky if we want to support 4kB buffers !
3404 */
3405 chunk_appendf(&trash,
3406 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
3407 PRODUCT_NAME "%s</a></h1>\n"
3408 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
3409 "<hr width=\"100%%\" class=\"hr\">\n"
3410 "<h3>&gt; General process information</h3>\n"
3411 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
Yves Lafon95317282018-02-26 11:10:37 +01003412 "<p><b>pid = </b> %d (process #%d, nbproc = %d, nbthread = %d)<br>\n"
William Lallemand74c24fb2016-11-21 17:18:36 +01003413 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
3414 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
3415 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
Willy Tarreau1713c032019-05-23 12:23:55 +02003416 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec; bit rate = %.3f %cbps<br>\n"
William Lallemand74c24fb2016-11-21 17:18:36 +01003417 "Running tasks: %d/%d; idle = %d %%<br>\n"
3418 "</td><td align=\"center\" nowrap>\n"
3419 "<table class=\"lgd\"><tr>\n"
3420 "<td class=\"active_up\">&nbsp;</td><td class=\"noborder\">active UP </td>"
3421 "<td class=\"backup_up\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
3422 "</tr><tr>\n"
3423 "<td class=\"active_going_down\"></td><td class=\"noborder\">active UP, going down </td>"
3424 "<td class=\"backup_going_down\"></td><td class=\"noborder\">backup UP, going down </td>"
3425 "</tr><tr>\n"
3426 "<td class=\"active_going_up\"></td><td class=\"noborder\">active DOWN, going up </td>"
3427 "<td class=\"backup_going_up\"></td><td class=\"noborder\">backup DOWN, going up </td>"
3428 "</tr><tr>\n"
3429 "<td class=\"active_down\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
3430 "<td class=\"active_no_check\"></td><td class=\"noborder\">not checked </td>"
3431 "</tr><tr>\n"
3432 "<td class=\"maintain\"></td><td class=\"noborder\" colspan=\"3\">active or backup DOWN for maintenance (MAINT) &nbsp;</td>"
3433 "</tr><tr>\n"
3434 "<td class=\"active_draining\"></td><td class=\"noborder\" colspan=\"3\">active or backup SOFT STOPPED for maintenance &nbsp;</td>"
3435 "</tr></table>\n"
3436 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
3437 "</td>"
3438 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3439 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
3440 "",
Willy Tarreau676c29e2019-10-09 10:50:01 +02003441 (appctx->ctx.stats.flags & STAT_HIDEVER) ? "" : (stats_version_string),
3442 pid, (appctx->ctx.stats.flags & STAT_SHNODE) ? " on " : "",
3443 (appctx->ctx.stats.flags & STAT_SHNODE) ? (uri->node ? uri->node : global.node) : "",
3444 (appctx->ctx.stats.flags & STAT_SHDESC) ? ": " : "",
3445 (appctx->ctx.stats.flags & STAT_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
Willy Tarreaue8422bf2021-06-15 09:08:18 +02003446 pid, 1, 1, global.nbthread,
William Lallemand74c24fb2016-11-21 17:18:36 +01003447 up / 86400, (up % 86400) / 3600,
3448 (up % 3600) / 60, (up % 60),
3449 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
3450 global.rlimit_memmax ? " MB" : "",
3451 global.rlimit_nofile,
3452 global.maxsock, global.maxconn, global.maxpipes,
3453 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
Willy Tarreau1713c032019-05-23 12:23:55 +02003454 bps >= 1000000000UL ? (bps / 1000000000.0) : bps >= 1000000UL ? (bps / 1000000.0) : (bps / 1000.0),
3455 bps >= 1000000000UL ? 'G' : bps >= 1000000UL ? 'M' : 'k',
Willy Tarreauf9d5e102021-10-08 10:43:59 +02003456 total_run_queues(), total_allocated_tasks(), clock_report_idle()
William Lallemand74c24fb2016-11-21 17:18:36 +01003457 );
3458
3459 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Christopher Fauleted7a0662019-01-14 11:07:34 +01003460 memcpy(scope_txt, scope_ptr, appctx->ctx.stats.scope_len);
William Lallemand74c24fb2016-11-21 17:18:36 +01003461 scope_txt[appctx->ctx.stats.scope_len] = '\0';
3462
3463 chunk_appendf(&trash,
3464 "<li><form method=\"GET\">Scope : <input value=\"%s\" name=\"" STAT_SCOPE_INPUT_NAME "\" size=\"8\" maxlength=\"%d\" tabindex=\"1\"/></form>\n",
3465 (appctx->ctx.stats.scope_len > 0) ? scope_txt : "",
3466 STAT_SCOPE_TXT_MAXLEN);
3467
3468 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3469 scope_txt[0] = 0;
3470 if (appctx->ctx.stats.scope_len) {
3471 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Christopher Fauleted7a0662019-01-14 11:07:34 +01003472 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, appctx->ctx.stats.scope_len);
William Lallemand74c24fb2016-11-21 17:18:36 +01003473 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
3474 }
3475
3476 if (appctx->ctx.stats.flags & STAT_HIDE_DOWN)
3477 chunk_appendf(&trash,
3478 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
3479 uri->uri_prefix,
3480 "",
3481 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3482 scope_txt);
3483 else
3484 chunk_appendf(&trash,
3485 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
3486 uri->uri_prefix,
3487 ";up",
3488 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3489 scope_txt);
3490
3491 if (uri->refresh > 0) {
3492 if (appctx->ctx.stats.flags & STAT_NO_REFRESH)
3493 chunk_appendf(&trash,
3494 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
3495 uri->uri_prefix,
3496 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3497 "",
3498 scope_txt);
3499 else
3500 chunk_appendf(&trash,
3501 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
3502 uri->uri_prefix,
3503 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3504 ";norefresh",
3505 scope_txt);
3506 }
3507
3508 chunk_appendf(&trash,
3509 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
3510 uri->uri_prefix,
3511 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3512 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3513 scope_txt);
3514
3515 chunk_appendf(&trash,
3516 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
3517 uri->uri_prefix,
3518 (uri->refresh > 0) ? ";norefresh" : "",
3519 scope_txt);
3520
3521 chunk_appendf(&trash,
Christopher Faulet6338a082019-09-09 15:50:54 +02003522 "<li><a href=\"%s;json%s%s\">JSON export</a> (<a href=\"%s;json-schema\">schema</a>)<br>\n",
3523 uri->uri_prefix,
3524 (uri->refresh > 0) ? ";norefresh" : "",
3525 scope_txt, uri->uri_prefix);
3526
3527 chunk_appendf(&trash,
William Lallemand74c24fb2016-11-21 17:18:36 +01003528 "</ul></td>"
3529 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3530 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
3531 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
3532 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
3533 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
3534 "</ul>"
3535 "</td>"
3536 "</tr></table>\n"
3537 ""
3538 );
3539
3540 if (appctx->ctx.stats.st_code) {
3541 switch (appctx->ctx.stats.st_code) {
3542 case STAT_STATUS_DONE:
3543 chunk_appendf(&trash,
3544 "<p><div class=active_up>"
3545 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3546 "Action processed successfully."
3547 "</div>\n", uri->uri_prefix,
3548 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3549 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3550 scope_txt);
3551 break;
3552 case STAT_STATUS_NONE:
3553 chunk_appendf(&trash,
3554 "<p><div class=active_going_down>"
3555 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3556 "Nothing has changed."
3557 "</div>\n", uri->uri_prefix,
3558 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3559 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3560 scope_txt);
3561 break;
3562 case STAT_STATUS_PART:
3563 chunk_appendf(&trash,
3564 "<p><div class=active_going_down>"
3565 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3566 "Action partially processed.<br>"
3567 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
3568 "</div>\n", uri->uri_prefix,
3569 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3570 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3571 scope_txt);
3572 break;
3573 case STAT_STATUS_ERRP:
3574 chunk_appendf(&trash,
3575 "<p><div class=active_down>"
3576 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3577 "Action not processed because of invalid parameters."
3578 "<ul>"
3579 "<li>The action is maybe unknown.</li>"
Christopher Faulet2f9a41d2019-02-27 15:30:57 +01003580 "<li>Invalid key parameter (empty or too long).</li>"
William Lallemand74c24fb2016-11-21 17:18:36 +01003581 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
3582 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
3583 "</ul>"
3584 "</div>\n", uri->uri_prefix,
3585 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3586 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3587 scope_txt);
3588 break;
3589 case STAT_STATUS_EXCD:
3590 chunk_appendf(&trash,
3591 "<p><div class=active_down>"
3592 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3593 "<b>Action not processed : the buffer couldn't store all the data.<br>"
3594 "You should retry with less servers at a time.</b>"
3595 "</div>\n", uri->uri_prefix,
3596 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3597 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3598 scope_txt);
3599 break;
3600 case STAT_STATUS_DENY:
3601 chunk_appendf(&trash,
3602 "<p><div class=active_down>"
3603 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3604 "<b>Action denied.</b>"
3605 "</div>\n", uri->uri_prefix,
3606 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3607 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3608 scope_txt);
3609 break;
Christopher Faulet3c2ecf72019-02-27 16:41:27 +01003610 case STAT_STATUS_IVAL:
3611 chunk_appendf(&trash,
3612 "<p><div class=active_down>"
3613 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3614 "<b>Invalid requests (unsupported method or chunked encoded request).</b>"
3615 "</div>\n", uri->uri_prefix,
3616 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3617 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3618 scope_txt);
3619 break;
William Lallemand74c24fb2016-11-21 17:18:36 +01003620 default:
3621 chunk_appendf(&trash,
3622 "<p><div class=active_no_check>"
3623 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3624 "Unexpected result."
3625 "</div>\n", uri->uri_prefix,
3626 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3627 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3628 scope_txt);
3629 }
3630 chunk_appendf(&trash, "<p>\n");
3631 }
3632}
3633
3634/* Dumps the HTML stats trailer block to the trash. The caller is responsible
3635 * for clearing the trash if needed.
3636 */
3637static void stats_dump_html_end()
3638{
3639 chunk_appendf(&trash, "</body></html>\n");
3640}
3641
Simon Horman05ee2132017-01-04 09:37:25 +01003642/* Dumps the stats JSON header to the trash buffer which. The caller is responsible
3643 * for clearing it if needed.
3644 */
3645static void stats_dump_json_header()
3646{
3647 chunk_strcat(&trash, "[");
3648}
3649
3650
3651/* Dumps the JSON stats trailer block to the trash. The caller is responsible
3652 * for clearing the trash if needed.
3653 */
3654static void stats_dump_json_end()
3655{
3656 chunk_strcat(&trash, "]");
3657}
3658
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003659/* Uses <appctx.ctx.stats.obj1> as a pointer to the current proxy and <obj2> as
3660 * a pointer to the current server/listener.
3661 */
3662static int stats_dump_proxies(struct stream_interface *si,
3663 struct htx *htx,
3664 struct uri_auth *uri)
3665{
Christopher Faulet693b23b2022-02-28 09:09:05 +01003666 struct appctx *appctx = __cs_appctx(si->cs);
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003667 struct channel *rep = si_ic(si);
3668 struct proxy *px;
3669
3670 /* dump proxies */
3671 while (appctx->ctx.stats.obj1) {
3672 if (htx) {
3673 if (htx_almost_full(htx))
3674 goto full;
3675 }
3676 else {
3677 if (buffer_almost_full(&rep->buf))
3678 goto full;
3679 }
3680
3681 px = appctx->ctx.stats.obj1;
Marno Krahmer07954fb2021-06-24 16:51:08 +02003682 /* Skip the global frontend proxies and non-networked ones.
William Lallemand85a16b22021-08-03 13:18:11 +02003683 * Also skip proxies that were disabled in the configuration
Marno Krahmer07954fb2021-06-24 16:51:08 +02003684 * This change allows retrieving stats from "old" proxies after a reload.
3685 */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003686 if (!(px->flags & PR_FL_DISABLED) && px->uuid > 0 &&
William Lallemande7f74622021-07-28 17:45:18 +02003687 (px->cap & (PR_CAP_FE | PR_CAP_BE)) && !(px->cap & PR_CAP_INT)) {
Amaury Denoyelle98b81cb2020-10-02 18:32:04 +02003688 if (stats_dump_proxy_to_buffer(si, htx, px, uri) == 0)
3689 return 0;
3690 }
3691
3692 appctx->ctx.stats.obj1 = px->next;
3693 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
3694 }
3695
3696 return 1;
3697
3698 full:
3699 si_rx_room_blk(si);
3700 return 0;
3701}
3702
William Lallemand74c24fb2016-11-21 17:18:36 +01003703/* This function dumps statistics onto the stream interface's read buffer in
3704 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
3705 * are ignored for CSV format (hence <uri> may be NULL there). It returns 0 if
3706 * it had to stop writing data and an I/O is needed, 1 if the dump is finished
3707 * and the stream must be closed, or -1 in case of any error. This function is
3708 * used by both the CLI and the HTTP handlers.
3709 */
Christopher Fauletef779222018-10-31 08:47:01 +01003710static int stats_dump_stat_to_buffer(struct stream_interface *si, struct htx *htx,
3711 struct uri_auth *uri)
William Lallemand74c24fb2016-11-21 17:18:36 +01003712{
Christopher Faulet693b23b2022-02-28 09:09:05 +01003713 struct appctx *appctx = __cs_appctx(si->cs);
William Lallemand74c24fb2016-11-21 17:18:36 +01003714 struct channel *rep = si_ic(si);
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003715 enum stats_domain domain = appctx->ctx.stats.domain;
William Lallemand74c24fb2016-11-21 17:18:36 +01003716
3717 chunk_reset(&trash);
3718
3719 switch (appctx->st2) {
3720 case STAT_ST_INIT:
3721 appctx->st2 = STAT_ST_HEAD; /* let's start producing data */
3722 /* fall through */
3723
3724 case STAT_ST_HEAD:
3725 if (appctx->ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreau676c29e2019-10-09 10:50:01 +02003726 stats_dump_html_head(appctx, uri);
Christopher Faulet6338a082019-09-09 15:50:54 +02003727 else if (appctx->ctx.stats.flags & STAT_JSON_SCHM)
3728 stats_dump_json_schema(&trash);
Simon Horman05ee2132017-01-04 09:37:25 +01003729 else if (appctx->ctx.stats.flags & STAT_FMT_JSON)
Willy Tarreau9d7fb632017-04-11 07:53:04 +02003730 stats_dump_json_header();
William Lallemand74c24fb2016-11-21 17:18:36 +01003731 else if (!(appctx->ctx.stats.flags & STAT_FMT_TYPED))
Amaury Denoyelle50660a82020-10-05 11:49:39 +02003732 stats_dump_csv_header(appctx->ctx.stats.domain);
William Lallemand74c24fb2016-11-21 17:18:36 +01003733
Christopher Fauletef779222018-10-31 08:47:01 +01003734 if (!stats_putchk(rep, htx, &trash))
3735 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003736
Christopher Faulet6338a082019-09-09 15:50:54 +02003737 if (appctx->ctx.stats.flags & STAT_JSON_SCHM) {
3738 appctx->st2 = STAT_ST_FIN;
3739 return 1;
3740 }
William Lallemand74c24fb2016-11-21 17:18:36 +01003741 appctx->st2 = STAT_ST_INFO;
3742 /* fall through */
3743
3744 case STAT_ST_INFO:
3745 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
3746 stats_dump_html_info(si, uri);
Christopher Fauletef779222018-10-31 08:47:01 +01003747 if (!stats_putchk(rep, htx, &trash))
3748 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003749 }
3750
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003751 if (domain == STATS_DOMAIN_PROXY)
3752 appctx->ctx.stats.obj1 = proxies_list;
3753
William Lallemand74c24fb2016-11-21 17:18:36 +01003754 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
3755 appctx->st2 = STAT_ST_LIST;
3756 /* fall through */
3757
3758 case STAT_ST_LIST:
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003759 switch (domain) {
Emeric Brunf8642ee2021-10-29 17:59:18 +02003760 case STATS_DOMAIN_RESOLVERS:
Emeric Brund3b44952021-01-06 16:01:02 +01003761 if (!stats_dump_resolvers(si, stat_l[domain],
3762 stat_count[domain],
3763 &stats_module_list[domain])) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003764 return 0;
3765 }
3766 break;
3767
3768 case STATS_DOMAIN_PROXY:
3769 default:
3770 /* dump proxies */
3771 if (!stats_dump_proxies(si, htx, uri))
3772 return 0;
3773 break;
3774 }
William Lallemand74c24fb2016-11-21 17:18:36 +01003775
3776 appctx->st2 = STAT_ST_END;
3777 /* fall through */
3778
3779 case STAT_ST_END:
Simon Horman05ee2132017-01-04 09:37:25 +01003780 if (appctx->ctx.stats.flags & (STAT_FMT_HTML|STAT_FMT_JSON)) {
3781 if (appctx->ctx.stats.flags & STAT_FMT_HTML)
3782 stats_dump_html_end();
3783 else
3784 stats_dump_json_end();
Christopher Fauletef779222018-10-31 08:47:01 +01003785 if (!stats_putchk(rep, htx, &trash))
3786 goto full;
William Lallemand74c24fb2016-11-21 17:18:36 +01003787 }
3788
3789 appctx->st2 = STAT_ST_FIN;
3790 /* fall through */
3791
3792 case STAT_ST_FIN:
3793 return 1;
3794
3795 default:
3796 /* unknown state ! */
3797 appctx->st2 = STAT_ST_FIN;
3798 return -1;
3799 }
Christopher Fauletef779222018-10-31 08:47:01 +01003800
3801 full:
3802 si_rx_room_blk(si);
3803 return 0;
3804
William Lallemand74c24fb2016-11-21 17:18:36 +01003805}
3806
3807/* We reached the stats page through a POST request. The appctx is
3808 * expected to have already been allocated by the caller.
3809 * Parse the posted data and enable/disable servers if necessary.
3810 * Returns 1 if request was parsed or zero if it needs more data.
3811 */
3812static int stats_process_http_post(struct stream_interface *si)
3813{
3814 struct stream *s = si_strm(si);
Christopher Faulet693b23b2022-02-28 09:09:05 +01003815 struct appctx *appctx = __cs_appctx(si->cs);
William Lallemand74c24fb2016-11-21 17:18:36 +01003816
3817 struct proxy *px = NULL;
3818 struct server *sv = NULL;
3819
3820 char key[LINESIZE];
3821 int action = ST_ADM_ACTION_NONE;
3822 int reprocess = 0;
3823
3824 int total_servers = 0;
3825 int altered_servers = 0;
3826
3827 char *first_param, *cur_param, *next_param, *end_params;
3828 char *st_cur_param = NULL;
3829 char *st_next_param = NULL;
3830
Christopher Fauleta3618372018-12-13 21:59:56 +01003831 struct buffer *temp = get_trash_chunk();
William Lallemand74c24fb2016-11-21 17:18:36 +01003832
Christopher Fauletb7f88902019-07-15 21:56:43 +02003833 struct htx *htx = htxbuf(&s->req.buf);
3834 struct htx_blk *blk;
Christopher Fauleta3618372018-12-13 21:59:56 +01003835
Christopher Fauletb7f88902019-07-15 21:56:43 +02003836 /* we need more data */
3837 if (s->txn->req.msg_state < HTTP_MSG_DONE) {
3838 /* check if we can receive more */
3839 if (htx_free_data_space(htx) <= global.tune.maxrewrite) {
3840 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
3841 goto out;
Christopher Fauleta3618372018-12-13 21:59:56 +01003842 }
Christopher Fauletb7f88902019-07-15 21:56:43 +02003843 goto wait;
3844 }
Christopher Fauleta3618372018-12-13 21:59:56 +01003845
Christopher Fauletb7f88902019-07-15 21:56:43 +02003846 /* The request was fully received. Copy data */
3847 blk = htx_get_head_blk(htx);
3848 while (blk) {
3849 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Fauleta3618372018-12-13 21:59:56 +01003850
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01003851 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
Christopher Fauletb7f88902019-07-15 21:56:43 +02003852 break;
3853 if (type == HTX_BLK_DATA) {
3854 struct ist v = htx_get_blk_value(htx, blk);
Christopher Fauleta3618372018-12-13 21:59:56 +01003855
Christopher Fauletb7f88902019-07-15 21:56:43 +02003856 if (!chunk_memcat(temp, v.ptr, v.len)) {
Christopher Faulet2f9a41d2019-02-27 15:30:57 +01003857 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
3858 goto out;
3859 }
Christopher Fauleta3618372018-12-13 21:59:56 +01003860 }
Christopher Fauletb7f88902019-07-15 21:56:43 +02003861 blk = htx_get_next_blk(htx, blk);
William Lallemand74c24fb2016-11-21 17:18:36 +01003862 }
3863
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003864 first_param = temp->area;
Christopher Fauleta3618372018-12-13 21:59:56 +01003865 end_params = temp->area + temp->data;
William Lallemand74c24fb2016-11-21 17:18:36 +01003866 cur_param = next_param = end_params;
3867 *end_params = '\0';
3868
3869 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
3870
3871 /*
3872 * Parse the parameters in reverse order to only store the last value.
3873 * From the html form, the backend and the action are at the end.
3874 */
3875 while (cur_param > first_param) {
3876 char *value;
3877 int poffset, plen;
3878
3879 cur_param--;
3880
3881 if ((*cur_param == '&') || (cur_param == first_param)) {
3882 reprocess_servers:
3883 /* Parse the key */
3884 poffset = (cur_param != first_param ? 1 : 0);
3885 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
3886 if ((plen > 0) && (plen <= sizeof(key))) {
3887 strncpy(key, cur_param + poffset, plen);
3888 key[plen - 1] = '\0';
3889 } else {
Christopher Faulet2f9a41d2019-02-27 15:30:57 +01003890 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
William Lallemand74c24fb2016-11-21 17:18:36 +01003891 goto out;
3892 }
3893
3894 /* Parse the value */
3895 value = key;
3896 while (*value != '\0' && *value != '=') {
3897 value++;
3898 }
3899 if (*value == '=') {
3900 /* Ok, a value is found, we can mark the end of the key */
3901 *value++ = '\0';
3902 }
Willy Tarreau62ba9ba2020-04-23 17:54:47 +02003903 if (url_decode(key, 1) < 0 || url_decode(value, 1) < 0)
William Lallemand74c24fb2016-11-21 17:18:36 +01003904 break;
3905
3906 /* Now we can check the key to see what to do */
3907 if (!px && (strcmp(key, "b") == 0)) {
3908 if ((px = proxy_be_by_name(value)) == NULL) {
3909 /* the backend name is unknown or ambiguous (duplicate names) */
3910 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
3911 goto out;
3912 }
3913 }
3914 else if (!action && (strcmp(key, "action") == 0)) {
3915 if (strcmp(value, "ready") == 0) {
3916 action = ST_ADM_ACTION_READY;
3917 }
3918 else if (strcmp(value, "drain") == 0) {
3919 action = ST_ADM_ACTION_DRAIN;
3920 }
3921 else if (strcmp(value, "maint") == 0) {
3922 action = ST_ADM_ACTION_MAINT;
3923 }
3924 else if (strcmp(value, "shutdown") == 0) {
3925 action = ST_ADM_ACTION_SHUTDOWN;
3926 }
3927 else if (strcmp(value, "dhlth") == 0) {
3928 action = ST_ADM_ACTION_DHLTH;
3929 }
3930 else if (strcmp(value, "ehlth") == 0) {
3931 action = ST_ADM_ACTION_EHLTH;
3932 }
3933 else if (strcmp(value, "hrunn") == 0) {
3934 action = ST_ADM_ACTION_HRUNN;
3935 }
3936 else if (strcmp(value, "hnolb") == 0) {
3937 action = ST_ADM_ACTION_HNOLB;
3938 }
3939 else if (strcmp(value, "hdown") == 0) {
3940 action = ST_ADM_ACTION_HDOWN;
3941 }
3942 else if (strcmp(value, "dagent") == 0) {
3943 action = ST_ADM_ACTION_DAGENT;
3944 }
3945 else if (strcmp(value, "eagent") == 0) {
3946 action = ST_ADM_ACTION_EAGENT;
3947 }
3948 else if (strcmp(value, "arunn") == 0) {
3949 action = ST_ADM_ACTION_ARUNN;
3950 }
3951 else if (strcmp(value, "adown") == 0) {
3952 action = ST_ADM_ACTION_ADOWN;
3953 }
3954 /* else these are the old supported methods */
3955 else if (strcmp(value, "disable") == 0) {
3956 action = ST_ADM_ACTION_DISABLE;
3957 }
3958 else if (strcmp(value, "enable") == 0) {
3959 action = ST_ADM_ACTION_ENABLE;
3960 }
3961 else if (strcmp(value, "stop") == 0) {
3962 action = ST_ADM_ACTION_STOP;
3963 }
3964 else if (strcmp(value, "start") == 0) {
3965 action = ST_ADM_ACTION_START;
3966 }
3967 else {
3968 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
3969 goto out;
3970 }
3971 }
3972 else if (strcmp(key, "s") == 0) {
3973 if (!(px && action)) {
3974 /*
3975 * Indicates that we'll need to reprocess the parameters
3976 * as soon as backend and action are known
3977 */
3978 if (!reprocess) {
3979 st_cur_param = cur_param;
3980 st_next_param = next_param;
3981 }
3982 reprocess = 1;
3983 }
3984 else if ((sv = findserver(px, value)) != NULL) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003985 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand74c24fb2016-11-21 17:18:36 +01003986 switch (action) {
3987 case ST_ADM_ACTION_DISABLE:
Emeric Brun52a91d32017-08-31 14:41:55 +02003988 if (!(sv->cur_admin & SRV_ADMF_FMAINT)) {
William Lallemand74c24fb2016-11-21 17:18:36 +01003989 altered_servers++;
3990 total_servers++;
3991 srv_set_admin_flag(sv, SRV_ADMF_FMAINT, "'disable' on stats page");
3992 }
3993 break;
3994 case ST_ADM_ACTION_ENABLE:
Emeric Brun52a91d32017-08-31 14:41:55 +02003995 if (sv->cur_admin & SRV_ADMF_FMAINT) {
William Lallemand74c24fb2016-11-21 17:18:36 +01003996 altered_servers++;
3997 total_servers++;
3998 srv_clr_admin_flag(sv, SRV_ADMF_FMAINT);
3999 }
4000 break;
4001 case ST_ADM_ACTION_STOP:
Emeric Brun52a91d32017-08-31 14:41:55 +02004002 if (!(sv->cur_admin & SRV_ADMF_FDRAIN)) {
William Lallemand74c24fb2016-11-21 17:18:36 +01004003 srv_set_admin_flag(sv, SRV_ADMF_FDRAIN, "'stop' on stats page");
4004 altered_servers++;
4005 total_servers++;
4006 }
4007 break;
4008 case ST_ADM_ACTION_START:
Emeric Brun52a91d32017-08-31 14:41:55 +02004009 if (sv->cur_admin & SRV_ADMF_FDRAIN) {
William Lallemand74c24fb2016-11-21 17:18:36 +01004010 srv_clr_admin_flag(sv, SRV_ADMF_FDRAIN);
4011 altered_servers++;
4012 total_servers++;
4013 }
4014 break;
4015 case ST_ADM_ACTION_DHLTH:
4016 if (sv->check.state & CHK_ST_CONFIGURED) {
4017 sv->check.state &= ~CHK_ST_ENABLED;
4018 altered_servers++;
4019 total_servers++;
4020 }
4021 break;
4022 case ST_ADM_ACTION_EHLTH:
4023 if (sv->check.state & CHK_ST_CONFIGURED) {
4024 sv->check.state |= CHK_ST_ENABLED;
4025 altered_servers++;
4026 total_servers++;
4027 }
4028 break;
4029 case ST_ADM_ACTION_HRUNN:
4030 if (!(sv->track)) {
4031 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004032 srv_set_running(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004033 altered_servers++;
4034 total_servers++;
4035 }
4036 break;
4037 case ST_ADM_ACTION_HNOLB:
4038 if (!(sv->track)) {
4039 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004040 srv_set_stopping(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004041 altered_servers++;
4042 total_servers++;
4043 }
4044 break;
4045 case ST_ADM_ACTION_HDOWN:
4046 if (!(sv->track)) {
4047 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004048 srv_set_stopped(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004049 altered_servers++;
4050 total_servers++;
4051 }
4052 break;
4053 case ST_ADM_ACTION_DAGENT:
4054 if (sv->agent.state & CHK_ST_CONFIGURED) {
4055 sv->agent.state &= ~CHK_ST_ENABLED;
4056 altered_servers++;
4057 total_servers++;
4058 }
4059 break;
4060 case ST_ADM_ACTION_EAGENT:
4061 if (sv->agent.state & CHK_ST_CONFIGURED) {
4062 sv->agent.state |= CHK_ST_ENABLED;
4063 altered_servers++;
4064 total_servers++;
4065 }
4066 break;
4067 case ST_ADM_ACTION_ARUNN:
4068 if (sv->agent.state & CHK_ST_ENABLED) {
4069 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004070 srv_set_running(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004071 altered_servers++;
4072 total_servers++;
4073 }
4074 break;
4075 case ST_ADM_ACTION_ADOWN:
4076 if (sv->agent.state & CHK_ST_ENABLED) {
4077 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004078 srv_set_stopped(sv, "changed from Web interface", NULL);
William Lallemand74c24fb2016-11-21 17:18:36 +01004079 altered_servers++;
4080 total_servers++;
4081 }
4082 break;
4083 case ST_ADM_ACTION_READY:
4084 srv_adm_set_ready(sv);
4085 altered_servers++;
4086 total_servers++;
4087 break;
4088 case ST_ADM_ACTION_DRAIN:
4089 srv_adm_set_drain(sv);
4090 altered_servers++;
4091 total_servers++;
4092 break;
4093 case ST_ADM_ACTION_MAINT:
4094 srv_adm_set_maint(sv);
4095 altered_servers++;
4096 total_servers++;
4097 break;
4098 case ST_ADM_ACTION_SHUTDOWN:
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004099 if (!(px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Willy Tarreauaf7ea812019-11-14 16:42:04 +01004100 srv_shutdown_streams(sv, SF_ERR_KILLED);
William Lallemand74c24fb2016-11-21 17:18:36 +01004101 altered_servers++;
4102 total_servers++;
4103 }
4104 break;
4105 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004106 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand74c24fb2016-11-21 17:18:36 +01004107 } else {
4108 /* the server name is unknown or ambiguous (duplicate names) */
4109 total_servers++;
4110 }
4111 }
4112 if (reprocess && px && action) {
4113 /* Now, we know the backend and the action chosen by the user.
4114 * We can safely restart from the first server parameter
4115 * to reprocess them
4116 */
4117 cur_param = st_cur_param;
4118 next_param = st_next_param;
4119 reprocess = 0;
4120 goto reprocess_servers;
4121 }
4122
4123 next_param = cur_param;
4124 }
4125 }
4126
4127 if (total_servers == 0) {
4128 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
4129 }
4130 else if (altered_servers == 0) {
4131 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
4132 }
4133 else if (altered_servers == total_servers) {
4134 appctx->ctx.stats.st_code = STAT_STATUS_DONE;
4135 }
4136 else {
4137 appctx->ctx.stats.st_code = STAT_STATUS_PART;
4138 }
4139 out:
4140 return 1;
Christopher Faulet2f9a41d2019-02-27 15:30:57 +01004141 wait:
4142 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
4143 return 0;
Christopher Fauletef779222018-10-31 08:47:01 +01004144}
4145
4146
Christopher Fauletb7f88902019-07-15 21:56:43 +02004147static int stats_send_http_headers(struct stream_interface *si, struct htx *htx)
Christopher Fauletef779222018-10-31 08:47:01 +01004148{
4149 struct stream *s = si_strm(si);
4150 struct uri_auth *uri = s->be->uri_auth;
Christopher Faulet693b23b2022-02-28 09:09:05 +01004151 struct appctx *appctx = __cs_appctx(si->cs);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004152 struct htx_sl *sl;
4153 unsigned int flags;
Christopher Fauletef779222018-10-31 08:47:01 +01004154
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004155 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);
4156 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("200"), ist("OK"));
4157 if (!sl)
Christopher Fauletef779222018-10-31 08:47:01 +01004158 goto full;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004159 sl->info.res.status = 200;
Christopher Fauletef779222018-10-31 08:47:01 +01004160
Christopher Fauletb829f4c2019-03-29 16:13:55 +01004161 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")))
Christopher Fauletef779222018-10-31 08:47:01 +01004162 goto full;
4163 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
4164 if (!htx_add_header(htx, ist("Content-Type"), ist("text/html")))
4165 goto full;
4166 }
Christopher Faulet6338a082019-09-09 15:50:54 +02004167 else if (appctx->ctx.stats.flags & (STAT_FMT_JSON|STAT_JSON_SCHM)) {
4168 if (!htx_add_header(htx, ist("Content-Type"), ist("application/json")))
4169 goto full;
4170 }
Christopher Fauletef779222018-10-31 08:47:01 +01004171 else {
4172 if (!htx_add_header(htx, ist("Content-Type"), ist("text/plain")))
4173 goto full;
4174 }
4175
4176 if (uri->refresh > 0 && !(appctx->ctx.stats.flags & STAT_NO_REFRESH)) {
4177 const char *refresh = U2A(uri->refresh);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01004178 if (!htx_add_header(htx, ist("Refresh"), ist(refresh)))
Christopher Fauletef779222018-10-31 08:47:01 +01004179 goto full;
4180 }
4181
4182 if (appctx->ctx.stats.flags & STAT_CHUNKED) {
4183 if (!htx_add_header(htx, ist("Transfer-Encoding"), ist("chunked")))
4184 goto full;
4185 }
4186
4187 if (!htx_add_endof(htx, HTX_BLK_EOH))
4188 goto full;
4189
Christopher Faulet1e2d6362019-02-27 16:28:48 +01004190 channel_add_input(&s->res, htx->data);
Christopher Fauletef779222018-10-31 08:47:01 +01004191 return 1;
4192
4193 full:
4194 htx_reset(htx);
4195 si_rx_room_blk(si);
4196 return 0;
William Lallemand74c24fb2016-11-21 17:18:36 +01004197}
4198
Christopher Fauletef779222018-10-31 08:47:01 +01004199
Christopher Fauletb7f88902019-07-15 21:56:43 +02004200static int stats_send_http_redirect(struct stream_interface *si, struct htx *htx)
Christopher Fauletef779222018-10-31 08:47:01 +01004201{
4202 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
4203 struct stream *s = si_strm(si);
4204 struct uri_auth *uri = s->be->uri_auth;
Christopher Faulet693b23b2022-02-28 09:09:05 +01004205 struct appctx *appctx = __cs_appctx(si->cs);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004206 struct htx_sl *sl;
4207 unsigned int flags;
Christopher Fauletef779222018-10-31 08:47:01 +01004208
4209 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
4210 scope_txt[0] = 0;
4211 if (appctx->ctx.stats.scope_len) {
Christopher Fauleted7a0662019-01-14 11:07:34 +01004212 const char *scope_ptr = stats_scope_ptr(appctx, si);
4213
Christopher Fauletef779222018-10-31 08:47:01 +01004214 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Christopher Fauleted7a0662019-01-14 11:07:34 +01004215 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, appctx->ctx.stats.scope_len);
Christopher Fauletef779222018-10-31 08:47:01 +01004216 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
4217 }
4218
4219 /* We don't want to land on the posted stats page because a refresh will
4220 * repost the data. We don't want this to happen on accident so we redirect
4221 * the browse to the stats page with a GET.
4222 */
4223 chunk_printf(&trash, "%s;st=%s%s%s%s",
4224 uri->uri_prefix,
4225 ((appctx->ctx.stats.st_code > STAT_STATUS_INIT) &&
4226 (appctx->ctx.stats.st_code < STAT_STATUS_SIZE) &&
4227 stat_status_codes[appctx->ctx.stats.st_code]) ?
4228 stat_status_codes[appctx->ctx.stats.st_code] :
4229 stat_status_codes[STAT_STATUS_UNKN],
4230 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4231 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
4232 scope_txt);
4233
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004234 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_CHNK);
4235 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("303"), ist("See Other"));
4236 if (!sl)
Christopher Fauletef779222018-10-31 08:47:01 +01004237 goto full;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004238 sl->info.res.status = 303;
Christopher Fauletef779222018-10-31 08:47:01 +01004239
4240 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
Christopher Fauletef779222018-10-31 08:47:01 +01004241 !htx_add_header(htx, ist("Content-Type"), ist("text/plain")) ||
4242 !htx_add_header(htx, ist("Content-Length"), ist("0")) ||
4243 !htx_add_header(htx, ist("Location"), ist2(trash.area, trash.data)))
4244 goto full;
4245
4246 if (!htx_add_endof(htx, HTX_BLK_EOH))
4247 goto full;
4248
Christopher Faulet1e2d6362019-02-27 16:28:48 +01004249 channel_add_input(&s->res, htx->data);
Christopher Fauletef779222018-10-31 08:47:01 +01004250 return 1;
4251
4252full:
4253 htx_reset(htx);
4254 si_rx_room_blk(si);
4255 return 0;
4256}
William Lallemand74c24fb2016-11-21 17:18:36 +01004257
Simon Horman05ee2132017-01-04 09:37:25 +01004258
William Lallemand74c24fb2016-11-21 17:18:36 +01004259/* This I/O handler runs as an applet embedded in a stream interface. It is
4260 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
4261 * appctx->st0 contains the operation in progress (dump, done). The handler
4262 * automatically unregisters itself once transfer is complete.
4263 */
Christopher Fauletb7f88902019-07-15 21:56:43 +02004264static void http_stats_io_handler(struct appctx *appctx)
Christopher Fauletef779222018-10-31 08:47:01 +01004265{
Christopher Faulet86e1c332021-12-20 17:09:39 +01004266 struct stream_interface *si = cs_si(appctx->owner);
Christopher Fauletef779222018-10-31 08:47:01 +01004267 struct stream *s = si_strm(si);
4268 struct channel *req = si_oc(si);
4269 struct channel *res = si_ic(si);
4270 struct htx *req_htx, *res_htx;
4271
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02004272 /* only proxy stats are available via http */
4273 appctx->ctx.stats.domain = STATS_DOMAIN_PROXY;
4274
Christopher Fauletef779222018-10-31 08:47:01 +01004275 res_htx = htx_from_buf(&res->buf);
4276
4277 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
4278 goto out;
4279
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004280 /* Check if the input buffer is available. */
Christopher Fauletef779222018-10-31 08:47:01 +01004281 if (!b_size(&res->buf)) {
4282 si_rx_room_blk(si);
4283 goto out;
4284 }
4285
4286 /* check that the output is not closed */
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004287 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
4288 appctx->st0 = STAT_HTTP_END;
Christopher Fauletef779222018-10-31 08:47:01 +01004289
4290 /* all states are processed in sequence */
4291 if (appctx->st0 == STAT_HTTP_HEAD) {
Christopher Fauletb7f88902019-07-15 21:56:43 +02004292 if (stats_send_http_headers(si, res_htx)) {
Christopher Fauletef779222018-10-31 08:47:01 +01004293 if (s->txn->meth == HTTP_METH_HEAD)
4294 appctx->st0 = STAT_HTTP_DONE;
4295 else
4296 appctx->st0 = STAT_HTTP_DUMP;
4297 }
4298 }
4299
4300 if (appctx->st0 == STAT_HTTP_DUMP) {
4301 if (stats_dump_stat_to_buffer(si, res_htx, s->be->uri_auth))
4302 appctx->st0 = STAT_HTTP_DONE;
4303 }
4304
4305 if (appctx->st0 == STAT_HTTP_POST) {
4306 if (stats_process_http_post(si))
4307 appctx->st0 = STAT_HTTP_LAST;
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004308 else if (req->flags & CF_SHUTR)
Christopher Fauletef779222018-10-31 08:47:01 +01004309 appctx->st0 = STAT_HTTP_DONE;
4310 }
4311
4312 if (appctx->st0 == STAT_HTTP_LAST) {
Christopher Fauletb7f88902019-07-15 21:56:43 +02004313 if (stats_send_http_redirect(si, res_htx))
Christopher Fauletef779222018-10-31 08:47:01 +01004314 appctx->st0 = STAT_HTTP_DONE;
4315 }
4316
4317 if (appctx->st0 == STAT_HTTP_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004318 /* no more data are expected. Don't add TLR because mux-h1 will take care of it */
4319 res_htx->flags |= HTX_FL_EOM;
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004320 appctx->st0 = STAT_HTTP_END;
Christopher Fauletef779222018-10-31 08:47:01 +01004321 }
4322
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004323 if (appctx->st0 == STAT_HTTP_END) {
4324 if (!(res->flags & CF_SHUTR)) {
Christopher Fauletef779222018-10-31 08:47:01 +01004325 res->flags |= CF_READ_NULL;
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004326 si_shutr(si);
4327 }
4328
4329 /* eat the whole request */
4330 if (co_data(req)) {
4331 req_htx = htx_from_buf(&req->buf);
4332 co_htx_skip(req, req_htx, co_data(req));
4333 htx_to_buf(req_htx, &req->buf);
Christopher Fauletef779222018-10-31 08:47:01 +01004334 }
4335 }
Christopher Faulet3a78aa62019-02-27 16:19:48 +01004336
Christopher Fauletef779222018-10-31 08:47:01 +01004337 out:
4338 /* we have left the request in the buffer for the case where we
4339 * process a POST, and this automatically re-enables activity on
4340 * read. It's better to indicate that we want to stop reading when
4341 * we're sending, so that we know there's at most one direction
4342 * deciding to wake the applet up. It saves it from looping when
4343 * emitting large blocks into small TCP windows.
4344 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004345 htx_to_buf(res_htx, &res->buf);
4346 if (!channel_is_empty(res))
Christopher Fauletef779222018-10-31 08:47:01 +01004347 si_stop_get(si);
Christopher Fauletef779222018-10-31 08:47:01 +01004348}
4349
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004350/* Dump all fields from <info> into <out> using the "show info" format (name: value) */
Willy Tarreau83061a82018-07-13 11:56:34 +02004351static int stats_dump_info_fields(struct buffer *out,
Willy Tarreau43241ff2019-10-09 11:27:51 +02004352 const struct field *info, unsigned int flags)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004353{
4354 int field;
4355
4356 for (field = 0; field < INF_TOTAL_FIELDS; field++) {
4357 if (!field_format(info, field))
4358 continue;
4359
Willy Tarreaueaa55372019-10-09 07:39:11 +02004360 if (!chunk_appendf(out, "%s: ", info_fields[field].name))
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004361 return 0;
4362 if (!stats_emit_raw_data_field(out, &info[field]))
4363 return 0;
Willy Tarreau6b19b142019-10-09 15:44:21 +02004364 if ((flags & STAT_SHOW_FDESC) && !chunk_appendf(out, ":\"%s\"", info_fields[field].desc))
4365 return 0;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004366 if (!chunk_strcat(out, "\n"))
4367 return 0;
4368 }
4369 return 1;
4370}
4371
4372/* Dump all fields from <info> into <out> using the "show info typed" format */
Willy Tarreau83061a82018-07-13 11:56:34 +02004373static int stats_dump_typed_info_fields(struct buffer *out,
Willy Tarreau43241ff2019-10-09 11:27:51 +02004374 const struct field *info, unsigned int flags)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004375{
4376 int field;
4377
4378 for (field = 0; field < INF_TOTAL_FIELDS; field++) {
4379 if (!field_format(info, field))
4380 continue;
4381
Willy Tarreaueaa55372019-10-09 07:39:11 +02004382 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 +01004383 return 0;
4384 if (!stats_emit_field_tags(out, &info[field], ':'))
4385 return 0;
4386 if (!stats_emit_typed_data_field(out, &info[field]))
4387 return 0;
Willy Tarreau6b19b142019-10-09 15:44:21 +02004388 if ((flags & STAT_SHOW_FDESC) && !chunk_appendf(out, ":\"%s\"", info_fields[field].desc))
4389 return 0;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004390 if (!chunk_strcat(out, "\n"))
4391 return 0;
4392 }
4393 return 1;
4394}
4395
Willy Tarreau0b26b382021-05-08 07:43:53 +02004396/* Fill <info> with HAProxy global info. <info> is preallocated array of length
4397 * <len>. The length of the array must be INF_TOTAL_FIELDS. If this length is
4398 * less then this value, the function returns 0, otherwise, it returns 1. Some
4399 * fields' presence or precision may depend on some of the STAT_* flags present
4400 * in <flags>.
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004401 */
Willy Tarreau0b26b382021-05-08 07:43:53 +02004402int stats_fill_info(struct field *info, int len, uint flags)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004403{
Willy Tarreaud37e26e2021-05-08 07:40:52 +02004404 struct timeval up;
Willy Tarreau83061a82018-07-13 11:56:34 +02004405 struct buffer *out = get_trash_chunk();
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004406
4407#ifdef USE_OPENSSL
Willy Tarreauc5977722021-05-08 08:14:04 +02004408 double ssl_sess_rate = read_freq_ctr_flt(&global.ssl_per_sec);
4409 double ssl_key_rate = read_freq_ctr_flt(&global.ssl_fe_keys_per_sec);
4410 double ssl_reuse = 0;
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004411
Willy Tarreauc5977722021-05-08 08:14:04 +02004412 if (ssl_key_rate < ssl_sess_rate)
4413 ssl_reuse = 100.0 * (1.0 - ssl_key_rate / ssl_sess_rate);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004414#endif
4415
Willy Tarreaud37e26e2021-05-08 07:40:52 +02004416 tv_remain(&start_date, &now, &up);
4417
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004418 if (len < INF_TOTAL_FIELDS)
4419 return 0;
4420
4421 chunk_reset(out);
4422 memset(info, 0, sizeof(*info) * len);
4423
4424 info[INF_NAME] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, PRODUCT_NAME);
Willy Tarreau909b9d82019-01-04 18:20:32 +01004425 info[INF_VERSION] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_version);
Adis Nezirovicb62b78b2021-01-15 13:12:33 +01004426 info[INF_BUILD_INFO] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_version);
Willy Tarreau909b9d82019-01-04 18:20:32 +01004427 info[INF_RELEASE_DATE] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_date);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004428
Yves Lafon95317282018-02-26 11:10:37 +01004429 info[INF_NBTHREAD] = mkf_u32(FO_CONFIG|FS_SERVICE, global.nbthread);
Willy Tarreau91358592021-06-15 08:08:04 +02004430 info[INF_NBPROC] = mkf_u32(FO_CONFIG|FS_SERVICE, 1);
Willy Tarreaue8422bf2021-06-15 09:08:18 +02004431 info[INF_PROCESS_NUM] = mkf_u32(FO_KEY, 1);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004432 info[INF_PID] = mkf_u32(FO_STATUS, pid);
4433
4434 info[INF_UPTIME] = mkf_str(FN_DURATION, chunk_newstr(out));
Willy Tarreaud37e26e2021-05-08 07:40:52 +02004435 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 +01004436
Willy Tarreaue8abc322021-05-08 07:56:56 +02004437 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);
4438 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 +01004439 info[INF_MEMMAX_MB] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_memmax);
William Dauchya8766cf2021-01-15 22:41:37 +01004440 info[INF_MEMMAX_BYTES] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_memmax * 1048576L);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004441 info[INF_POOL_ALLOC_MB] = mkf_u32(0, (unsigned)(pool_total_allocated() / 1048576L));
William Dauchya8766cf2021-01-15 22:41:37 +01004442 info[INF_POOL_ALLOC_BYTES] = mkf_u32(0, pool_total_allocated());
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004443 info[INF_POOL_USED_MB] = mkf_u32(0, (unsigned)(pool_total_used() / 1048576L));
William Dauchya8766cf2021-01-15 22:41:37 +01004444 info[INF_POOL_USED_BYTES] = mkf_u32(0, pool_total_used());
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004445 info[INF_POOL_FAILED] = mkf_u32(FN_COUNTER, pool_total_failures());
4446 info[INF_ULIMIT_N] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_nofile);
4447 info[INF_MAXSOCK] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxsock);
4448 info[INF_MAXCONN] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxconn);
4449 info[INF_HARD_MAXCONN] = mkf_u32(FO_CONFIG|FN_LIMIT, global.hardmaxconn);
4450 info[INF_CURR_CONN] = mkf_u32(0, actconn);
4451 info[INF_CUM_CONN] = mkf_u32(FN_COUNTER, totalconn);
4452 info[INF_CUM_REQ] = mkf_u32(FN_COUNTER, global.req_count);
4453#ifdef USE_OPENSSL
4454 info[INF_MAX_SSL_CONNS] = mkf_u32(FN_MAX, global.maxsslconn);
Willy Tarreau82531f62021-10-06 12:15:18 +02004455 info[INF_CURR_SSL_CONNS] = mkf_u32(0, global.sslconns);
4456 info[INF_CUM_SSL_CONNS] = mkf_u32(FN_COUNTER, global.totalsslconns);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004457#endif
4458 info[INF_MAXPIPES] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxpipes);
4459 info[INF_PIPES_USED] = mkf_u32(0, pipes_used);
4460 info[INF_PIPES_FREE] = mkf_u32(0, pipes_free);
Willy Tarreauc5977722021-05-08 08:14:04 +02004461 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 +01004462 info[INF_CONN_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.cps_lim);
4463 info[INF_MAX_CONN_RATE] = mkf_u32(FN_MAX, global.cps_max);
Willy Tarreauc5977722021-05-08 08:14:04 +02004464 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 +01004465 info[INF_SESS_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.sps_lim);
4466 info[INF_MAX_SESS_RATE] = mkf_u32(FN_RATE, global.sps_max);
4467
4468#ifdef USE_OPENSSL
Willy Tarreauc5977722021-05-08 08:14:04 +02004469 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 +01004470 info[INF_SSL_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.ssl_lim);
4471 info[INF_MAX_SSL_RATE] = mkf_u32(FN_MAX, global.ssl_max);
Willy Tarreauc5977722021-05-08 08:14:04 +02004472 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 +01004473 info[INF_SSL_FRONTEND_MAX_KEY_RATE] = mkf_u32(FN_MAX, global.ssl_fe_keys_max);
Willy Tarreauc5977722021-05-08 08:14:04 +02004474 info[INF_SSL_FRONTEND_SESSION_REUSE_PCT] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, ssl_reuse) : mkf_u32(0, ssl_reuse);
4475 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 +01004476 info[INF_SSL_BACKEND_MAX_KEY_RATE] = mkf_u32(FN_MAX, global.ssl_be_keys_max);
4477 info[INF_SSL_CACHE_LOOKUPS] = mkf_u32(FN_COUNTER, global.shctx_lookups);
4478 info[INF_SSL_CACHE_MISSES] = mkf_u32(FN_COUNTER, global.shctx_misses);
4479#endif
Willy Tarreauc5977722021-05-08 08:14:04 +02004480 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));
4481 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 +01004482 info[INF_COMPRESS_BPS_RATE_LIM] = mkf_u32(FO_CONFIG|FN_LIMIT, global.comp_rate_lim);
4483#ifdef USE_ZLIB
4484 info[INF_ZLIB_MEM_USAGE] = mkf_u32(0, zlib_used_memory);
4485 info[INF_MAX_ZLIB_MEM_USAGE] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxzlibmem);
4486#endif
Willy Tarreau955a11e2021-02-24 17:03:30 +01004487 info[INF_TASKS] = mkf_u32(0, total_allocated_tasks());
Willy Tarreau9c7b8082021-02-24 15:10:07 +01004488 info[INF_RUN_QUEUE] = mkf_u32(0, total_run_queues());
Willy Tarreauf9d5e102021-10-08 10:43:59 +02004489 info[INF_IDLE_PCT] = mkf_u32(FN_AVG, clock_report_idle());
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004490 info[INF_NODE] = mkf_str(FO_CONFIG|FN_OUTPUT|FS_SERVICE, global.node);
4491 if (global.desc)
4492 info[INF_DESCRIPTION] = mkf_str(FO_CONFIG|FN_OUTPUT|FS_SERVICE, global.desc);
Willy Tarreau00098ea2018-11-05 14:38:13 +01004493 info[INF_STOPPING] = mkf_u32(0, stopping);
4494 info[INF_JOBS] = mkf_u32(0, jobs);
William Lallemanda7199262018-11-16 16:57:20 +01004495 info[INF_UNSTOPPABLE_JOBS] = mkf_u32(0, unstoppable_jobs);
Willy Tarreau00098ea2018-11-05 14:38:13 +01004496 info[INF_LISTENERS] = mkf_u32(0, listeners);
Willy Tarreau199ad242018-11-05 16:31:22 +01004497 info[INF_ACTIVE_PEERS] = mkf_u32(0, active_peers);
Willy Tarreau2d372c22018-11-05 17:12:27 +01004498 info[INF_CONNECTED_PEERS] = mkf_u32(0, connected_peers);
Willy Tarreau13ef7732018-11-12 07:25:28 +01004499 info[INF_DROPPED_LOGS] = mkf_u32(0, dropped_logs);
Willy Tarreaubeb859a2018-11-22 18:07:59 +01004500 info[INF_BUSY_POLLING] = mkf_u32(0, !!(global.tune.options & GTUNE_BUSY_POLLING));
Emeric Brund30e9a12020-12-23 18:49:16 +01004501 info[INF_FAILED_RESOLUTIONS] = mkf_u32(0, resolv_failed_resolutions);
Willy Tarreau7cf0e452019-05-23 11:39:14 +02004502 info[INF_TOTAL_BYTES_OUT] = mkf_u64(0, global.out_bytes);
Christopher Fauletaaa70852020-07-10 13:56:30 +02004503 info[INF_TOTAL_SPLICED_BYTES_OUT] = mkf_u64(0, global.spliced_out_bytes);
Willy Tarreau7cf0e452019-05-23 11:39:14 +02004504 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 +02004505 info[INF_DEBUG_COMMANDS_ISSUED] = mkf_u32(0, debug_commands_issued);
Emeric Brun45c457a2020-07-09 23:23:34 +02004506 info[INF_CUM_LOG_MSGS] = mkf_u32(FN_COUNTER, cum_log_messages);
Amaury Denoyelle5dfdf3e2021-05-05 17:09:12 +02004507
4508 info[INF_TAINTED] = mkf_str(FO_STATUS, chunk_newstr(out));
4509 chunk_appendf(out, "%#x", get_tainted());
4510
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004511 return 1;
4512}
4513
4514/* This function dumps information onto the stream interface's read buffer.
4515 * It returns 0 as long as it does not complete, non-zero upon completion.
4516 * No state is used.
4517 */
4518static int stats_dump_info_to_buffer(struct stream_interface *si)
4519{
Christopher Faulet693b23b2022-02-28 09:09:05 +01004520 struct appctx *appctx = __cs_appctx(si->cs);
Christopher Faulet2da02ae2022-02-24 13:45:27 +01004521
Willy Tarreau0b26b382021-05-08 07:43:53 +02004522 if (!stats_fill_info(info, INF_TOTAL_FIELDS, appctx->ctx.stats.flags))
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004523 return 0;
4524
4525 chunk_reset(&trash);
4526
4527 if (appctx->ctx.stats.flags & STAT_FMT_TYPED)
Willy Tarreau43241ff2019-10-09 11:27:51 +02004528 stats_dump_typed_info_fields(&trash, info, appctx->ctx.stats.flags);
Simon Horman05ee2132017-01-04 09:37:25 +01004529 else if (appctx->ctx.stats.flags & STAT_FMT_JSON)
Willy Tarreau43241ff2019-10-09 11:27:51 +02004530 stats_dump_json_info_fields(&trash, info, appctx->ctx.stats.flags);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004531 else
Willy Tarreau43241ff2019-10-09 11:27:51 +02004532 stats_dump_info_fields(&trash, info, appctx->ctx.stats.flags);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004533
Willy Tarreau06d80a92017-10-19 14:32:15 +02004534 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004535 si_rx_room_blk(si);
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004536 return 0;
4537 }
4538
4539 return 1;
4540}
4541
Simon Horman6f6bb382017-01-04 09:37:26 +01004542/* This function dumps the schema onto the stream interface's read buffer.
4543 * It returns 0 as long as it does not complete, non-zero upon completion.
4544 * No state is used.
4545 *
Ilya Shipitsinf38a0182020-12-21 01:16:17 +05004546 * Integer values bounded to the range [-(2**53)+1, (2**53)-1] as
Simon Horman6f6bb382017-01-04 09:37:26 +01004547 * per the recommendation for interoperable integers in section 6 of RFC 7159.
4548 */
Willy Tarreau83061a82018-07-13 11:56:34 +02004549static void stats_dump_json_schema(struct buffer *out)
Simon Horman6f6bb382017-01-04 09:37:26 +01004550{
4551
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004552 int old_len = out->data;
Simon Horman6f6bb382017-01-04 09:37:26 +01004553
4554 chunk_strcat(out,
4555 "{"
4556 "\"$schema\":\"http://json-schema.org/draft-04/schema#\","
4557 "\"oneOf\":["
4558 "{"
4559 "\"title\":\"Info\","
4560 "\"type\":\"array\","
4561 "\"items\":{"
Amaury Denoyellea53ce4c2020-10-02 18:31:59 +02004562 "\"title\":\"InfoItem\","
4563 "\"type\":\"object\","
Simon Horman6f6bb382017-01-04 09:37:26 +01004564 "\"properties\":{"
Simon Horman6f6bb382017-01-04 09:37:26 +01004565 "\"field\":{\"$ref\":\"#/definitions/field\"},"
4566 "\"processNum\":{\"$ref\":\"#/definitions/processNum\"},"
4567 "\"tags\":{\"$ref\":\"#/definitions/tags\"},"
4568 "\"value\":{\"$ref\":\"#/definitions/typedValue\"}"
4569 "},"
4570 "\"required\":[\"field\",\"processNum\",\"tags\","
4571 "\"value\"]"
4572 "}"
4573 "},"
4574 "{"
4575 "\"title\":\"Stat\","
4576 "\"type\":\"array\","
4577 "\"items\":{"
4578 "\"title\":\"InfoItem\","
4579 "\"type\":\"object\","
4580 "\"properties\":{"
4581 "\"objType\":{"
4582 "\"enum\":[\"Frontend\",\"Backend\",\"Listener\","
4583 "\"Server\",\"Unknown\"]"
4584 "},"
4585 "\"proxyId\":{"
4586 "\"type\":\"integer\","
4587 "\"minimum\":0"
4588 "},"
4589 "\"id\":{"
4590 "\"type\":\"integer\","
4591 "\"minimum\":0"
4592 "},"
4593 "\"field\":{\"$ref\":\"#/definitions/field\"},"
4594 "\"processNum\":{\"$ref\":\"#/definitions/processNum\"},"
4595 "\"tags\":{\"$ref\":\"#/definitions/tags\"},"
4596 "\"typedValue\":{\"$ref\":\"#/definitions/typedValue\"}"
4597 "},"
4598 "\"required\":[\"objType\",\"proxyId\",\"id\","
4599 "\"field\",\"processNum\",\"tags\","
4600 "\"value\"]"
4601 "}"
4602 "},"
4603 "{"
4604 "\"title\":\"Error\","
4605 "\"type\":\"object\","
4606 "\"properties\":{"
4607 "\"errorStr\":{"
4608 "\"type\":\"string\""
Amaury Denoyellea53ce4c2020-10-02 18:31:59 +02004609 "}"
4610 "},"
4611 "\"required\":[\"errorStr\"]"
Simon Horman6f6bb382017-01-04 09:37:26 +01004612 "}"
4613 "],"
4614 "\"definitions\":{"
4615 "\"field\":{"
4616 "\"type\":\"object\","
4617 "\"pos\":{"
4618 "\"type\":\"integer\","
4619 "\"minimum\":0"
4620 "},"
4621 "\"name\":{"
4622 "\"type\":\"string\""
4623 "},"
4624 "\"required\":[\"pos\",\"name\"]"
4625 "},"
4626 "\"processNum\":{"
4627 "\"type\":\"integer\","
4628 "\"minimum\":1"
4629 "},"
4630 "\"tags\":{"
4631 "\"type\":\"object\","
4632 "\"origin\":{"
4633 "\"type\":\"string\","
4634 "\"enum\":[\"Metric\",\"Status\",\"Key\","
4635 "\"Config\",\"Product\",\"Unknown\"]"
4636 "},"
4637 "\"nature\":{"
4638 "\"type\":\"string\","
4639 "\"enum\":[\"Gauge\",\"Limit\",\"Min\",\"Max\","
4640 "\"Rate\",\"Counter\",\"Duration\","
4641 "\"Age\",\"Time\",\"Name\",\"Output\","
4642 "\"Avg\", \"Unknown\"]"
4643 "},"
4644 "\"scope\":{"
4645 "\"type\":\"string\","
4646 "\"enum\":[\"Cluster\",\"Process\",\"Service\","
4647 "\"System\",\"Unknown\"]"
4648 "},"
4649 "\"required\":[\"origin\",\"nature\",\"scope\"]"
4650 "},"
4651 "\"typedValue\":{"
4652 "\"type\":\"object\","
4653 "\"oneOf\":["
4654 "{\"$ref\":\"#/definitions/typedValue/definitions/s32Value\"},"
4655 "{\"$ref\":\"#/definitions/typedValue/definitions/s64Value\"},"
4656 "{\"$ref\":\"#/definitions/typedValue/definitions/u32Value\"},"
4657 "{\"$ref\":\"#/definitions/typedValue/definitions/u64Value\"},"
4658 "{\"$ref\":\"#/definitions/typedValue/definitions/strValue\"}"
4659 "],"
4660 "\"definitions\":{"
4661 "\"s32Value\":{"
4662 "\"properties\":{"
4663 "\"type\":{"
4664 "\"type\":\"string\","
4665 "\"enum\":[\"s32\"]"
4666 "},"
4667 "\"value\":{"
4668 "\"type\":\"integer\","
4669 "\"minimum\":-2147483648,"
4670 "\"maximum\":2147483647"
4671 "}"
4672 "},"
4673 "\"required\":[\"type\",\"value\"]"
4674 "},"
4675 "\"s64Value\":{"
4676 "\"properties\":{"
4677 "\"type\":{"
4678 "\"type\":\"string\","
4679 "\"enum\":[\"s64\"]"
4680 "},"
4681 "\"value\":{"
4682 "\"type\":\"integer\","
4683 "\"minimum\":-9007199254740991,"
4684 "\"maximum\":9007199254740991"
4685 "}"
4686 "},"
4687 "\"required\":[\"type\",\"value\"]"
4688 "},"
4689 "\"u32Value\":{"
4690 "\"properties\":{"
4691 "\"type\":{"
4692 "\"type\":\"string\","
4693 "\"enum\":[\"u32\"]"
4694 "},"
4695 "\"value\":{"
4696 "\"type\":\"integer\","
4697 "\"minimum\":0,"
4698 "\"maximum\":4294967295"
4699 "}"
4700 "},"
4701 "\"required\":[\"type\",\"value\"]"
4702 "},"
4703 "\"u64Value\":{"
4704 "\"properties\":{"
4705 "\"type\":{"
4706 "\"type\":\"string\","
4707 "\"enum\":[\"u64\"]"
4708 "},"
4709 "\"value\":{"
4710 "\"type\":\"integer\","
4711 "\"minimum\":0,"
4712 "\"maximum\":9007199254740991"
4713 "}"
4714 "},"
4715 "\"required\":[\"type\",\"value\"]"
4716 "},"
4717 "\"strValue\":{"
4718 "\"properties\":{"
4719 "\"type\":{"
4720 "\"type\":\"string\","
4721 "\"enum\":[\"str\"]"
4722 "},"
4723 "\"value\":{\"type\":\"string\"}"
4724 "},"
4725 "\"required\":[\"type\",\"value\"]"
4726 "},"
4727 "\"unknownValue\":{"
4728 "\"properties\":{"
4729 "\"type\":{"
4730 "\"type\":\"integer\","
4731 "\"minimum\":0"
4732 "},"
4733 "\"value\":{"
4734 "\"type\":\"string\","
4735 "\"enum\":[\"unknown\"]"
4736 "}"
4737 "},"
4738 "\"required\":[\"type\",\"value\"]"
4739 "}"
4740 "}"
4741 "}"
4742 "}"
4743 "}");
4744
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004745 if (old_len == out->data) {
Simon Horman6f6bb382017-01-04 09:37:26 +01004746 chunk_reset(out);
4747 chunk_appendf(out,
4748 "{\"errorStr\":\"output buffer too short\"}");
4749 }
4750}
4751
4752/* This function dumps the schema onto the stream interface's read buffer.
4753 * It returns 0 as long as it does not complete, non-zero upon completion.
4754 * No state is used.
4755 */
4756static int stats_dump_json_schema_to_buffer(struct stream_interface *si)
4757{
4758 chunk_reset(&trash);
4759
4760 stats_dump_json_schema(&trash);
4761
Willy Tarreau06d80a92017-10-19 14:32:15 +02004762 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004763 si_rx_room_blk(si);
Simon Horman6f6bb382017-01-04 09:37:26 +01004764 return 0;
4765 }
4766
4767 return 1;
4768}
4769
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004770static int cli_parse_clear_counters(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau89d467c2016-11-23 11:02:40 +01004771{
4772 struct proxy *px;
4773 struct server *sv;
4774 struct listener *li;
Amaury Denoyelled3700a72020-10-05 11:49:43 +02004775 struct stats_module *mod;
Willy Tarreau89d467c2016-11-23 11:02:40 +01004776 int clrall = 0;
4777
4778 if (strcmp(args[2], "all") == 0)
4779 clrall = 1;
4780
4781 /* check permissions */
4782 if (!cli_has_level(appctx, ACCESS_LVL_OPER) ||
4783 (clrall && !cli_has_level(appctx, ACCESS_LVL_ADMIN)))
4784 return 1;
4785
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004786 for (px = proxies_list; px; px = px->next) {
Willy Tarreau89d467c2016-11-23 11:02:40 +01004787 if (clrall) {
4788 memset(&px->be_counters, 0, sizeof(px->be_counters));
4789 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
4790 }
4791 else {
4792 px->be_counters.conn_max = 0;
4793 px->be_counters.p.http.rps_max = 0;
4794 px->be_counters.sps_max = 0;
4795 px->be_counters.cps_max = 0;
4796 px->be_counters.nbpend_max = 0;
Christopher Fauletefb41f02019-11-08 14:53:15 +01004797 px->be_counters.qtime_max = 0;
4798 px->be_counters.ctime_max = 0;
4799 px->be_counters.dtime_max = 0;
4800 px->be_counters.ttime_max = 0;
Willy Tarreau89d467c2016-11-23 11:02:40 +01004801
4802 px->fe_counters.conn_max = 0;
4803 px->fe_counters.p.http.rps_max = 0;
4804 px->fe_counters.sps_max = 0;
4805 px->fe_counters.cps_max = 0;
Willy Tarreau89d467c2016-11-23 11:02:40 +01004806 }
4807
4808 for (sv = px->srv; sv; sv = sv->next)
4809 if (clrall)
4810 memset(&sv->counters, 0, sizeof(sv->counters));
4811 else {
4812 sv->counters.cur_sess_max = 0;
4813 sv->counters.nbpend_max = 0;
4814 sv->counters.sps_max = 0;
Christopher Fauletefb41f02019-11-08 14:53:15 +01004815 sv->counters.qtime_max = 0;
4816 sv->counters.ctime_max = 0;
4817 sv->counters.dtime_max = 0;
4818 sv->counters.ttime_max = 0;
Willy Tarreau89d467c2016-11-23 11:02:40 +01004819 }
4820
4821 list_for_each_entry(li, &px->conf.listeners, by_fe)
4822 if (li->counters) {
4823 if (clrall)
4824 memset(li->counters, 0, sizeof(*li->counters));
4825 else
4826 li->counters->conn_max = 0;
4827 }
4828 }
4829
4830 global.cps_max = 0;
4831 global.sps_max = 0;
Olivier Houchard00bc3cb2017-10-17 19:23:25 +02004832 global.ssl_max = 0;
4833 global.ssl_fe_keys_max = 0;
4834 global.ssl_be_keys_max = 0;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01004835
Amaury Denoyelled3700a72020-10-05 11:49:43 +02004836 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
4837 if (!mod->clearable && !clrall)
4838 continue;
4839
4840 for (px = proxies_list; px; px = px->next) {
4841 enum stats_domain_px_cap mod_cap = stats_px_get_cap(mod->domain_flags);
4842
4843 if (px->cap & PR_CAP_FE && mod_cap & STATS_PX_CAP_FE) {
4844 EXTRA_COUNTERS_INIT(px->extra_counters_fe,
4845 mod,
4846 mod->counters,
4847 mod->counters_size);
4848 }
4849
4850 if (px->cap & PR_CAP_BE && mod_cap & STATS_PX_CAP_BE) {
4851 EXTRA_COUNTERS_INIT(px->extra_counters_be,
4852 mod,
4853 mod->counters,
4854 mod->counters_size);
4855 }
4856
4857 if (mod_cap & STATS_PX_CAP_SRV) {
4858 for (sv = px->srv; sv; sv = sv->next) {
4859 EXTRA_COUNTERS_INIT(sv->extra_counters,
4860 mod,
4861 mod->counters,
4862 mod->counters_size);
4863 }
4864 }
4865
4866 if (mod_cap & STATS_PX_CAP_LI) {
4867 list_for_each_entry(li, &px->conf.listeners, by_fe) {
4868 EXTRA_COUNTERS_INIT(li->extra_counters,
4869 mod,
4870 mod->counters,
4871 mod->counters_size);
4872 }
4873 }
4874 }
4875 }
4876
Emeric Brunf8642ee2021-10-29 17:59:18 +02004877 resolv_stats_clear_counters(clrall, &stats_module_list[STATS_DOMAIN_RESOLVERS]);
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02004878
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01004879 memset(activity, 0, sizeof(activity));
Willy Tarreau89d467c2016-11-23 11:02:40 +01004880 return 1;
4881}
4882
4883
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004884static int cli_parse_show_info(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004885{
Willy Tarreau2f397382019-10-09 11:43:59 +02004886 int arg = 2;
4887
Willy Tarreaud25fc792016-12-16 12:33:47 +01004888 appctx->ctx.stats.scope_str = 0;
4889 appctx->ctx.stats.scope_len = 0;
4890 appctx->ctx.stats.flags = 0;
4891
Willy Tarreau2f397382019-10-09 11:43:59 +02004892 while (*args[arg]) {
4893 if (strcmp(args[arg], "typed") == 0)
4894 appctx->ctx.stats.flags = (appctx->ctx.stats.flags & ~STAT_FMT_MASK) | STAT_FMT_TYPED;
4895 else if (strcmp(args[arg], "json") == 0)
4896 appctx->ctx.stats.flags = (appctx->ctx.stats.flags & ~STAT_FMT_MASK) | STAT_FMT_JSON;
4897 else if (strcmp(args[arg], "desc") == 0)
4898 appctx->ctx.stats.flags |= STAT_SHOW_FDESC;
Willy Tarreau27456202021-05-08 07:54:24 +02004899 else if (strcmp(args[arg], "float") == 0)
4900 appctx->ctx.stats.flags |= STAT_USE_FLOAT;
Willy Tarreau2f397382019-10-09 11:43:59 +02004901 arg++;
4902 }
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004903 return 0;
4904}
4905
4906
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004907static int cli_parse_show_stat(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2b812e22016-11-22 16:18:05 +01004908{
Willy Tarreau2f397382019-10-09 11:43:59 +02004909 int arg = 2;
4910
Willy Tarreaud25fc792016-12-16 12:33:47 +01004911 appctx->ctx.stats.scope_str = 0;
4912 appctx->ctx.stats.scope_len = 0;
Willy Tarreau578d6e42019-10-09 11:00:22 +02004913 appctx->ctx.stats.flags = STAT_SHNODE | STAT_SHDESC;
4914
Christopher Faulet86e1c332021-12-20 17:09:39 +01004915 if ((strm_li(si_strm(cs_si(appctx->owner)))->bind_conf->level & ACCESS_LVL_MASK) >= ACCESS_LVL_OPER)
Willy Tarreau578d6e42019-10-09 11:00:22 +02004916 appctx->ctx.stats.flags |= STAT_SHLGNDS;
Willy Tarreaud25fc792016-12-16 12:33:47 +01004917
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02004918 /* proxy is the default domain */
4919 appctx->ctx.stats.domain = STATS_DOMAIN_PROXY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004920 if (strcmp(args[arg], "domain") == 0) {
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02004921 ++args;
4922
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004923 if (strcmp(args[arg], "proxy") == 0) {
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02004924 ++args;
Emeric Brunf8642ee2021-10-29 17:59:18 +02004925 } else if (strcmp(args[arg], "resolvers") == 0) {
4926 appctx->ctx.stats.domain = STATS_DOMAIN_RESOLVERS;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02004927 ++args;
4928 } else {
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02004929 return cli_err(appctx, "Invalid statistics domain.\n");
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02004930 }
Amaury Denoyelle072f97e2020-10-05 11:49:37 +02004931 }
4932
4933 if (appctx->ctx.stats.domain == STATS_DOMAIN_PROXY
4934 && *args[arg] && *args[arg+1] && *args[arg+2]) {
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01004935 struct proxy *px;
4936
Willy Tarreau2f397382019-10-09 11:43:59 +02004937 px = proxy_find_by_name(args[arg], 0, 0);
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01004938 if (px)
4939 appctx->ctx.stats.iid = px->uuid;
4940 else
Willy Tarreau2f397382019-10-09 11:43:59 +02004941 appctx->ctx.stats.iid = atoi(args[arg]);
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01004942
Willy Tarreau9d008692019-08-09 11:21:01 +02004943 if (!appctx->ctx.stats.iid)
4944 return cli_err(appctx, "No such proxy.\n");
Willy Tarreaua1b1ed52016-11-25 08:50:58 +01004945
Willy Tarreau2b812e22016-11-22 16:18:05 +01004946 appctx->ctx.stats.flags |= STAT_BOUND;
Willy Tarreau2f397382019-10-09 11:43:59 +02004947 appctx->ctx.stats.type = atoi(args[arg+1]);
4948 appctx->ctx.stats.sid = atoi(args[arg+2]);
4949 arg += 3;
4950 }
4951
4952 while (*args[arg]) {
4953 if (strcmp(args[arg], "typed") == 0)
4954 appctx->ctx.stats.flags = (appctx->ctx.stats.flags & ~STAT_FMT_MASK) | STAT_FMT_TYPED;
4955 else if (strcmp(args[arg], "json") == 0)
4956 appctx->ctx.stats.flags = (appctx->ctx.stats.flags & ~STAT_FMT_MASK) | STAT_FMT_JSON;
4957 else if (strcmp(args[arg], "desc") == 0)
4958 appctx->ctx.stats.flags |= STAT_SHOW_FDESC;
Willy Tarreau3e320362020-10-23 17:28:57 +02004959 else if (strcmp(args[arg], "no-maint") == 0)
4960 appctx->ctx.stats.flags |= STAT_HIDE_MAINT;
Willy Tarreau65141ff2020-10-23 17:19:48 +02004961 else if (strcmp(args[arg], "up") == 0)
4962 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreau2f397382019-10-09 11:43:59 +02004963 arg++;
Willy Tarreau2b812e22016-11-22 16:18:05 +01004964 }
Willy Tarreau2b812e22016-11-22 16:18:05 +01004965
Willy Tarreau2b812e22016-11-22 16:18:05 +01004966 return 0;
4967}
4968
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004969static int cli_io_handler_dump_info(struct appctx *appctx)
4970{
Christopher Faulet86e1c332021-12-20 17:09:39 +01004971 return stats_dump_info_to_buffer(cs_si(appctx->owner));
Willy Tarreau0baac8c2016-11-22 16:36:53 +01004972}
4973
Willy Tarreau2b812e22016-11-22 16:18:05 +01004974/* This I/O handler runs as an applet embedded in a stream interface. It is
4975 * used to send raw stats over a socket.
4976 */
4977static int cli_io_handler_dump_stat(struct appctx *appctx)
4978{
Christopher Faulet86e1c332021-12-20 17:09:39 +01004979 return stats_dump_stat_to_buffer(cs_si(appctx->owner), NULL, NULL);
Willy Tarreau2b812e22016-11-22 16:18:05 +01004980}
4981
Simon Horman6f6bb382017-01-04 09:37:26 +01004982static int cli_io_handler_dump_json_schema(struct appctx *appctx)
4983{
Christopher Faulet86e1c332021-12-20 17:09:39 +01004984 return stats_dump_json_schema_to_buffer(cs_si(appctx->owner));
Simon Horman6f6bb382017-01-04 09:37:26 +01004985}
4986
Amaury Denoyelle216a1ce2021-03-18 15:48:14 +01004987int stats_allocate_proxy_counters_internal(struct extra_counters **counters,
4988 int type, int px_cap)
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02004989{
4990 struct stats_module *mod;
4991
4992 EXTRA_COUNTERS_REGISTER(counters, type, alloc_failed);
4993
4994 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
4995 if (!(stats_px_get_cap(mod->domain_flags) & px_cap))
4996 continue;
4997
4998 EXTRA_COUNTERS_ADD(mod, *counters, mod->counters, mod->counters_size);
4999 }
5000
5001 EXTRA_COUNTERS_ALLOC(*counters, alloc_failed);
5002
5003 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
5004 if (!(stats_px_get_cap(mod->domain_flags) & px_cap))
5005 continue;
5006
5007 EXTRA_COUNTERS_INIT(*counters, mod, mod->counters, mod->counters_size);
5008 }
5009
5010 return 1;
5011
5012 alloc_failed:
5013 return 0;
5014}
5015
5016/* Initialize and allocate all extra counters for a proxy and its attached
5017 * servers/listeners with all already registered stats module
5018 */
5019int stats_allocate_proxy_counters(struct proxy *px)
5020{
5021 struct server *sv;
5022 struct listener *li;
5023
5024 if (px->cap & PR_CAP_FE) {
5025 if (!stats_allocate_proxy_counters_internal(&px->extra_counters_fe,
5026 COUNTERS_FE,
5027 STATS_PX_CAP_FE)) {
5028 return 0;
5029 }
5030 }
5031
5032 if (px->cap & PR_CAP_BE) {
5033 if (!stats_allocate_proxy_counters_internal(&px->extra_counters_be,
5034 COUNTERS_BE,
5035 STATS_PX_CAP_BE)) {
5036 return 0;
5037 }
5038 }
5039
5040 for (sv = px->srv; sv; sv = sv->next) {
5041 if (!stats_allocate_proxy_counters_internal(&sv->extra_counters,
5042 COUNTERS_SV,
5043 STATS_PX_CAP_SRV)) {
5044 return 0;
5045 }
5046 }
5047
5048 list_for_each_entry(li, &px->conf.listeners, by_fe) {
5049 if (!stats_allocate_proxy_counters_internal(&li->extra_counters,
5050 COUNTERS_LI,
5051 STATS_PX_CAP_LI)) {
5052 return 0;
5053 }
5054 }
5055
5056 return 1;
5057}
5058
Amaury Denoyelle58d395e2020-10-05 11:49:40 +02005059void stats_register_module(struct stats_module *m)
5060{
5061 const uint8_t domain = stats_get_domain(m->domain_flags);
5062
Willy Tarreau2b718102021-04-21 07:32:39 +02005063 LIST_APPEND(&stats_module_list[domain], &m->list);
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005064 stat_count[domain] += m->stats_count;
Amaury Denoyelle58d395e2020-10-05 11:49:40 +02005065}
5066
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005067static int allocate_stats_px_postcheck(void)
5068{
5069 struct stats_module *mod;
5070 size_t i = ST_F_TOTAL_FIELDS;
5071 int err_code = 0;
Amaury Denoyelle27373f72020-10-05 16:57:33 +02005072 struct proxy *px;
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005073
5074 stat_count[STATS_DOMAIN_PROXY] += ST_F_TOTAL_FIELDS;
5075
5076 stat_f[STATS_DOMAIN_PROXY] = malloc(stat_count[STATS_DOMAIN_PROXY] * sizeof(struct name_desc));
5077 if (!stat_f[STATS_DOMAIN_PROXY]) {
5078 ha_alert("stats: cannot allocate all fields for proxy statistics\n");
5079 err_code |= ERR_ALERT | ERR_FATAL;
5080 return err_code;
5081 }
5082
5083 memcpy(stat_f[STATS_DOMAIN_PROXY], stat_fields,
5084 ST_F_TOTAL_FIELDS * sizeof(struct name_desc));
5085
5086 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
5087 memcpy(stat_f[STATS_DOMAIN_PROXY] + i,
5088 mod->stats,
5089 mod->stats_count * sizeof(struct name_desc));
5090 i += mod->stats_count;
5091 }
5092
Amaury Denoyelle27373f72020-10-05 16:57:33 +02005093 for (px = proxies_list; px; px = px->next) {
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005094 if (!stats_allocate_proxy_counters(px)) {
5095 ha_alert("stats: cannot allocate all counters for proxy statistics\n");
5096 err_code |= ERR_ALERT | ERR_FATAL;
5097 return err_code;
5098 }
5099 }
5100
Christopher Fauletde79cd22021-01-06 07:41:56 +01005101 /* wait per-thread alloc to perform corresponding stat_l allocation */
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +02005102
5103 return err_code;
5104}
5105
5106REGISTER_CONFIG_POSTPARSER("allocate-stats-px", allocate_stats_px_postcheck);
5107
Emeric Brunf8642ee2021-10-29 17:59:18 +02005108static int allocate_stats_rslv_postcheck(void)
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005109{
5110 struct stats_module *mod;
5111 size_t i = 0;
5112 int err_code = 0;
5113
Emeric Brunf8642ee2021-10-29 17:59:18 +02005114 stat_f[STATS_DOMAIN_RESOLVERS] = malloc(stat_count[STATS_DOMAIN_RESOLVERS] * sizeof(struct name_desc));
5115 if (!stat_f[STATS_DOMAIN_RESOLVERS]) {
5116 ha_alert("stats: cannot allocate all fields for resolver statistics\n");
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005117 err_code |= ERR_ALERT | ERR_FATAL;
5118 return err_code;
5119 }
5120
Emeric Brunf8642ee2021-10-29 17:59:18 +02005121 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_RESOLVERS], list) {
5122 memcpy(stat_f[STATS_DOMAIN_RESOLVERS] + i,
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005123 mod->stats,
5124 mod->stats_count * sizeof(struct name_desc));
5125 i += mod->stats_count;
5126 }
5127
Emeric Brunf8642ee2021-10-29 17:59:18 +02005128 if (!resolv_allocate_counters(&stats_module_list[STATS_DOMAIN_RESOLVERS])) {
5129 ha_alert("stats: cannot allocate all counters for resolver statistics\n");
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005130 err_code |= ERR_ALERT | ERR_FATAL;
5131 return err_code;
5132 }
5133
Christopher Fauletde79cd22021-01-06 07:41:56 +01005134 /* wait per-thread alloc to perform corresponding stat_l allocation */
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005135
5136 return err_code;
5137}
5138
Emeric Brunf8642ee2021-10-29 17:59:18 +02005139REGISTER_CONFIG_POSTPARSER("allocate-stats-resolver", allocate_stats_rslv_postcheck);
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02005140
Christopher Fauletde79cd22021-01-06 07:41:56 +01005141static int allocate_stat_lines_per_thread(void)
5142{
Emeric Brunf8642ee2021-10-29 17:59:18 +02005143 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
Christopher Fauletde79cd22021-01-06 07:41:56 +01005144
5145 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5146 const int domain = domains[i];
5147
5148 stat_l[domain] = malloc(stat_count[domain] * sizeof(struct field));
5149 if (!stat_l[domain])
5150 return 0;
5151 }
5152 return 1;
5153}
5154
5155REGISTER_PER_THREAD_ALLOC(allocate_stat_lines_per_thread);
5156
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01005157static int allocate_trash_counters(void)
5158{
5159 struct stats_module *mod;
Emeric Brunf8642ee2021-10-29 17:59:18 +02005160 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01005161 size_t max_counters_size = 0;
5162
5163 /* calculate the greatest counters used by any stats modules */
5164 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5165 list_for_each_entry(mod, &stats_module_list[domains[i]], list) {
5166 max_counters_size = mod->counters_size > max_counters_size ?
5167 mod->counters_size : max_counters_size;
5168 }
5169 }
5170
5171 /* allocate the trash with the size of the greatest counters */
5172 if (max_counters_size) {
5173 trash_counters = malloc(max_counters_size);
5174 if (!trash_counters) {
5175 ha_alert("stats: cannot allocate trash counters for statistics\n");
5176 return 0;
5177 }
5178 }
5179
5180 return 1;
5181}
5182
5183REGISTER_PER_THREAD_ALLOC(allocate_trash_counters);
5184
Christopher Fauletde79cd22021-01-06 07:41:56 +01005185static void deinit_stat_lines_per_thread(void)
Amaury Denoyellea2a68992020-11-10 14:24:30 +01005186{
Emeric Brunf8642ee2021-10-29 17:59:18 +02005187 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
Amaury Denoyellea2a68992020-11-10 14:24:30 +01005188
5189 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5190 const int domain = domains[i];
5191
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005192 ha_free(&stat_l[domain]);
Christopher Fauletde79cd22021-01-06 07:41:56 +01005193 }
5194}
5195
5196
5197REGISTER_PER_THREAD_FREE(deinit_stat_lines_per_thread);
5198
5199static void deinit_stats(void)
5200{
Emeric Brunf8642ee2021-10-29 17:59:18 +02005201 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
Christopher Fauletde79cd22021-01-06 07:41:56 +01005202
5203 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5204 const int domain = domains[i];
Amaury Denoyellea2a68992020-11-10 14:24:30 +01005205
5206 if (stat_f[domain])
5207 free(stat_f[domain]);
5208 }
5209}
5210
5211REGISTER_POST_DEINIT(deinit_stats);
5212
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01005213static void free_trash_counters(void)
5214{
5215 if (trash_counters)
5216 free(trash_counters);
5217}
5218
5219REGISTER_PER_THREAD_FREE(free_trash_counters);
5220
Willy Tarreau2b812e22016-11-22 16:18:05 +01005221/* register cli keywords */
5222static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005223 { { "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 +02005224 { { "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 +02005225 { { "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 },
5226 { { "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 +01005227 {{},}
5228}};
5229
Willy Tarreau0108d902018-11-25 19:14:37 +01005230INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
5231
William Lallemand74c24fb2016-11-21 17:18:36 +01005232struct applet http_stats_applet = {
5233 .obj_type = OBJ_TYPE_APPLET,
5234 .name = "<STATS>", /* used for logging */
5235 .fct = http_stats_io_handler,
5236 .release = NULL,
5237};
5238
William Lallemand74c24fb2016-11-21 17:18:36 +01005239/*
5240 * Local variables:
5241 * c-indent-level: 8
5242 * c-basic-offset: 8
5243 * End:
5244 */