2 * Functions dedicated to statistics output and the stats socket
4 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
5 * Copyright 2007-2009 Krzysztof Piotr Oledzki <ole@ans.pl>
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.
22 #include <sys/socket.h>
24 #include <sys/types.h>
26 #include <haproxy/api.h>
27 #include <haproxy/activity.h>
28 #include <haproxy/applet.h>
29 #include <haproxy/backend.h>
30 #include <haproxy/base64.h>
31 #include <haproxy/cfgparse.h>
32 #include <haproxy/channel.h>
33 #include <haproxy/check.h>
34 #include <haproxy/cli.h>
35 #include <haproxy/clock.h>
36 #include <haproxy/compression.h>
37 #include <haproxy/debug.h>
38 #include <haproxy/errors.h>
39 #include <haproxy/fd.h>
40 #include <haproxy/freq_ctr.h>
41 #include <haproxy/frontend.h>
42 #include <haproxy/global.h>
43 #include <haproxy/http.h>
44 #include <haproxy/http_ana.h>
45 #include <haproxy/http_htx.h>
46 #include <haproxy/htx.h>
47 #include <haproxy/list.h>
48 #include <haproxy/listener.h>
49 #include <haproxy/log.h>
50 #include <haproxy/map-t.h>
51 #include <haproxy/pattern-t.h>
52 #include <haproxy/pipe.h>
53 #include <haproxy/pool.h>
54 #include <haproxy/proxy.h>
55 #include <haproxy/resolvers.h>
56 #include <haproxy/sc_strm.h>
57 #include <haproxy/server.h>
58 #include <haproxy/session.h>
59 #include <haproxy/stats.h>
60 #include <haproxy/stconn.h>
61 #include <haproxy/stream.h>
62 #include <haproxy/task.h>
63 #include <haproxy/ticks.h>
64 #include <haproxy/time.h>
65 #include <haproxy/tools.h>
66 #include <haproxy/uri_auth-t.h>
67 #include <haproxy/version.h>
70 /* status codes available for the stats admin page (strictly 4 chars length) */
71 const 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",
82 /* 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.
86 const struct name_desc info_fields[INF_TOTAL_FIELDS] = {
87 [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)" },
91 [INF_NBPROC] = { .name = "Nbproc", .desc = "Number of started worker processes (historical, always 1)" },
92 [INF_PROCESS_NUM] = { .name = "Process_num", .desc = "Relative worker process number (1)" },
93 [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)" },
96 [INF_START_TIME_SEC] = { .name = "Start_time_sec", .desc = "Start time in seconds" },
97 [INF_MEMMAX_MB] = { .name = "Memmax_MB", .desc = "Worker process's hard limit on memory usage in MB (-m on command line)" },
98 [INF_MEMMAX_BYTES] = { .name = "Memmax_bytes", .desc = "Worker process's hard limit on memory usage in byes (-m on command line)" },
99 [INF_POOL_ALLOC_MB] = { .name = "PoolAlloc_MB", .desc = "Amount of memory allocated in pools (in MB)" },
100 [INF_POOL_ALLOC_BYTES] = { .name = "PoolAlloc_bytes", .desc = "Amount of memory allocated in pools (in bytes)" },
101 [INF_POOL_USED_MB] = { .name = "PoolUsed_MB", .desc = "Amount of pool memory currently used (in MB)" },
102 [INF_POOL_USED_BYTES] = { .name = "PoolUsed_bytes", .desc = "Amount of pool memory currently used (in bytes)" },
103 [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" },
153 [INF_TOTAL_SPLICED_BYTES_OUT] = { .name = "TotalSplicdedBytesOut", .desc = "Total number of bytes emitted by current worker process through a kernel pipe since started" },
154 [INF_BYTES_OUT_RATE] = { .name = "BytesOutRate", .desc = "Number of bytes emitted by current worker process over the last second" },
155 [INF_DEBUG_COMMANDS_ISSUED] = { .name = "DebugCommandsIssued", .desc = "Number of debug commands issued on this process (anything > 0 is unsafe)" },
156 [INF_CUM_LOG_MSGS] = { .name = "CumRecvLogs", .desc = "Total number of log messages received by log-forwarding listeners on this worker process since started" },
157 [INF_BUILD_INFO] = { .name = "Build info", .desc = "Build info" },
158 [INF_TAINTED] = { .name = "Tainted", .desc = "Experimental features used" },
161 const struct name_desc stat_fields[ST_F_TOTAL_FIELDS] = {
162 [ST_F_PXNAME] = { .name = "pxname", .desc = "Proxy name" },
163 [ST_F_SVNAME] = { .name = "svname", .desc = "Server name" },
164 [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" },
166 [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" },
168 [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" },
180 [ST_F_WEIGHT] = { .name = "weight", .desc = "Server's effective weight, or sum of active servers' effective weights for a backend" },
181 [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)" },
188 [ST_F_PID] = { .name = "pid", .desc = "Relative worker process number (1)" },
189 [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)" },
197 [ST_F_RATE_MAX] = { .name = "rate_max", .desc = "Highest value of sessions per second observed since the worker process started" },
198 [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" },
209 [ST_F_REQ_RATE_MAX] = { .name = "req_rate_max", .desc = "Highest value of http requests observed since the worker process started" },
210 [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" },
240 [ST_F_CONN_RATE_MAX] = { .name = "conn_rate_max", .desc = "Highest value of connections per second observed since the worker process started" },
241 [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)" },
252 [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)" },
256 [ST_F_EINT] = { .name = "eint", .desc = "Total number of internal errors since process started"},
257 [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"},
260 [ST_F_NEED_CONN_EST] = { .name = "need_conn_est", .desc = "Estimated needed number of connections"},
261 [ST_F_UWEIGHT] = { .name = "uweight", .desc = "Server's user weight, or sum of active servers' user weights for a backend" },
262 [ST_F_AGG_SRV_CHECK_STATUS] = { .name = "agg_server_check_status", .desc = "[DEPRECATED] Backend's aggregated gauge of servers' status" },
263 [ST_F_AGG_SRV_STATUS ] = { .name = "agg_server_status", .desc = "Backend's aggregated gauge of servers' status" },
264 [ST_F_AGG_CHECK_STATUS] = { .name = "agg_check_status", .desc = "Backend's aggregated gauge of servers' state check status" },
265 [ST_F_SRID] = { .name = "srid", .desc = "Server id revision, to prevent server id reuse mixups" },
268 /* one line of info */
269 THREAD_LOCAL struct field info[INF_TOTAL_FIELDS];
271 /* description of statistics (static and dynamic) */
272 static struct name_desc *stat_f[STATS_DOMAIN_COUNT];
273 static size_t stat_count[STATS_DOMAIN_COUNT];
275 /* one line for stats */
276 THREAD_LOCAL struct field *stat_l[STATS_DOMAIN_COUNT];
278 /* list of all registered stats module */
279 static struct list stats_module_list[STATS_DOMAIN_COUNT] = {
280 LIST_HEAD_INIT(stats_module_list[STATS_DOMAIN_PROXY]),
281 LIST_HEAD_INIT(stats_module_list[STATS_DOMAIN_RESOLVERS]),
284 THREAD_LOCAL void *trash_counters;
285 static THREAD_LOCAL struct buffer trash_chunk = BUF_NULL;
288 static inline uint8_t stats_get_domain(uint32_t domain)
290 return domain >> STATS_DOMAIN & STATS_DOMAIN_MASK;
293 static inline enum stats_domain_px_cap stats_px_get_cap(uint32_t domain)
295 return domain >> STATS_PX_CAP & STATS_PX_CAP_MASK;
298 static void stats_dump_json_schema(struct buffer *out);
300 int stats_putchk(struct channel *chn, struct htx *htx, struct buffer *chk)
303 if (chk->data >= channel_htx_recv_max(chn, htx))
305 if (!htx_add_data_atonce(htx, ist2(chk->area, chk->data)))
307 channel_add_input(chn, chk->data);
311 if (ci_putchk(chn, chk) == -1)
317 static const char *stats_scope_ptr(struct appctx *appctx, struct stconn *sc)
319 struct show_stat_ctx *ctx = appctx->svcctx;
320 struct channel *req = sc_oc(sc);
321 struct htx *htx = htxbuf(&req->buf);
325 blk = htx_get_head_blk(htx);
326 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
327 ALREADY_CHECKED(blk);
328 uri = htx_sl_req_uri(htx_get_blk_ptr(htx, blk));
329 return uri.ptr + ctx->scope_str;
333 * http_stats_io_handler()
334 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
335 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
336 * -> stats_dump_json_header() // emits the JSON headers (same as above)
337 * -> stats_dump_html_head() // emits the HTML headers
338 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
339 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
340 * -> stats_dump_html_px_hdr()
341 * -> stats_dump_fe_stats()
342 * -> stats_dump_li_stats()
343 * -> stats_dump_sv_stats()
344 * -> stats_dump_be_stats()
345 * -> stats_dump_html_px_end()
346 * -> stats_dump_html_end() // emits HTML trailer
347 * -> stats_dump_json_end() // emits JSON trailer
351 /* Dumps the stats CSV header to the local trash buffer. The caller is
352 * responsible for clearing it if needed.
353 * NOTE: Some tools happen to rely on the field position instead of its name,
354 * so please only append new fields at the end, never in the middle.
356 static void stats_dump_csv_header(enum stats_domain domain)
360 chunk_appendf(&trash_chunk, "# ");
361 if (stat_f[domain]) {
362 for (field = 0; field < stat_count[domain]; ++field) {
363 chunk_appendf(&trash_chunk, "%s,", stat_f[domain][field].name);
365 /* print special delimiter on proxy stats to mark end of
367 if (domain == STATS_DOMAIN_PROXY && field + 1 == ST_F_TOTAL_FIELDS)
368 chunk_appendf(&trash_chunk, "-,");
372 chunk_appendf(&trash_chunk, "\n");
375 /* Emits a stats field without any surrounding element and properly encoded to
376 * resist CSV output. Returns non-zero on success, 0 if the buffer is full.
378 int stats_emit_raw_data_field(struct buffer *out, const struct field *f)
380 switch (field_format(f, 0)) {
381 case FF_EMPTY: return 1;
382 case FF_S32: return chunk_appendf(out, "%d", f->u.s32);
383 case FF_U32: return chunk_appendf(out, "%u", f->u.u32);
384 case FF_S64: return chunk_appendf(out, "%lld", (long long)f->u.s64);
385 case FF_U64: return chunk_appendf(out, "%llu", (unsigned long long)f->u.u64);
387 size_t prev_data = out->data;
388 out->data = flt_trim(out->area, prev_data, chunk_appendf(out, "%f", f->u.flt));
391 case FF_STR: return csv_enc_append(field_str(f, 0), 1, out) != NULL;
392 default: return chunk_appendf(out, "[INCORRECT_FIELD_TYPE_%08x]", f->type);
396 const char *field_to_html_str(const struct field *f)
398 switch (field_format(f, 0)) {
399 case FF_S32: return U2H(f->u.s32);
400 case FF_S64: return U2H(f->u.s64);
401 case FF_U64: return U2H(f->u.u64);
402 case FF_U32: return U2H(f->u.u32);
403 case FF_FLT: return F2H(f->u.flt);
404 case FF_STR: return field_str(f, 0);
411 /* Emits a stats field prefixed with its type. No CSV encoding is prepared, the
412 * output is supposed to be used on its own line. Returns non-zero on success, 0
413 * if the buffer is full.
415 int stats_emit_typed_data_field(struct buffer *out, const struct field *f)
417 switch (field_format(f, 0)) {
418 case FF_EMPTY: return 1;
419 case FF_S32: return chunk_appendf(out, "s32:%d", f->u.s32);
420 case FF_U32: return chunk_appendf(out, "u32:%u", f->u.u32);
421 case FF_S64: return chunk_appendf(out, "s64:%lld", (long long)f->u.s64);
422 case FF_U64: return chunk_appendf(out, "u64:%llu", (unsigned long long)f->u.u64);
424 size_t prev_data = out->data;
425 out->data = flt_trim(out->area, prev_data, chunk_appendf(out, "flt:%f", f->u.flt));
428 case FF_STR: return chunk_appendf(out, "str:%s", field_str(f, 0));
429 default: return chunk_appendf(out, "%08x:?", f->type);
433 /* Limit JSON integer values to the range [-(2**53)+1, (2**53)-1] as per
434 * the recommendation for interoperable integers in section 6 of RFC 7159.
436 #define JSON_INT_MAX ((1ULL << 53) - 1)
437 #define JSON_INT_MIN (0 - JSON_INT_MAX)
439 /* Emits a stats field value and its type in JSON.
440 * Returns non-zero on success, 0 on error.
442 int stats_emit_json_data_field(struct buffer *out, const struct field *f)
446 const char *type, *value = buf, *quote = "";
448 switch (field_format(f, 0)) {
449 case FF_EMPTY: return 1;
450 case FF_S32: type = "\"s32\"";
451 snprintf(buf, sizeof(buf), "%d", f->u.s32);
453 case FF_U32: type = "\"u32\"";
454 snprintf(buf, sizeof(buf), "%u", f->u.u32);
456 case FF_S64: type = "\"s64\"";
457 if (f->u.s64 < JSON_INT_MIN || f->u.s64 > JSON_INT_MAX)
460 snprintf(buf, sizeof(buf), "%lld", (long long)f->u.s64);
462 case FF_U64: if (f->u.u64 > JSON_INT_MAX)
465 snprintf(buf, sizeof(buf), "%llu",
466 (unsigned long long) f->u.u64);
468 case FF_FLT: type = "\"flt\"";
469 flt_trim(buf, 0, snprintf(buf, sizeof(buf), "%f", f->u.flt));
471 case FF_STR: type = "\"str\"";
472 value = field_str(f, 0);
475 default: snprintf(buf, sizeof(buf), "%u", f->type);
483 chunk_appendf(out, ",\"value\":{\"type\":%s,\"value\":%s%s%s}",
484 type, quote, value, quote);
485 return !(old_len == out->data);
488 /* Emits an encoding of the field type on 3 characters followed by a delimiter.
489 * Returns non-zero on success, 0 if the buffer is full.
491 int stats_emit_field_tags(struct buffer *out, const struct field *f,
494 char origin, nature, scope;
496 switch (field_origin(f, 0)) {
497 case FO_METRIC: origin = 'M'; break;
498 case FO_STATUS: origin = 'S'; break;
499 case FO_KEY: origin = 'K'; break;
500 case FO_CONFIG: origin = 'C'; break;
501 case FO_PRODUCT: origin = 'P'; break;
502 default: origin = '?'; break;
505 switch (field_nature(f, 0)) {
506 case FN_GAUGE: nature = 'G'; break;
507 case FN_LIMIT: nature = 'L'; break;
508 case FN_MIN: nature = 'm'; break;
509 case FN_MAX: nature = 'M'; break;
510 case FN_RATE: nature = 'R'; break;
511 case FN_COUNTER: nature = 'C'; break;
512 case FN_DURATION: nature = 'D'; break;
513 case FN_AGE: nature = 'A'; break;
514 case FN_TIME: nature = 'T'; break;
515 case FN_NAME: nature = 'N'; break;
516 case FN_OUTPUT: nature = 'O'; break;
517 case FN_AVG: nature = 'a'; break;
518 default: nature = '?'; break;
521 switch (field_scope(f, 0)) {
522 case FS_PROCESS: scope = 'P'; break;
523 case FS_SERVICE: scope = 'S'; break;
524 case FS_SYSTEM: scope = 's'; break;
525 case FS_CLUSTER: scope = 'C'; break;
526 default: scope = '?'; break;
529 return chunk_appendf(out, "%c%c%c%c", origin, nature, scope, delim);
532 /* Emits an encoding of the field type as JSON.
533 * Returns non-zero on success, 0 if the buffer is full.
535 int stats_emit_json_field_tags(struct buffer *out, const struct field *f)
537 const char *origin, *nature, *scope;
540 switch (field_origin(f, 0)) {
541 case FO_METRIC: origin = "Metric"; break;
542 case FO_STATUS: origin = "Status"; break;
543 case FO_KEY: origin = "Key"; break;
544 case FO_CONFIG: origin = "Config"; break;
545 case FO_PRODUCT: origin = "Product"; break;
546 default: origin = "Unknown"; break;
549 switch (field_nature(f, 0)) {
550 case FN_GAUGE: nature = "Gauge"; break;
551 case FN_LIMIT: nature = "Limit"; break;
552 case FN_MIN: nature = "Min"; break;
553 case FN_MAX: nature = "Max"; break;
554 case FN_RATE: nature = "Rate"; break;
555 case FN_COUNTER: nature = "Counter"; break;
556 case FN_DURATION: nature = "Duration"; break;
557 case FN_AGE: nature = "Age"; break;
558 case FN_TIME: nature = "Time"; break;
559 case FN_NAME: nature = "Name"; break;
560 case FN_OUTPUT: nature = "Output"; break;
561 case FN_AVG: nature = "Avg"; break;
562 default: nature = "Unknown"; break;
565 switch (field_scope(f, 0)) {
566 case FS_PROCESS: scope = "Process"; break;
567 case FS_SERVICE: scope = "Service"; break;
568 case FS_SYSTEM: scope = "System"; break;
569 case FS_CLUSTER: scope = "Cluster"; break;
570 default: scope = "Unknown"; break;
574 chunk_appendf(out, "\"tags\":{"
578 "}", origin, nature, scope);
579 return !(old_len == out->data);
582 /* Dump all fields from <stats> into <out> using CSV format */
583 static int stats_dump_fields_csv(struct buffer *out,
584 const struct field *stats, size_t stats_count,
585 struct show_stat_ctx *ctx)
587 int domain = ctx->domain;
590 for (field = 0; field < stats_count; ++field) {
591 if (!stats_emit_raw_data_field(out, &stats[field]))
593 if (!chunk_strcat(out, ","))
596 /* print special delimiter on proxy stats to mark end of
598 if (domain == STATS_DOMAIN_PROXY && field + 1 == ST_F_TOTAL_FIELDS) {
599 if (!chunk_strcat(out, "-,"))
604 chunk_strcat(out, "\n");
608 /* Dump all fields from <stats> into <out> using a typed "field:desc:type:value" format */
609 static int stats_dump_fields_typed(struct buffer *out,
610 const struct field *stats,
612 struct show_stat_ctx * ctx)
614 int flags = ctx->flags;
615 int domain = ctx->domain;
618 for (field = 0; field < stats_count; ++field) {
619 if (!stats[field].type)
623 case STATS_DOMAIN_PROXY:
624 chunk_appendf(out, "%c.%u.%u.%d.%s.%u:",
625 stats[ST_F_TYPE].u.u32 == STATS_TYPE_FE ? 'F' :
626 stats[ST_F_TYPE].u.u32 == STATS_TYPE_BE ? 'B' :
627 stats[ST_F_TYPE].u.u32 == STATS_TYPE_SO ? 'L' :
628 stats[ST_F_TYPE].u.u32 == STATS_TYPE_SV ? 'S' :
630 stats[ST_F_IID].u.u32, stats[ST_F_SID].u.u32,
632 stat_f[domain][field].name,
633 stats[ST_F_PID].u.u32);
636 case STATS_DOMAIN_RESOLVERS:
637 chunk_appendf(out, "N.%d.%s:", field,
638 stat_f[domain][field].name);
645 if (!stats_emit_field_tags(out, &stats[field], ':'))
647 if (!stats_emit_typed_data_field(out, &stats[field]))
650 if (flags & STAT_SHOW_FDESC &&
651 !chunk_appendf(out, ":\"%s\"", stat_f[domain][field].desc)) {
655 if (!chunk_strcat(out, "\n"))
661 /* Dump all fields from <stats> into <out> using the "show info json" format */
662 static int stats_dump_json_info_fields(struct buffer *out,
663 const struct field *info,
664 struct show_stat_ctx *ctx)
666 int started = (ctx->field) ? 1 : 0;
669 if (!started && !chunk_strcat(out, "["))
672 for (; ctx->field < INF_TOTAL_FIELDS; ctx->field++) {
674 int field = ctx->field;
676 if (!field_format(info, field))
679 if (started && !chunk_strcat(out, ","))
685 "{\"field\":{\"pos\":%d,\"name\":\"%s\"},"
686 "\"processNum\":%u,",
687 field, info_fields[field].name,
688 info[INF_PROCESS_NUM].u.u32);
689 if (old_len == out->data)
692 if (!stats_emit_json_field_tags(out, &info[field]))
695 if (!stats_emit_json_data_field(out, &info[field]))
698 if (!chunk_strcat(out, "}"))
700 ready_data = out->data;
703 if (!chunk_strcat(out, "]\n"))
705 ctx->field = 0; /* we're done */
710 /* not enough buffer space for a single entry.. */
712 chunk_appendf(out, "{\"errorStr\":\"output buffer too short\"}\n");
713 return 0; /* hard error */
715 /* push ready data and wait for a new buffer to complete the dump */
716 out->data = ready_data;
720 static void stats_print_proxy_field_json(struct buffer *out,
721 const struct field *stat,
729 const char *obj_type;
730 switch (field_type) {
731 case STATS_TYPE_FE: obj_type = "Frontend"; break;
732 case STATS_TYPE_BE: obj_type = "Backend"; break;
733 case STATS_TYPE_SO: obj_type = "Listener"; break;
734 case STATS_TYPE_SV: obj_type = "Server"; break;
735 default: obj_type = "Unknown"; break;
740 "\"objType\":\"%s\","
743 "\"field\":{\"pos\":%d,\"name\":\"%s\"},"
744 "\"processNum\":%u,",
745 obj_type, iid, sid, pos, name, pid);
748 static void stats_print_rslv_field_json(struct buffer *out,
749 const struct field *stat,
755 "\"field\":{\"pos\":%d,\"name\":\"%s\"},",
760 /* Dump all fields from <stats> into <out> using a typed "field:desc:type:value" format */
761 static int stats_dump_fields_json(struct buffer *out,
762 const struct field *stats, size_t stats_count,
763 struct show_stat_ctx *ctx)
765 int flags = ctx->flags;
766 int domain = ctx->domain;
767 int started = (ctx->field) ? 1 : 0;
770 if (!started && (flags & STAT_STARTED) && !chunk_strcat(out, ","))
772 if (!started && !chunk_strcat(out, "["))
775 for (; ctx->field < stats_count; ctx->field++) {
777 int field = ctx->field;
779 if (!stats[field].type)
782 if (started && !chunk_strcat(out, ","))
787 if (domain == STATS_DOMAIN_PROXY) {
788 stats_print_proxy_field_json(out, &stats[field],
789 stat_f[domain][field].name,
791 stats[ST_F_TYPE].u.u32,
792 stats[ST_F_IID].u.u32,
793 stats[ST_F_SID].u.u32,
794 stats[ST_F_PID].u.u32);
795 } else if (domain == STATS_DOMAIN_RESOLVERS) {
796 stats_print_rslv_field_json(out, &stats[field],
797 stat_f[domain][field].name,
801 if (old_len == out->data)
804 if (!stats_emit_json_field_tags(out, &stats[field]))
807 if (!stats_emit_json_data_field(out, &stats[field]))
810 if (!chunk_strcat(out, "}"))
812 ready_data = out->data;
815 if (!chunk_strcat(out, "]"))
818 ctx->field = 0; /* we're done */
823 /* not enough buffer space for a single entry.. */
825 if (ctx->flags & STAT_STARTED)
826 chunk_strcat(out, ",");
827 chunk_appendf(out, "{\"errorStr\":\"output buffer too short\"}");
828 return 0; /* hard error */
830 /* push ready data and wait for a new buffer to complete the dump */
831 out->data = ready_data;
835 /* Dump all fields from <stats> into <out> using the HTML format. A column is
836 * reserved for the checkbox is STAT_ADMIN is set in <flags>. Some extra info
837 * are provided if STAT_SHLGNDS is present in <flags>. The statistics from
838 * extra modules are displayed at the end of the lines if STAT_SHMODULES is
839 * present in <flags>.
841 static int stats_dump_fields_html(struct buffer *out,
842 const struct field *stats,
843 struct show_stat_ctx *ctx)
846 struct stats_module *mod;
847 int flags = ctx->flags;
850 if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_FE) {
853 "<tr class=\"frontend\">");
855 if (flags & STAT_ADMIN) {
856 /* Column sub-heading for Enable or Disable server */
857 chunk_appendf(out, "<td></td>");
862 "<a name=\"%s/Frontend\"></a>"
863 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
864 "<td colspan=3></td>"
866 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_PXNAME));
869 /* sessions rate : current */
870 "<td><u>%s<div class=tips><table class=det>"
871 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
872 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
874 U2H(stats[ST_F_RATE].u.u32),
875 U2H(stats[ST_F_CONN_RATE].u.u32),
876 U2H(stats[ST_F_RATE].u.u32));
878 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
880 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
881 U2H(stats[ST_F_REQ_RATE].u.u32));
884 "</table></div></u></td>"
885 /* sessions rate : max */
886 "<td><u>%s<div class=tips><table class=det>"
887 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
888 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
890 U2H(stats[ST_F_RATE_MAX].u.u32),
891 U2H(stats[ST_F_CONN_RATE_MAX].u.u32),
892 U2H(stats[ST_F_RATE_MAX].u.u32));
894 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
896 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
897 U2H(stats[ST_F_REQ_RATE_MAX].u.u32));
900 "</table></div></u></td>"
901 /* sessions rate : limit */
903 LIM2A(stats[ST_F_RATE_LIM].u.u32, "-"));
906 /* sessions: current, max, limit, total */
907 "<td>%s</td><td>%s</td><td>%s</td>"
908 "<td><u>%s<div class=tips><table class=det>"
909 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
910 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
912 U2H(stats[ST_F_SCUR].u.u32), U2H(stats[ST_F_SMAX].u.u32), U2H(stats[ST_F_SLIM].u.u32),
913 U2H(stats[ST_F_STOT].u.u64),
914 U2H(stats[ST_F_CONN_TOT].u.u64),
915 U2H(stats[ST_F_STOT].u.u64));
917 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
918 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
920 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
921 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
922 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
923 "<tr><th> Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
924 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
925 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
926 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
927 "<tr><th>- other responses:</th><td>%s</td></tr>"
928 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
929 "<tr><th>Cache lookups:</th><td>%s</td></tr>"
930 "<tr><th>Cache hits:</th><td>%s</td><td>(%d%%)</td></tr>"
931 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
932 "<tr><th>Internal errors:</th><td>%s</td></tr>"
934 U2H(stats[ST_F_REQ_TOT].u.u64),
935 U2H(stats[ST_F_HRSP_1XX].u.u64),
936 U2H(stats[ST_F_HRSP_2XX].u.u64),
937 U2H(stats[ST_F_COMP_RSP].u.u64),
938 stats[ST_F_HRSP_2XX].u.u64 ?
939 (int)(100 * stats[ST_F_COMP_RSP].u.u64 / stats[ST_F_HRSP_2XX].u.u64) : 0,
940 U2H(stats[ST_F_HRSP_3XX].u.u64),
941 U2H(stats[ST_F_HRSP_4XX].u.u64),
942 U2H(stats[ST_F_HRSP_5XX].u.u64),
943 U2H(stats[ST_F_HRSP_OTHER].u.u64),
944 U2H(stats[ST_F_INTERCEPTED].u.u64),
945 U2H(stats[ST_F_CACHE_LOOKUPS].u.u64),
946 U2H(stats[ST_F_CACHE_HITS].u.u64),
947 stats[ST_F_CACHE_LOOKUPS].u.u64 ?
948 (int)(100 * stats[ST_F_CACHE_HITS].u.u64 / stats[ST_F_CACHE_LOOKUPS].u.u64) : 0,
949 U2H(stats[ST_F_WREW].u.u64),
950 U2H(stats[ST_F_EINT].u.u64));
954 "</table></div></u></td>"
955 /* sessions: lbtot, lastsess */
960 U2H(stats[ST_F_BIN].u.u64));
963 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
964 "<td>%s%s<div class=tips><table class=det>"
965 "<tr><th>Response bytes in:</th><td>%s</td></tr>"
966 "<tr><th>Compression in:</th><td>%s</td></tr>"
967 "<tr><th>Compression out:</th><td>%s</td><td>(%d%%)</td></tr>"
968 "<tr><th>Compression bypass:</th><td>%s</td></tr>"
969 "<tr><th>Total bytes saved:</th><td>%s</td><td>(%d%%)</td></tr>"
970 "</table></div>%s</td>",
971 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "<u>":"",
972 U2H(stats[ST_F_BOUT].u.u64),
973 U2H(stats[ST_F_BOUT].u.u64),
974 U2H(stats[ST_F_COMP_IN].u.u64),
975 U2H(stats[ST_F_COMP_OUT].u.u64),
976 stats[ST_F_COMP_IN].u.u64 ? (int)(stats[ST_F_COMP_OUT].u.u64 * 100 / stats[ST_F_COMP_IN].u.u64) : 0,
977 U2H(stats[ST_F_COMP_BYP].u.u64),
978 U2H(stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64),
979 stats[ST_F_BOUT].u.u64 ? (int)((stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64) * 100 / stats[ST_F_BOUT].u.u64) : 0,
980 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "</u>":"");
983 /* denied: req, resp */
984 "<td>%s</td><td>%s</td>"
985 /* errors : request, connect, response */
986 "<td>%s</td><td></td><td></td>"
987 /* warnings: retries, redispatches */
989 /* server status : reflect frontend status */
990 "<td class=ac>%s</td>"
991 /* rest of server: nothing */
992 "<td class=ac colspan=8></td>"
994 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
995 U2H(stats[ST_F_EREQ].u.u64),
996 field_str(stats, ST_F_STATUS));
998 if (flags & STAT_SHMODULES) {
999 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
1000 chunk_appendf(out, "<td>");
1002 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_FE) {
1004 "<u>%s<div class=tips><table class=det>",
1006 for (j = 0; j < mod->stats_count; ++j) {
1008 "<tr><th>%s</th><td>%s</td></tr>",
1009 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1012 chunk_appendf(out, "</table></div></u>");
1014 i += mod->stats_count;
1017 chunk_appendf(out, "</td>");
1021 chunk_appendf(out, "</tr>");
1023 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_SO) {
1024 chunk_appendf(out, "<tr class=socket>");
1025 if (flags & STAT_ADMIN) {
1026 /* Column sub-heading for Enable or Disable server */
1027 chunk_appendf(out, "<td></td>");
1031 /* frontend name, listener name */
1032 "<td class=ac><a name=\"%s/+%s\"></a>%s"
1033 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
1035 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME),
1036 (flags & STAT_SHLGNDS)?"<u>":"",
1037 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME), field_str(stats, ST_F_SVNAME));
1039 if (flags & STAT_SHLGNDS) {
1040 chunk_appendf(out, "<div class=tips>");
1042 if (isdigit((unsigned char)*field_str(stats, ST_F_ADDR)))
1043 chunk_appendf(out, "IPv4: %s, ", field_str(stats, ST_F_ADDR));
1044 else if (*field_str(stats, ST_F_ADDR) == '[')
1045 chunk_appendf(out, "IPv6: %s, ", field_str(stats, ST_F_ADDR));
1046 else if (*field_str(stats, ST_F_ADDR))
1047 chunk_appendf(out, "%s, ", field_str(stats, ST_F_ADDR));
1050 chunk_appendf(out, "id: %d</div>", stats[ST_F_SID].u.u32);
1055 "%s</td><td colspan=3></td>"
1056 /* sessions rate: current, max, limit */
1057 "<td colspan=3> </td>"
1058 /* sessions: current, max, limit, total, lbtot, lastsess */
1059 "<td>%s</td><td>%s</td><td>%s</td>"
1060 "<td>%s</td><td> </td><td> </td>"
1061 /* bytes: in, out */
1062 "<td>%s</td><td>%s</td>"
1064 (flags & STAT_SHLGNDS)?"</u>":"",
1065 U2H(stats[ST_F_SCUR].u.u32), U2H(stats[ST_F_SMAX].u.u32), U2H(stats[ST_F_SLIM].u.u32),
1066 U2H(stats[ST_F_STOT].u.u64), U2H(stats[ST_F_BIN].u.u64), U2H(stats[ST_F_BOUT].u.u64));
1069 /* denied: req, resp */
1070 "<td>%s</td><td>%s</td>"
1071 /* errors: request, connect, response */
1072 "<td>%s</td><td></td><td></td>"
1073 /* warnings: retries, redispatches */
1074 "<td></td><td></td>"
1075 /* server status: reflect listener status */
1076 "<td class=ac>%s</td>"
1077 /* rest of server: nothing */
1078 "<td class=ac colspan=8></td>"
1080 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
1081 U2H(stats[ST_F_EREQ].u.u64),
1082 field_str(stats, ST_F_STATUS));
1084 if (flags & STAT_SHMODULES) {
1085 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
1086 chunk_appendf(out, "<td>");
1088 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_LI) {
1090 "<u>%s<div class=tips><table class=det>",
1092 for (j = 0; j < mod->stats_count; ++j) {
1094 "<tr><th>%s</th><td>%s</td></tr>",
1095 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1098 chunk_appendf(out, "</table></div></u>");
1100 i += mod->stats_count;
1103 chunk_appendf(out, "</td>");
1107 chunk_appendf(out, "</tr>");
1109 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_SV) {
1112 /* determine the style to use depending on the server's state,
1113 * its health and weight. There isn't a 1-to-1 mapping between
1114 * state and styles for the cases where the server is (still)
1115 * up. The reason is that we don't want to report nolb and
1116 * drain with the same color.
1119 if (strcmp(field_str(stats, ST_F_STATUS), "DOWN") == 0 ||
1120 strcmp(field_str(stats, ST_F_STATUS), "DOWN (agent)") == 0) {
1123 else if (strncmp(field_str(stats, ST_F_STATUS), "DOWN ", strlen("DOWN ")) == 0) {
1126 else if (strcmp(field_str(stats, ST_F_STATUS), "DRAIN") == 0) {
1129 else if (strncmp(field_str(stats, ST_F_STATUS), "NOLB ", strlen("NOLB ")) == 0) {
1130 style = "going_down";
1132 else if (strcmp(field_str(stats, ST_F_STATUS), "NOLB") == 0) {
1135 else if (strcmp(field_str(stats, ST_F_STATUS), "no check") == 0) {
1138 else if (!stats[ST_F_CHKFAIL].type ||
1139 stats[ST_F_CHECK_HEALTH].u.u32 == stats[ST_F_CHECK_RISE].u.u32 + stats[ST_F_CHECK_FALL].u.u32 - 1) {
1140 /* no check or max health = UP */
1141 if (stats[ST_F_WEIGHT].u.u32)
1147 style = "going_down";
1150 if (strncmp(field_str(stats, ST_F_STATUS), "MAINT", 5) == 0)
1151 chunk_appendf(out, "<tr class=\"maintain\">");
1154 "<tr class=\"%s_%s\">",
1155 (stats[ST_F_BCK].u.u32) ? "backup" : "active", style);
1158 if (flags & STAT_ADMIN)
1160 "<td><input class='%s-checkbox' type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
1161 field_str(stats, ST_F_PXNAME),
1162 field_str(stats, ST_F_SVNAME));
1165 "<td class=ac><a name=\"%s/%s\"></a>%s"
1166 "<a class=lfsb href=\"#%s/%s\">%s</a>"
1168 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME),
1169 (flags & STAT_SHLGNDS) ? "<u>" : "",
1170 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_SVNAME), field_str(stats, ST_F_SVNAME));
1172 if (flags & STAT_SHLGNDS) {
1173 chunk_appendf(out, "<div class=tips>");
1175 if (isdigit((unsigned char)*field_str(stats, ST_F_ADDR)))
1176 chunk_appendf(out, "IPv4: %s, ", field_str(stats, ST_F_ADDR));
1177 else if (*field_str(stats, ST_F_ADDR) == '[')
1178 chunk_appendf(out, "IPv6: %s, ", field_str(stats, ST_F_ADDR));
1179 else if (*field_str(stats, ST_F_ADDR))
1180 chunk_appendf(out, "%s, ", field_str(stats, ST_F_ADDR));
1183 chunk_appendf(out, "id: %d, rid: %d", stats[ST_F_SID].u.u32, stats[ST_F_SRID].u.u32);
1186 if (stats[ST_F_COOKIE].type) {
1187 chunk_appendf(out, ", cookie: '");
1188 chunk_initstr(&src, field_str(stats, ST_F_COOKIE));
1189 chunk_htmlencode(out, &src);
1190 chunk_appendf(out, "'");
1193 chunk_appendf(out, "</div>");
1197 /* queue : current, max, limit */
1198 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
1199 /* sessions rate : current, max, limit */
1200 "<td>%s</td><td>%s</td><td></td>"
1202 (flags & STAT_SHLGNDS) ? "</u>" : "",
1203 U2H(stats[ST_F_QCUR].u.u32), U2H(stats[ST_F_QMAX].u.u32), LIM2A(stats[ST_F_QLIMIT].u.u32, "-"),
1204 U2H(stats[ST_F_RATE].u.u32), U2H(stats[ST_F_RATE_MAX].u.u32));
1207 /* sessions: current, max, limit, total */
1208 "<td><u>%s<div class=tips>"
1210 "<tr><th>Current active connections:</th><td>%s</td></tr>"
1211 "<tr><th>Current used connections:</th><td>%s</td></tr>"
1212 "<tr><th>Current idle connections:</th><td>%s</td></tr>"
1213 "<tr><th>- unsafe:</th><td>%s</td></tr>"
1214 "<tr><th>- safe:</th><td>%s</td></tr>"
1215 "<tr><th>Estimated need of connections:</th><td>%s</td></tr>"
1216 "<tr><th>Active connections limit:</th><td>%s</td></tr>"
1217 "<tr><th>Idle connections limit:</th><td>%s</td></tr>"
1218 "</table></div></u>"
1219 "</td><td>%s</td><td>%s</td>"
1220 "<td><u>%s<div class=tips><table class=det>"
1221 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
1223 U2H(stats[ST_F_SCUR].u.u32),
1224 U2H(stats[ST_F_SCUR].u.u32),
1225 U2H(stats[ST_F_USED_CONN_CUR].u.u32),
1226 U2H(stats[ST_F_SRV_ICUR].u.u32),
1227 U2H(stats[ST_F_IDLE_CONN_CUR].u.u32),
1228 U2H(stats[ST_F_SAFE_CONN_CUR].u.u32),
1229 U2H(stats[ST_F_NEED_CONN_EST].u.u32),
1231 LIM2A(stats[ST_F_SLIM].u.u32, "-"),
1232 stats[ST_F_SRV_ILIM].type ? U2H(stats[ST_F_SRV_ILIM].u.u32) : "-",
1233 U2H(stats[ST_F_SMAX].u.u32), LIM2A(stats[ST_F_SLIM].u.u32, "-"),
1234 U2H(stats[ST_F_STOT].u.u64),
1235 U2H(stats[ST_F_STOT].u.u64));
1237 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1238 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
1240 "<tr><th>New connections:</th><td>%s</td></tr>"
1241 "<tr><th>Reused connections:</th><td>%s</td><td>(%d%%)</td></tr>"
1242 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
1243 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1244 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1245 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1246 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1247 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1248 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
1249 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
1250 "<tr><th>Internal error:</th><td>%s</td></tr>"
1252 U2H(stats[ST_F_CONNECT].u.u64),
1253 U2H(stats[ST_F_REUSE].u.u64),
1254 (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64) ?
1255 (int)(100 * stats[ST_F_REUSE].u.u64 / (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64)) : 0,
1256 U2H(stats[ST_F_REQ_TOT].u.u64),
1257 U2H(stats[ST_F_HRSP_1XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1258 (int)(100 * stats[ST_F_HRSP_1XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1259 U2H(stats[ST_F_HRSP_2XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1260 (int)(100 * stats[ST_F_HRSP_2XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1261 U2H(stats[ST_F_HRSP_3XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1262 (int)(100 * stats[ST_F_HRSP_3XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1263 U2H(stats[ST_F_HRSP_4XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1264 (int)(100 * stats[ST_F_HRSP_4XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1265 U2H(stats[ST_F_HRSP_5XX].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1266 (int)(100 * stats[ST_F_HRSP_5XX].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1267 U2H(stats[ST_F_HRSP_OTHER].u.u64), stats[ST_F_REQ_TOT].u.u64 ?
1268 (int)(100 * stats[ST_F_HRSP_OTHER].u.u64 / stats[ST_F_REQ_TOT].u.u64) : 0,
1269 U2H(stats[ST_F_WREW].u.u64),
1270 U2H(stats[ST_F_EINT].u.u64));
1273 chunk_appendf(out, "<tr><th colspan=3>Max / Avg over last 1024 success. conn.</th></tr>");
1274 chunk_appendf(out, "<tr><th>- Queue time:</th><td>%s / %s</td><td>ms</td></tr>",
1275 U2H(stats[ST_F_QT_MAX].u.u32), U2H(stats[ST_F_QTIME].u.u32));
1276 chunk_appendf(out, "<tr><th>- Connect time:</th><td>%s / %s</td><td>ms</td></tr>",
1277 U2H(stats[ST_F_CT_MAX].u.u32), U2H(stats[ST_F_CTIME].u.u32));
1278 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
1279 chunk_appendf(out, "<tr><th>- Responses time:</th><td>%s / %s</td><td>ms</td></tr>",
1280 U2H(stats[ST_F_RT_MAX].u.u32), U2H(stats[ST_F_RTIME].u.u32));
1281 chunk_appendf(out, "<tr><th>- Total time:</th><td>%s / %s</td><td>ms</td></tr>",
1282 U2H(stats[ST_F_TT_MAX].u.u32), U2H(stats[ST_F_TTIME].u.u32));
1285 "</table></div></u></td>"
1286 /* sessions: lbtot, last */
1287 "<td>%s</td><td>%s</td>",
1288 U2H(stats[ST_F_LBTOT].u.u64),
1289 human_time(stats[ST_F_LASTSESS].u.s32, 1));
1292 /* bytes : in, out */
1293 "<td>%s</td><td>%s</td>"
1294 /* denied: req, resp */
1295 "<td></td><td>%s</td>"
1296 /* errors : request, connect */
1297 "<td></td><td>%s</td>"
1298 /* errors : response */
1299 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
1300 /* warnings: retries, redispatches */
1301 "<td>%lld</td><td>%lld</td>"
1303 U2H(stats[ST_F_BIN].u.u64), U2H(stats[ST_F_BOUT].u.u64),
1304 U2H(stats[ST_F_DRESP].u.u64),
1305 U2H(stats[ST_F_ECON].u.u64),
1306 U2H(stats[ST_F_ERESP].u.u64),
1307 (long long)stats[ST_F_CLI_ABRT].u.u64,
1308 (long long)stats[ST_F_SRV_ABRT].u.u64,
1309 (long long)stats[ST_F_WRETR].u.u64,
1310 (long long)stats[ST_F_WREDIS].u.u64);
1312 /* status, last change */
1313 chunk_appendf(out, "<td class=ac>");
1316 * LASTCHG should contain the last change for *this* server and must be computed
1317 * properly above, as was done below, ie: this server if maint, otherwise ref server
1318 * if tracking. Note that ref is either local or remote depending on tracking.
1322 if (strncmp(field_str(stats, ST_F_STATUS), "MAINT", 5) == 0) {
1323 chunk_appendf(out, "%s MAINT", human_time(stats[ST_F_LASTCHG].u.u32, 1));
1325 else if (strcmp(field_str(stats, ST_F_STATUS), "no check") == 0) {
1326 chunk_strcat(out, "<i>no check</i>");
1329 chunk_appendf(out, "%s %s", human_time(stats[ST_F_LASTCHG].u.u32, 1), field_str(stats, ST_F_STATUS));
1330 if (strncmp(field_str(stats, ST_F_STATUS), "DOWN", 4) == 0) {
1331 if (stats[ST_F_CHECK_HEALTH].u.u32)
1332 chunk_strcat(out, " ↑");
1334 else if (stats[ST_F_CHECK_HEALTH].u.u32 < stats[ST_F_CHECK_RISE].u.u32 + stats[ST_F_CHECK_FALL].u.u32 - 1)
1335 chunk_strcat(out, " ↓");
1338 if (strncmp(field_str(stats, ST_F_STATUS), "DOWN", 4) == 0 &&
1339 stats[ST_F_AGENT_STATUS].type && !stats[ST_F_AGENT_HEALTH].u.u32) {
1341 "</td><td class=ac><u> %s",
1342 field_str(stats, ST_F_AGENT_STATUS));
1344 if (stats[ST_F_AGENT_CODE].type)
1345 chunk_appendf(out, "/%d", stats[ST_F_AGENT_CODE].u.u32);
1347 if (stats[ST_F_AGENT_DURATION].type)
1348 chunk_appendf(out, " in %lums", (long)stats[ST_F_AGENT_DURATION].u.u64);
1350 chunk_appendf(out, "<div class=tips>%s", field_str(stats, ST_F_AGENT_DESC));
1352 if (*field_str(stats, ST_F_LAST_AGT)) {
1353 chunk_appendf(out, ": ");
1354 chunk_initstr(&src, field_str(stats, ST_F_LAST_AGT));
1355 chunk_htmlencode(out, &src);
1357 chunk_appendf(out, "</div></u>");
1359 else if (stats[ST_F_CHECK_STATUS].type) {
1361 "</td><td class=ac><u> %s",
1362 field_str(stats, ST_F_CHECK_STATUS));
1364 if (stats[ST_F_CHECK_CODE].type)
1365 chunk_appendf(out, "/%d", stats[ST_F_CHECK_CODE].u.u32);
1367 if (stats[ST_F_CHECK_DURATION].type)
1368 chunk_appendf(out, " in %lums", (long)stats[ST_F_CHECK_DURATION].u.u64);
1370 chunk_appendf(out, "<div class=tips>%s", field_str(stats, ST_F_CHECK_DESC));
1372 if (*field_str(stats, ST_F_LAST_CHK)) {
1373 chunk_appendf(out, ": ");
1374 chunk_initstr(&src, field_str(stats, ST_F_LAST_CHK));
1375 chunk_htmlencode(out, &src);
1377 chunk_appendf(out, "</div></u>");
1380 chunk_appendf(out, "</td><td>");
1383 /* weight / uweight */
1384 "</td><td class=ac>%d/%d</td>"
1386 "<td class=ac>%s</td><td class=ac>%s</td>"
1388 stats[ST_F_WEIGHT].u.u32, stats[ST_F_UWEIGHT].u.u32,
1389 stats[ST_F_BCK].u.u32 ? "-" : "Y",
1390 stats[ST_F_BCK].u.u32 ? "Y" : "-");
1392 /* check failures: unique, fatal, down time */
1393 if (strcmp(field_str(stats, ST_F_STATUS), "MAINT (resolution)") == 0) {
1394 chunk_appendf(out, "<td class=ac colspan=3>resolution</td>");
1396 else if (stats[ST_F_CHKFAIL].type) {
1397 chunk_appendf(out, "<td><u>%lld", (long long)stats[ST_F_CHKFAIL].u.u64);
1399 if (stats[ST_F_HANAFAIL].type)
1400 chunk_appendf(out, "/%lld", (long long)stats[ST_F_HANAFAIL].u.u64);
1403 "<div class=tips>Failed Health Checks%s</div></u></td>"
1404 "<td>%lld</td><td>%s</td>"
1406 stats[ST_F_HANAFAIL].type ? "/Health Analyses" : "",
1407 (long long)stats[ST_F_CHKDOWN].u.u64, human_time(stats[ST_F_DOWNTIME].u.u32, 1));
1409 else if (strcmp(field_str(stats, ST_F_STATUS), "MAINT") != 0 && field_format(stats, ST_F_TRACKED) == FF_STR) {
1410 /* tracking a server (hence inherited maint would appear as "MAINT (via...)" */
1412 "<td class=ac colspan=3><a class=lfsb href=\"#%s\">via %s</a></td>",
1413 field_str(stats, ST_F_TRACKED), field_str(stats, ST_F_TRACKED));
1416 chunk_appendf(out, "<td colspan=3></td>");
1419 if (stats[ST_F_THROTTLE].type)
1420 chunk_appendf(out, "<td class=ac>%d %%</td>\n", stats[ST_F_THROTTLE].u.u32);
1422 chunk_appendf(out, "<td class=ac>-</td>");
1424 if (flags & STAT_SHMODULES) {
1425 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
1426 chunk_appendf(out, "<td>");
1428 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_SRV) {
1430 "<u>%s<div class=tips><table class=det>",
1432 for (j = 0; j < mod->stats_count; ++j) {
1434 "<tr><th>%s</th><td>%s</td></tr>",
1435 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1438 chunk_appendf(out, "</table></div></u>");
1440 i += mod->stats_count;
1443 chunk_appendf(out, "</td>");
1447 chunk_appendf(out, "</tr>\n");
1449 else if (stats[ST_F_TYPE].u.u32 == STATS_TYPE_BE) {
1450 chunk_appendf(out, "<tr class=\"backend\">");
1451 if (flags & STAT_ADMIN) {
1452 /* Column sub-heading for Enable or Disable server */
1453 chunk_appendf(out, "<td></td>");
1458 "%s<a name=\"%s/Backend\"></a>"
1459 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
1461 (flags & STAT_SHLGNDS)?"<u>":"",
1462 field_str(stats, ST_F_PXNAME), field_str(stats, ST_F_PXNAME));
1464 if (flags & STAT_SHLGNDS) {
1466 chunk_appendf(out, "<div class=tips>balancing: %s",
1467 field_str(stats, ST_F_ALGO));
1470 if (stats[ST_F_COOKIE].type) {
1471 chunk_appendf(out, ", cookie: '");
1472 chunk_initstr(&src, field_str(stats, ST_F_COOKIE));
1473 chunk_htmlencode(out, &src);
1474 chunk_appendf(out, "'");
1476 chunk_appendf(out, "</div>");
1481 /* queue : current, max */
1482 "<td>%s</td><td>%s</td><td></td>"
1483 /* sessions rate : current, max, limit */
1484 "<td>%s</td><td>%s</td><td></td>"
1486 (flags & STAT_SHLGNDS)?"</u>":"",
1487 U2H(stats[ST_F_QCUR].u.u32), U2H(stats[ST_F_QMAX].u.u32),
1488 U2H(stats[ST_F_RATE].u.u32), U2H(stats[ST_F_RATE_MAX].u.u32));
1491 /* sessions: current, max, limit, total */
1492 "<td>%s</td><td>%s</td><td>%s</td>"
1493 "<td><u>%s<div class=tips><table class=det>"
1494 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
1496 U2H(stats[ST_F_SCUR].u.u32), U2H(stats[ST_F_SMAX].u.u32), U2H(stats[ST_F_SLIM].u.u32),
1497 U2H(stats[ST_F_STOT].u.u64),
1498 U2H(stats[ST_F_STOT].u.u64));
1500 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1501 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0) {
1503 "<tr><th>New connections:</th><td>%s</td></tr>"
1504 "<tr><th>Reused connections:</th><td>%s</td><td>(%d%%)</td></tr>"
1505 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
1506 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
1507 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
1508 "<tr><th> Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
1509 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
1510 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
1511 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
1512 "<tr><th>- other responses:</th><td>%s</td></tr>"
1513 "<tr><th>Cache lookups:</th><td>%s</td></tr>"
1514 "<tr><th>Cache hits:</th><td>%s</td><td>(%d%%)</td></tr>"
1515 "<tr><th>Failed hdr rewrites:</th><td>%s</td></tr>"
1516 "<tr><th>Internal errors:</th><td>%s</td></tr>"
1518 U2H(stats[ST_F_CONNECT].u.u64),
1519 U2H(stats[ST_F_REUSE].u.u64),
1520 (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64) ?
1521 (int)(100 * stats[ST_F_REUSE].u.u64 / (stats[ST_F_CONNECT].u.u64 + stats[ST_F_REUSE].u.u64)) : 0,
1522 U2H(stats[ST_F_REQ_TOT].u.u64),
1523 U2H(stats[ST_F_HRSP_1XX].u.u64),
1524 U2H(stats[ST_F_HRSP_2XX].u.u64),
1525 U2H(stats[ST_F_COMP_RSP].u.u64),
1526 stats[ST_F_HRSP_2XX].u.u64 ?
1527 (int)(100 * stats[ST_F_COMP_RSP].u.u64 / stats[ST_F_HRSP_2XX].u.u64) : 0,
1528 U2H(stats[ST_F_HRSP_3XX].u.u64),
1529 U2H(stats[ST_F_HRSP_4XX].u.u64),
1530 U2H(stats[ST_F_HRSP_5XX].u.u64),
1531 U2H(stats[ST_F_HRSP_OTHER].u.u64),
1532 U2H(stats[ST_F_CACHE_LOOKUPS].u.u64),
1533 U2H(stats[ST_F_CACHE_HITS].u.u64),
1534 stats[ST_F_CACHE_LOOKUPS].u.u64 ?
1535 (int)(100 * stats[ST_F_CACHE_HITS].u.u64 / stats[ST_F_CACHE_LOOKUPS].u.u64) : 0,
1536 U2H(stats[ST_F_WREW].u.u64),
1537 U2H(stats[ST_F_EINT].u.u64));
1540 chunk_appendf(out, "<tr><th colspan=3>Max / Avg over last 1024 success. conn.</th></tr>");
1541 chunk_appendf(out, "<tr><th>- Queue time:</th><td>%s / %s</td><td>ms</td></tr>",
1542 U2H(stats[ST_F_QT_MAX].u.u32), U2H(stats[ST_F_QTIME].u.u32));
1543 chunk_appendf(out, "<tr><th>- Connect time:</th><td>%s / %s</td><td>ms</td></tr>",
1544 U2H(stats[ST_F_CT_MAX].u.u32), U2H(stats[ST_F_CTIME].u.u32));
1545 if (strcmp(field_str(stats, ST_F_MODE), "http") == 0)
1546 chunk_appendf(out, "<tr><th>- Responses time:</th><td>%s / %s</td><td>ms</td></tr>",
1547 U2H(stats[ST_F_RT_MAX].u.u32), U2H(stats[ST_F_RTIME].u.u32));
1548 chunk_appendf(out, "<tr><th>- Total time:</th><td>%s / %s</td><td>ms</td></tr>",
1549 U2H(stats[ST_F_TT_MAX].u.u32), U2H(stats[ST_F_TTIME].u.u32));
1552 "</table></div></u></td>"
1553 /* sessions: lbtot, last */
1554 "<td>%s</td><td>%s</td>"
1558 U2H(stats[ST_F_LBTOT].u.u64),
1559 human_time(stats[ST_F_LASTSESS].u.s32, 1),
1560 U2H(stats[ST_F_BIN].u.u64));
1563 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
1564 "<td>%s%s<div class=tips><table class=det>"
1565 "<tr><th>Response bytes in:</th><td>%s</td></tr>"
1566 "<tr><th>Compression in:</th><td>%s</td></tr>"
1567 "<tr><th>Compression out:</th><td>%s</td><td>(%d%%)</td></tr>"
1568 "<tr><th>Compression bypass:</th><td>%s</td></tr>"
1569 "<tr><th>Total bytes saved:</th><td>%s</td><td>(%d%%)</td></tr>"
1570 "</table></div>%s</td>",
1571 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "<u>":"",
1572 U2H(stats[ST_F_BOUT].u.u64),
1573 U2H(stats[ST_F_BOUT].u.u64),
1574 U2H(stats[ST_F_COMP_IN].u.u64),
1575 U2H(stats[ST_F_COMP_OUT].u.u64),
1576 stats[ST_F_COMP_IN].u.u64 ? (int)(stats[ST_F_COMP_OUT].u.u64 * 100 / stats[ST_F_COMP_IN].u.u64) : 0,
1577 U2H(stats[ST_F_COMP_BYP].u.u64),
1578 U2H(stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64),
1579 stats[ST_F_BOUT].u.u64 ? (int)((stats[ST_F_COMP_IN].u.u64 - stats[ST_F_COMP_OUT].u.u64) * 100 / stats[ST_F_BOUT].u.u64) : 0,
1580 (stats[ST_F_COMP_IN].u.u64 || stats[ST_F_COMP_BYP].u.u64) ? "</u>":"");
1583 /* denied: req, resp */
1584 "<td>%s</td><td>%s</td>"
1585 /* errors : request, connect */
1586 "<td></td><td>%s</td>"
1587 /* errors : response */
1588 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
1589 /* warnings: retries, redispatches */
1590 "<td>%lld</td><td>%lld</td>"
1591 /* backend status: reflect backend status (up/down): we display UP
1592 * if the backend has known working servers or if it has no server at
1593 * all (eg: for stats). Then we display the total weight, number of
1594 * active and backups. */
1595 "<td class=ac>%s %s</td><td class=ac> </td><td class=ac>%d/%d</td>"
1596 "<td class=ac>%d</td><td class=ac>%d</td>"
1598 U2H(stats[ST_F_DREQ].u.u64), U2H(stats[ST_F_DRESP].u.u64),
1599 U2H(stats[ST_F_ECON].u.u64),
1600 U2H(stats[ST_F_ERESP].u.u64),
1601 (long long)stats[ST_F_CLI_ABRT].u.u64,
1602 (long long)stats[ST_F_SRV_ABRT].u.u64,
1603 (long long)stats[ST_F_WRETR].u.u64, (long long)stats[ST_F_WREDIS].u.u64,
1604 human_time(stats[ST_F_LASTCHG].u.u32, 1),
1605 strcmp(field_str(stats, ST_F_STATUS), "DOWN") ? field_str(stats, ST_F_STATUS) : "<font color=\"red\"><b>DOWN</b></font>",
1606 stats[ST_F_WEIGHT].u.u32, stats[ST_F_UWEIGHT].u.u32,
1607 stats[ST_F_ACT].u.u32, stats[ST_F_BCK].u.u32);
1610 /* rest of backend: nothing, down transitions, total downtime, throttle */
1611 "<td class=ac> </td><td>%d</td>"
1614 stats[ST_F_CHKDOWN].u.u32,
1615 stats[ST_F_DOWNTIME].type ? human_time(stats[ST_F_DOWNTIME].u.u32, 1) : " ");
1617 if (flags & STAT_SHMODULES) {
1618 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
1619 chunk_appendf(out, "<td>");
1621 if (stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_BE) {
1623 "<u>%s<div class=tips><table class=det>",
1625 for (j = 0; j < mod->stats_count; ++j) {
1627 "<tr><th>%s</th><td>%s</td></tr>",
1628 mod->stats[j].desc, field_to_html_str(&stats[ST_F_TOTAL_FIELDS + i]));
1631 chunk_appendf(out, "</table></div></u>");
1633 i += mod->stats_count;
1636 chunk_appendf(out, "</td>");
1640 chunk_appendf(out, "</tr>");
1646 int stats_dump_one_line(const struct field *stats, size_t stats_count,
1647 struct appctx *appctx)
1649 struct show_stat_ctx *ctx = appctx->svcctx;
1652 if (ctx->flags & STAT_FMT_HTML)
1653 ret = stats_dump_fields_html(&trash_chunk, stats, ctx);
1654 else if (ctx->flags & STAT_FMT_TYPED)
1655 ret = stats_dump_fields_typed(&trash_chunk, stats, stats_count, ctx);
1656 else if (ctx->flags & STAT_FMT_JSON)
1657 ret = stats_dump_fields_json(&trash_chunk, stats, stats_count, ctx);
1659 ret = stats_dump_fields_csv(&trash_chunk, stats, stats_count, ctx);
1662 ctx->flags |= STAT_STARTED;
1667 /* Fill <stats> with the frontend statistics. <stats> is preallocated array of
1668 * length <len>. If <selected_field> is != NULL, only fill this one. The length
1669 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
1670 * this value, or if the selected field is not implemented for frontends, the
1671 * function returns 0, otherwise, it returns 1.
1673 int stats_fill_fe_stats(struct proxy *px, struct field *stats, int len,
1674 enum stat_field *selected_field)
1676 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
1678 if (len < ST_F_TOTAL_FIELDS)
1681 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
1682 struct field metric = { 0 };
1684 switch (current_field) {
1686 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
1689 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, "FRONTEND");
1692 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
1695 metric = mkf_u32(0, px->feconn);
1698 metric = mkf_u32(FN_MAX, px->fe_counters.conn_max);
1701 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->maxconn);
1704 metric = mkf_u64(FN_COUNTER, px->fe_counters.cum_sess);
1707 metric = mkf_u64(FN_COUNTER, px->fe_counters.bytes_in);
1710 metric = mkf_u64(FN_COUNTER, px->fe_counters.bytes_out);
1713 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_req);
1716 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_resp);
1719 metric = mkf_u64(FN_COUNTER, px->fe_counters.failed_req);
1722 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_conn);
1725 metric = mkf_u64(FN_COUNTER, px->fe_counters.denied_sess);
1730 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))
1732 else if (px->flags & PR_FL_PAUSED)
1736 metric = mkf_str(FO_STATUS, state);
1740 metric = mkf_u32(FO_KEY, 1);
1743 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
1746 metric = mkf_u32(FO_KEY|FS_SERVICE, 0);
1749 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_FE);
1752 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_sess_per_sec));
1755 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->fe_sps_lim);
1758 metric = mkf_u32(FN_MAX, px->fe_counters.sps_max);
1761 metric = mkf_u64(FN_COUNTER, px->fe_counters.failed_rewrites);
1764 metric = mkf_u64(FN_COUNTER, px->fe_counters.internal_errors);
1767 if (px->mode == PR_MODE_HTTP)
1768 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[1]);
1771 if (px->mode == PR_MODE_HTTP)
1772 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[2]);
1775 if (px->mode == PR_MODE_HTTP)
1776 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[3]);
1779 if (px->mode == PR_MODE_HTTP)
1780 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[4]);
1783 if (px->mode == PR_MODE_HTTP)
1784 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[5]);
1786 case ST_F_HRSP_OTHER:
1787 if (px->mode == PR_MODE_HTTP)
1788 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.rsp[0]);
1790 case ST_F_INTERCEPTED:
1791 if (px->mode == PR_MODE_HTTP)
1792 metric = mkf_u64(FN_COUNTER, px->fe_counters.intercepted_req);
1794 case ST_F_CACHE_LOOKUPS:
1795 if (px->mode == PR_MODE_HTTP)
1796 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cache_lookups);
1798 case ST_F_CACHE_HITS:
1799 if (px->mode == PR_MODE_HTTP)
1800 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cache_hits);
1803 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_req_per_sec));
1805 case ST_F_REQ_RATE_MAX:
1806 metric = mkf_u32(FN_MAX, px->fe_counters.p.http.rps_max);
1809 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.cum_req);
1812 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_in);
1815 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_out);
1818 metric = mkf_u64(FN_COUNTER, px->fe_counters.comp_byp);
1821 metric = mkf_u64(FN_COUNTER, px->fe_counters.p.http.comp_rsp);
1823 case ST_F_CONN_RATE:
1824 metric = mkf_u32(FN_RATE, read_freq_ctr(&px->fe_conn_per_sec));
1826 case ST_F_CONN_RATE_MAX:
1827 metric = mkf_u32(FN_MAX, px->fe_counters.cps_max);
1830 metric = mkf_u64(FN_COUNTER, px->fe_counters.cum_conn);
1833 /* not used for frontends. If a specific metric
1834 * is requested, return an error. Otherwise continue.
1836 if (selected_field != NULL)
1840 stats[current_field] = metric;
1841 if (selected_field != NULL)
1847 /* Dumps a frontend's line to the local trash buffer for the current proxy <px>
1848 * and uses the state from stream connector <sc>. The caller is responsible for
1849 * clearing the local trash buffer if needed. Returns non-zero if it emits
1850 * anything, zero otherwise.
1852 static int stats_dump_fe_stats(struct stconn *sc, struct proxy *px)
1854 struct appctx *appctx = __sc_appctx(sc);
1855 struct show_stat_ctx *ctx = appctx->svcctx;
1856 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
1857 struct stats_module *mod;
1858 size_t stats_count = ST_F_TOTAL_FIELDS;
1860 if (!(px->cap & PR_CAP_FE))
1863 if ((ctx->flags & STAT_BOUND) && !(ctx->type & (1 << STATS_TYPE_FE)))
1866 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
1868 if (!stats_fill_fe_stats(px, stats, ST_F_TOTAL_FIELDS, NULL))
1871 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
1874 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_FE)) {
1875 stats_count += mod->stats_count;
1879 counters = EXTRA_COUNTERS_GET(px->extra_counters_fe, mod);
1880 mod->fill_stats(counters, stats + stats_count);
1881 stats_count += mod->stats_count;
1884 return stats_dump_one_line(stats, stats_count, appctx);
1887 /* Fill <stats> with the listener statistics. <stats> is preallocated array of
1888 * length <len>. The length of the array must be at least ST_F_TOTAL_FIELDS. If
1889 * this length is less then this value, the function returns 0, otherwise, it
1890 * returns 1. If selected_field is != NULL, only fill this one. <flags> can
1891 * take the value STAT_SHLGNDS.
1893 int stats_fill_li_stats(struct proxy *px, struct listener *l, int flags,
1894 struct field *stats, int len, enum stat_field *selected_field)
1896 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
1897 struct buffer *out = get_trash_chunk();
1899 if (len < ST_F_TOTAL_FIELDS)
1907 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
1908 struct field metric = { 0 };
1910 switch (current_field) {
1912 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
1915 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, l->name);
1918 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
1921 metric = mkf_u32(0, l->nbconn);
1924 metric = mkf_u32(FN_MAX, l->counters->conn_max);
1927 metric = mkf_u32(FO_CONFIG|FN_LIMIT, l->maxconn);
1930 metric = mkf_u64(FN_COUNTER, l->counters->cum_conn);
1933 metric = mkf_u64(FN_COUNTER, l->counters->bytes_in);
1936 metric = mkf_u64(FN_COUNTER, l->counters->bytes_out);
1939 metric = mkf_u64(FN_COUNTER, l->counters->denied_req);
1942 metric = mkf_u64(FN_COUNTER, l->counters->denied_resp);
1945 metric = mkf_u64(FN_COUNTER, l->counters->failed_req);
1948 metric = mkf_u64(FN_COUNTER, l->counters->denied_conn);
1951 metric = mkf_u64(FN_COUNTER, l->counters->denied_sess);
1954 metric = mkf_str(FO_STATUS, li_status_st[get_li_status(l)]);
1957 metric = mkf_u32(FO_KEY, 1);
1960 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
1963 metric = mkf_u32(FO_KEY|FS_SERVICE, l->luid);
1966 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_SO);
1969 metric = mkf_u64(FN_COUNTER, l->counters->failed_rewrites);
1972 metric = mkf_u64(FN_COUNTER, l->counters->internal_errors);
1975 if (flags & STAT_SHLGNDS) {
1976 char str[INET6_ADDRSTRLEN];
1979 port = get_host_port(&l->rx.addr);
1980 switch (addr_to_str(&l->rx.addr, str, sizeof(str))) {
1982 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1983 chunk_appendf(out, "%s:%d", str, port);
1986 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1987 chunk_appendf(out, "[%s]:%d", str, port);
1990 metric = mkf_str(FO_CONFIG|FS_SERVICE, "unix");
1993 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
1994 chunk_strcat(out, strerror(errno));
1996 default: /* address family not supported */
2002 /* not used for listen. If a specific metric
2003 * is requested, return an error. Otherwise continue.
2005 if (selected_field != NULL)
2009 stats[current_field] = metric;
2010 if (selected_field != NULL)
2016 /* Dumps a line for listener <l> and proxy <px> to the local trash buffer and
2017 * uses the state from stream connector <sc>. The caller is responsible for
2018 * clearing the local trash buffer if needed. Returns non-zero if it emits
2019 * anything, zero otherwise.
2021 static int stats_dump_li_stats(struct stconn *sc, struct proxy *px, struct listener *l)
2023 struct appctx *appctx = __sc_appctx(sc);
2024 struct show_stat_ctx *ctx = appctx->svcctx;
2025 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
2026 struct stats_module *mod;
2027 size_t stats_count = ST_F_TOTAL_FIELDS;
2029 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
2031 if (!stats_fill_li_stats(px, l, ctx->flags, stats,
2032 ST_F_TOTAL_FIELDS, NULL))
2035 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2038 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_LI)) {
2039 stats_count += mod->stats_count;
2043 counters = EXTRA_COUNTERS_GET(l->extra_counters, mod);
2044 mod->fill_stats(counters, stats + stats_count);
2045 stats_count += mod->stats_count;
2048 return stats_dump_one_line(stats, stats_count, appctx);
2051 enum srv_stats_state {
2052 SRV_STATS_STATE_DOWN = 0,
2053 SRV_STATS_STATE_DOWN_AGENT,
2054 SRV_STATS_STATE_GOING_UP,
2055 SRV_STATS_STATE_UP_GOING_DOWN,
2057 SRV_STATS_STATE_NOLB_GOING_DOWN,
2058 SRV_STATS_STATE_NOLB,
2059 SRV_STATS_STATE_DRAIN_GOING_DOWN,
2060 SRV_STATS_STATE_DRAIN,
2061 SRV_STATS_STATE_DRAIN_AGENT,
2062 SRV_STATS_STATE_NO_CHECK,
2064 SRV_STATS_STATE_COUNT, /* Must be last */
2067 static const char *srv_hlt_st[SRV_STATS_STATE_COUNT] = {
2068 [SRV_STATS_STATE_DOWN] = "DOWN",
2069 [SRV_STATS_STATE_DOWN_AGENT] = "DOWN (agent)",
2070 [SRV_STATS_STATE_GOING_UP] = "DOWN %d/%d",
2071 [SRV_STATS_STATE_UP_GOING_DOWN] = "UP %d/%d",
2072 [SRV_STATS_STATE_UP] = "UP",
2073 [SRV_STATS_STATE_NOLB_GOING_DOWN] = "NOLB %d/%d",
2074 [SRV_STATS_STATE_NOLB] = "NOLB",
2075 [SRV_STATS_STATE_DRAIN_GOING_DOWN] = "DRAIN %d/%d",
2076 [SRV_STATS_STATE_DRAIN] = "DRAIN",
2077 [SRV_STATS_STATE_DRAIN_AGENT] = "DRAIN (agent)",
2078 [SRV_STATS_STATE_NO_CHECK] = "no check"
2081 /* Compute server state helper
2083 static void stats_fill_sv_stats_computestate(struct server *sv, struct server *ref,
2084 enum srv_stats_state *state)
2086 if (sv->cur_state == SRV_ST_RUNNING || sv->cur_state == SRV_ST_STARTING) {
2087 if ((ref->check.state & CHK_ST_ENABLED) &&
2088 (ref->check.health < ref->check.rise + ref->check.fall - 1)) {
2089 *state = SRV_STATS_STATE_UP_GOING_DOWN;
2091 *state = SRV_STATS_STATE_UP;
2094 if (sv->cur_admin & SRV_ADMF_DRAIN) {
2095 if (ref->agent.state & CHK_ST_ENABLED)
2096 *state = SRV_STATS_STATE_DRAIN_AGENT;
2097 else if (*state == SRV_STATS_STATE_UP_GOING_DOWN)
2098 *state = SRV_STATS_STATE_DRAIN_GOING_DOWN;
2100 *state = SRV_STATS_STATE_DRAIN;
2103 if (*state == SRV_STATS_STATE_UP && !(ref->check.state & CHK_ST_ENABLED)) {
2104 *state = SRV_STATS_STATE_NO_CHECK;
2107 else if (sv->cur_state == SRV_ST_STOPPING) {
2108 if ((!(sv->check.state & CHK_ST_ENABLED) && !sv->track) ||
2109 (ref->check.health == ref->check.rise + ref->check.fall - 1)) {
2110 *state = SRV_STATS_STATE_NOLB;
2112 *state = SRV_STATS_STATE_NOLB_GOING_DOWN;
2115 else { /* stopped */
2116 if ((ref->agent.state & CHK_ST_ENABLED) && !ref->agent.health) {
2117 *state = SRV_STATS_STATE_DOWN_AGENT;
2118 } else if ((ref->check.state & CHK_ST_ENABLED) && !ref->check.health) {
2119 *state = SRV_STATS_STATE_DOWN; /* DOWN */
2120 } else if ((ref->agent.state & CHK_ST_ENABLED) || (ref->check.state & CHK_ST_ENABLED)) {
2121 *state = SRV_STATS_STATE_GOING_UP;
2123 *state = SRV_STATS_STATE_DOWN; /* DOWN, unchecked */
2128 /* Fill <stats> with the backend statistics. <stats> is preallocated array of
2129 * length <len>. If <selected_field> is != NULL, only fill this one. The length
2130 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
2131 * this value, or if the selected field is not implemented for servers, the
2132 * function returns 0, otherwise, it returns 1. <flags> can take the value
2135 int stats_fill_sv_stats(struct proxy *px, struct server *sv, int flags,
2136 struct field *stats, int len,
2137 enum stat_field *selected_field)
2139 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
2140 struct server *via = sv->track ? sv->track : sv;
2141 struct server *ref = via;
2142 enum srv_stats_state state = 0;
2143 char str[INET6_ADDRSTRLEN];
2144 struct buffer *out = get_trash_chunk();
2146 long long srv_samples_counter;
2147 unsigned int srv_samples_window = TIME_STATS_SAMPLES;
2149 if (len < ST_F_TOTAL_FIELDS)
2154 /* compute state for later use */
2155 if (selected_field == NULL || *selected_field == ST_F_STATUS ||
2156 *selected_field == ST_F_CHECK_RISE || *selected_field == ST_F_CHECK_FALL ||
2157 *selected_field == ST_F_CHECK_HEALTH || *selected_field == ST_F_HANAFAIL) {
2158 /* we have "via" which is the tracked server as described in the configuration,
2159 * and "ref" which is the checked server and the end of the chain.
2163 stats_fill_sv_stats_computestate(sv, ref, &state);
2166 /* compue time values for later use */
2167 if (selected_field == NULL || *selected_field == ST_F_QTIME ||
2168 *selected_field == ST_F_CTIME || *selected_field == ST_F_RTIME ||
2169 *selected_field == ST_F_TTIME) {
2170 srv_samples_counter = (px->mode == PR_MODE_HTTP) ? sv->counters.p.http.cum_req : sv->counters.cum_lbconn;
2171 if (srv_samples_counter < TIME_STATS_SAMPLES && srv_samples_counter > 0)
2172 srv_samples_window = srv_samples_counter;
2175 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
2176 struct field metric = { 0 };
2178 switch (current_field) {
2180 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
2183 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, sv->id);
2186 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
2189 metric = mkf_u32(0, sv->queue.length);
2192 metric = mkf_u32(FN_MAX, sv->counters.nbpend_max);
2195 metric = mkf_u32(0, sv->cur_sess);
2198 metric = mkf_u32(FN_MAX, sv->counters.cur_sess_max);
2202 metric = mkf_u32(FO_CONFIG|FN_LIMIT, sv->maxconn);
2205 metric = mkf_u32(0, sv->curr_idle_conns);
2208 if (sv->max_idle_conns != -1)
2209 metric = mkf_u32(FO_CONFIG|FN_LIMIT, sv->max_idle_conns);
2212 metric = mkf_u64(FN_COUNTER, sv->counters.cum_sess);
2215 metric = mkf_u64(FN_COUNTER, sv->counters.bytes_in);
2218 metric = mkf_u64(FN_COUNTER, sv->counters.bytes_out);
2221 metric = mkf_u64(FN_COUNTER, sv->counters.denied_resp);
2224 metric = mkf_u64(FN_COUNTER, sv->counters.failed_conns);
2227 metric = mkf_u64(FN_COUNTER, sv->counters.failed_resp);
2230 metric = mkf_u64(FN_COUNTER, sv->counters.retries);
2233 metric = mkf_u64(FN_COUNTER, sv->counters.redispatches);
2236 metric = mkf_u64(FN_COUNTER, sv->counters.failed_rewrites);
2239 metric = mkf_u64(FN_COUNTER, sv->counters.internal_errors);
2242 metric = mkf_u64(FN_COUNTER, sv->counters.connect);
2245 metric = mkf_u64(FN_COUNTER, sv->counters.reuse);
2247 case ST_F_IDLE_CONN_CUR:
2248 metric = mkf_u32(0, sv->curr_idle_nb);
2250 case ST_F_SAFE_CONN_CUR:
2251 metric = mkf_u32(0, sv->curr_safe_nb);
2253 case ST_F_USED_CONN_CUR:
2254 metric = mkf_u32(0, sv->curr_used_conns);
2256 case ST_F_NEED_CONN_EST:
2257 metric = mkf_u32(0, sv->est_need_conns);
2260 fld_status = chunk_newstr(out);
2261 if (sv->cur_admin & SRV_ADMF_RMAINT)
2262 chunk_appendf(out, "MAINT (resolution)");
2263 else if (sv->cur_admin & SRV_ADMF_IMAINT)
2264 chunk_appendf(out, "MAINT (via %s/%s)", via->proxy->id, via->id);
2265 else if (sv->cur_admin & SRV_ADMF_MAINT)
2266 chunk_appendf(out, "MAINT");
2270 (ref->cur_state != SRV_ST_STOPPED) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2271 (ref->cur_state != SRV_ST_STOPPED) ? (ref->check.fall) : (ref->check.rise));
2273 metric = mkf_str(FO_STATUS, fld_status);
2276 metric = mkf_u32(FN_AGE, now.tv_sec - sv->last_change);
2279 metric = mkf_u32(FN_AVG, (sv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv);
2282 metric = mkf_u32(FN_AVG, sv->uweight);
2285 metric = mkf_u32(FO_STATUS, (sv->flags & SRV_F_BACKUP) ? 0 : 1);
2288 metric = mkf_u32(FO_STATUS, (sv->flags & SRV_F_BACKUP) ? 1 : 0);
2291 if (sv->check.state & CHK_ST_ENABLED)
2292 metric = mkf_u64(FN_COUNTER, sv->counters.failed_checks);
2295 if (sv->check.state & CHK_ST_ENABLED)
2296 metric = mkf_u64(FN_COUNTER, sv->counters.down_trans);
2299 if (sv->check.state & CHK_ST_ENABLED)
2300 metric = mkf_u32(FN_COUNTER, srv_downtime(sv));
2304 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->maxqueue);
2307 metric = mkf_u32(FO_KEY, 1);
2310 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
2313 metric = mkf_u32(FO_KEY|FS_SERVICE, sv->puid);
2316 metric = mkf_u32(FN_COUNTER, sv->rid);
2319 if (sv->cur_state == SRV_ST_STARTING && !server_is_draining(sv))
2320 metric = mkf_u32(FN_AVG, server_throttle_rate(sv));
2323 metric = mkf_u64(FN_COUNTER, sv->counters.cum_lbconn);
2327 char *fld_track = chunk_newstr(out);
2328 chunk_appendf(out, "%s/%s", sv->track->proxy->id, sv->track->id);
2329 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, fld_track);
2333 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_SV);
2336 metric = mkf_u32(FN_RATE, read_freq_ctr(&sv->sess_per_sec));
2339 metric = mkf_u32(FN_MAX, sv->counters.sps_max);
2341 case ST_F_CHECK_STATUS:
2342 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) {
2343 const char *fld_chksts;
2345 fld_chksts = chunk_newstr(out);
2346 chunk_strcat(out, "* "); // for check in progress
2347 chunk_strcat(out, get_check_status_info(sv->check.status));
2348 if (!(sv->check.state & CHK_ST_INPROGRESS))
2349 fld_chksts += 2; // skip "* "
2350 metric = mkf_str(FN_OUTPUT, fld_chksts);
2353 case ST_F_CHECK_CODE:
2354 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2355 sv->check.status >= HCHK_STATUS_L57DATA)
2356 metric = mkf_u32(FN_OUTPUT, sv->check.code);
2358 case ST_F_CHECK_DURATION:
2359 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2360 sv->check.status >= HCHK_STATUS_CHECKED)
2361 metric = mkf_u64(FN_DURATION, MAX(sv->check.duration, 0));
2363 case ST_F_CHECK_DESC:
2364 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2365 metric = mkf_str(FN_OUTPUT, get_check_status_description(sv->check.status));
2368 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2369 metric = mkf_str(FN_OUTPUT, sv->check.desc);
2371 case ST_F_CHECK_RISE:
2372 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2373 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.rise);
2375 case ST_F_CHECK_FALL:
2376 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2377 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.fall);
2379 case ST_F_CHECK_HEALTH:
2380 if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2381 metric = mkf_u32(FO_CONFIG|FS_SERVICE, ref->check.health);
2383 case ST_F_AGENT_STATUS:
2384 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) {
2385 const char *fld_chksts;
2387 fld_chksts = chunk_newstr(out);
2388 chunk_strcat(out, "* "); // for check in progress
2389 chunk_strcat(out, get_check_status_info(sv->agent.status));
2390 if (!(sv->agent.state & CHK_ST_INPROGRESS))
2391 fld_chksts += 2; // skip "* "
2392 metric = mkf_str(FN_OUTPUT, fld_chksts);
2395 case ST_F_AGENT_CODE:
2396 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED &&
2397 (sv->agent.status >= HCHK_STATUS_L57DATA))
2398 metric = mkf_u32(FN_OUTPUT, sv->agent.code);
2400 case ST_F_AGENT_DURATION:
2401 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2402 metric = mkf_u64(FN_DURATION, sv->agent.duration);
2404 case ST_F_AGENT_DESC:
2405 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2406 metric = mkf_str(FN_OUTPUT, get_check_status_description(sv->agent.status));
2409 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2410 metric = mkf_str(FN_OUTPUT, sv->agent.desc);
2412 case ST_F_AGENT_RISE:
2413 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2414 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.rise);
2416 case ST_F_AGENT_FALL:
2417 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2418 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.fall);
2420 case ST_F_AGENT_HEALTH:
2421 if ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED)
2422 metric = mkf_u32(FO_CONFIG|FS_SERVICE, sv->agent.health);
2425 if (px->mode == PR_MODE_HTTP)
2426 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.cum_req);
2429 if (px->mode == PR_MODE_HTTP)
2430 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[1]);
2433 if (px->mode == PR_MODE_HTTP)
2434 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[2]);
2437 if (px->mode == PR_MODE_HTTP)
2438 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[3]);
2441 if (px->mode == PR_MODE_HTTP)
2442 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[4]);
2445 if (px->mode == PR_MODE_HTTP)
2446 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[5]);
2448 case ST_F_HRSP_OTHER:
2449 if (px->mode == PR_MODE_HTTP)
2450 metric = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[0]);
2454 metric = mkf_u64(FN_COUNTER, sv->counters.failed_hana);
2457 metric = mkf_u64(FN_COUNTER, sv->counters.cli_aborts);
2460 metric = mkf_u64(FN_COUNTER, sv->counters.srv_aborts);
2463 metric = mkf_s32(FN_AGE, srv_lastsession(sv));
2466 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.q_time, srv_samples_window));
2469 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.c_time, srv_samples_window));
2472 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.d_time, srv_samples_window));
2475 metric = mkf_u32(FN_AVG, swrate_avg(sv->counters.t_time, srv_samples_window));
2478 metric = mkf_u32(FN_MAX, sv->counters.qtime_max);
2481 metric = mkf_u32(FN_MAX, sv->counters.ctime_max);
2484 metric = mkf_u32(FN_MAX, sv->counters.dtime_max);
2487 metric = mkf_u32(FN_MAX, sv->counters.ttime_max);
2490 if (flags & STAT_SHLGNDS) {
2491 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2493 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2494 chunk_appendf(out, "%s:%d", str, sv->svc_port);
2497 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2498 chunk_appendf(out, "[%s]:%d", str, sv->svc_port);
2501 metric = mkf_str(FO_CONFIG|FS_SERVICE, "unix");
2504 metric = mkf_str(FO_CONFIG|FS_SERVICE, chunk_newstr(out));
2505 chunk_strcat(out, strerror(errno));
2507 default: /* address family not supported */
2513 if (flags & STAT_SHLGNDS && sv->cookie)
2514 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, sv->cookie);
2517 /* not used for servers. If a specific metric
2518 * is requested, return an error. Otherwise continue.
2520 if (selected_field != NULL)
2524 stats[current_field] = metric;
2525 if (selected_field != NULL)
2531 /* Dumps a line for server <sv> and proxy <px> to the local trash vbuffer and
2532 * uses the state from stream connector <sc>, and server state <state>. The
2533 * caller is responsible for clearing the local trash buffer if needed. Returns
2534 * non-zero if it emits anything, zero otherwise.
2536 static int stats_dump_sv_stats(struct stconn *sc, struct proxy *px, struct server *sv)
2538 struct appctx *appctx = __sc_appctx(sc);
2539 struct show_stat_ctx *ctx = appctx->svcctx;
2540 struct stats_module *mod;
2541 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
2542 size_t stats_count = ST_F_TOTAL_FIELDS;
2544 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
2546 if (!stats_fill_sv_stats(px, sv, ctx->flags, stats,
2547 ST_F_TOTAL_FIELDS, NULL))
2550 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2553 if (stats_get_domain(mod->domain_flags) != STATS_DOMAIN_PROXY)
2556 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_SRV)) {
2557 stats_count += mod->stats_count;
2561 counters = EXTRA_COUNTERS_GET(sv->extra_counters, mod);
2562 mod->fill_stats(counters, stats + stats_count);
2563 stats_count += mod->stats_count;
2566 return stats_dump_one_line(stats, stats_count, appctx);
2569 /* Helper to compute srv values for a given backend
2571 static void stats_fill_be_stats_computesrv(struct proxy *px, int *nbup, int *nbsrv, int *totuw)
2573 int nbup_tmp, nbsrv_tmp, totuw_tmp;
2574 const struct server *srv;
2576 nbup_tmp = nbsrv_tmp = totuw_tmp = 0;
2577 for (srv = px->srv; srv; srv = srv->next) {
2578 if (srv->cur_state != SRV_ST_STOPPED) {
2580 if (srv_currently_usable(srv) &&
2581 (!px->srv_act ^ !(srv->flags & SRV_F_BACKUP)))
2582 totuw_tmp += srv->uweight;
2587 HA_RWLOCK_RDLOCK(LBPRM_LOCK, &px->lbprm.lock);
2588 if (!px->srv_act && px->lbprm.fbck)
2589 totuw_tmp = px->lbprm.fbck->uweight;
2590 HA_RWLOCK_RDUNLOCK(LBPRM_LOCK, &px->lbprm.lock);
2592 /* use tmp variable then assign result to make gcc happy */
2598 /* Fill <stats> with the backend statistics. <stats> is preallocated array of
2599 * length <len>. If <selected_field> is != NULL, only fill this one. The length
2600 * of the array must be at least ST_F_TOTAL_FIELDS. If this length is less than
2601 * this value, or if the selected field is not implemented for backends, the
2602 * function returns 0, otherwise, it returns 1. <flags> can take the value
2605 int stats_fill_be_stats(struct proxy *px, int flags, struct field *stats, int len,
2606 enum stat_field *selected_field)
2608 enum stat_field current_field = (selected_field != NULL ? *selected_field : 0);
2609 long long be_samples_counter;
2610 unsigned int be_samples_window = TIME_STATS_SAMPLES;
2611 struct buffer *out = get_trash_chunk();
2612 int nbup, nbsrv, totuw;
2615 if (len < ST_F_TOTAL_FIELDS)
2618 nbup = nbsrv = totuw = 0;
2619 /* some srv values compute for later if we either select all fields or
2620 * need them for one of the mentioned ones */
2621 if (selected_field == NULL || *selected_field == ST_F_STATUS ||
2622 *selected_field == ST_F_UWEIGHT)
2623 stats_fill_be_stats_computesrv(px, &nbup, &nbsrv, &totuw);
2625 /* same here but specific to time fields */
2626 if (selected_field == NULL || *selected_field == ST_F_QTIME ||
2627 *selected_field == ST_F_CTIME || *selected_field == ST_F_RTIME ||
2628 *selected_field == ST_F_TTIME) {
2629 be_samples_counter = (px->mode == PR_MODE_HTTP) ? px->be_counters.p.http.cum_req : px->be_counters.cum_lbconn;
2630 if (be_samples_counter < TIME_STATS_SAMPLES && be_samples_counter > 0)
2631 be_samples_window = be_samples_counter;
2634 for (; current_field < ST_F_TOTAL_FIELDS; current_field++) {
2635 struct field metric = { 0 };
2637 switch (current_field) {
2639 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, px->id);
2642 metric = mkf_str(FO_KEY|FN_NAME|FS_SERVICE, "BACKEND");
2645 metric = mkf_str(FO_CONFIG|FS_SERVICE, proxy_mode_str(px->mode));
2648 metric = mkf_u32(0, px->queue.length);
2651 metric = mkf_u32(FN_MAX, px->be_counters.nbpend_max);
2654 metric = mkf_u32(0, px->beconn);
2657 metric = mkf_u32(FN_MAX, px->be_counters.conn_max);
2660 metric = mkf_u32(FO_CONFIG|FN_LIMIT, px->fullconn);
2663 metric = mkf_u64(FN_COUNTER, px->be_counters.cum_conn);
2666 metric = mkf_u64(FN_COUNTER, px->be_counters.bytes_in);
2669 metric = mkf_u64(FN_COUNTER, px->be_counters.bytes_out);
2672 metric = mkf_u64(FN_COUNTER, px->be_counters.denied_req);
2675 metric = mkf_u64(FN_COUNTER, px->be_counters.denied_resp);
2678 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_conns);
2681 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_resp);
2684 metric = mkf_u64(FN_COUNTER, px->be_counters.retries);
2687 metric = mkf_u64(FN_COUNTER, px->be_counters.redispatches);
2690 metric = mkf_u64(FN_COUNTER, px->be_counters.failed_rewrites);
2693 metric = mkf_u64(FN_COUNTER, px->be_counters.internal_errors);
2696 metric = mkf_u64(FN_COUNTER, px->be_counters.connect);
2699 metric = mkf_u64(FN_COUNTER, px->be_counters.reuse);
2702 fld = chunk_newstr(out);
2703 chunk_appendf(out, "%s", (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN");
2704 if (flags & (STAT_HIDE_MAINT|STAT_HIDE_DOWN))
2705 chunk_appendf(out, " (%d/%d)", nbup, nbsrv);
2706 metric = mkf_str(FO_STATUS, fld);
2708 case ST_F_AGG_SRV_CHECK_STATUS: // DEPRECATED
2709 case ST_F_AGG_SRV_STATUS:
2710 metric = mkf_u32(FN_GAUGE, 0);
2712 case ST_F_AGG_CHECK_STATUS:
2713 metric = mkf_u32(FN_GAUGE, 0);
2716 metric = mkf_u32(FN_AVG, (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv);
2719 metric = mkf_u32(FN_AVG, totuw);
2722 metric = mkf_u32(0, px->srv_act);
2725 metric = mkf_u32(0, px->srv_bck);
2728 metric = mkf_u64(FN_COUNTER, px->down_trans);
2731 metric = mkf_u32(FN_AGE, now.tv_sec - px->last_change);
2735 metric = mkf_u32(FN_COUNTER, be_downtime(px));
2738 metric = mkf_u32(FO_KEY, 1);
2741 metric = mkf_u32(FO_KEY|FS_SERVICE, px->uuid);
2744 metric = mkf_u32(FO_KEY|FS_SERVICE, 0);
2747 metric = mkf_u64(FN_COUNTER, px->be_counters.cum_lbconn);
2750 metric = mkf_u32(FO_CONFIG|FS_SERVICE, STATS_TYPE_BE);
2753 metric = mkf_u32(0, read_freq_ctr(&px->be_sess_per_sec));
2756 metric = mkf_u32(0, px->be_counters.sps_max);
2759 if (flags & STAT_SHLGNDS && px->cookie_name)
2760 metric = mkf_str(FO_CONFIG|FN_NAME|FS_SERVICE, px->cookie_name);
2763 if (flags & STAT_SHLGNDS)
2764 metric = mkf_str(FO_CONFIG|FS_SERVICE, backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
2767 if (px->mode == PR_MODE_HTTP)
2768 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cum_req);
2771 if (px->mode == PR_MODE_HTTP)
2772 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[1]);
2775 if (px->mode == PR_MODE_HTTP)
2776 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[2]);
2779 if (px->mode == PR_MODE_HTTP)
2780 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[3]);
2783 if (px->mode == PR_MODE_HTTP)
2784 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[4]);
2787 if (px->mode == PR_MODE_HTTP)
2788 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[5]);
2790 case ST_F_HRSP_OTHER:
2791 if (px->mode == PR_MODE_HTTP)
2792 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[0]);
2794 case ST_F_CACHE_LOOKUPS:
2795 if (px->mode == PR_MODE_HTTP)
2796 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_lookups);
2798 case ST_F_CACHE_HITS:
2799 if (px->mode == PR_MODE_HTTP)
2800 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_hits);
2803 metric = mkf_u64(FN_COUNTER, px->be_counters.cli_aborts);
2806 metric = mkf_u64(FN_COUNTER, px->be_counters.srv_aborts);
2809 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_in);
2812 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_out);
2815 metric = mkf_u64(FN_COUNTER, px->be_counters.comp_byp);
2818 metric = mkf_u64(FN_COUNTER, px->be_counters.p.http.comp_rsp);
2821 metric = mkf_s32(FN_AGE, be_lastsession(px));
2824 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.q_time, be_samples_window));
2827 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.c_time, be_samples_window));
2830 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.d_time, be_samples_window));
2833 metric = mkf_u32(FN_AVG, swrate_avg(px->be_counters.t_time, be_samples_window));
2836 metric = mkf_u32(FN_MAX, px->be_counters.qtime_max);
2839 metric = mkf_u32(FN_MAX, px->be_counters.ctime_max);
2842 metric = mkf_u32(FN_MAX, px->be_counters.dtime_max);
2845 metric = mkf_u32(FN_MAX, px->be_counters.ttime_max);
2848 /* not used for backends. If a specific metric
2849 * is requested, return an error. Otherwise continue.
2851 if (selected_field != NULL)
2855 stats[current_field] = metric;
2856 if (selected_field != NULL)
2862 /* Dumps a line for backend <px> to the local trash buffer for and uses the
2863 * state from stream interface <si>. The caller is responsible for clearing the
2864 * local trash buffer if needed. Returns non-zero if it emits anything, zero
2867 static int stats_dump_be_stats(struct stconn *sc, struct proxy *px)
2869 struct appctx *appctx = __sc_appctx(sc);
2870 struct show_stat_ctx *ctx = appctx->svcctx;
2871 struct field *stats = stat_l[STATS_DOMAIN_PROXY];
2872 struct stats_module *mod;
2873 size_t stats_count = ST_F_TOTAL_FIELDS;
2875 if (!(px->cap & PR_CAP_BE))
2878 if ((ctx->flags & STAT_BOUND) && !(ctx->type & (1 << STATS_TYPE_BE)))
2881 memset(stats, 0, sizeof(struct field) * stat_count[STATS_DOMAIN_PROXY]);
2883 if (!stats_fill_be_stats(px, ctx->flags, stats, ST_F_TOTAL_FIELDS, NULL))
2886 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2887 struct extra_counters *counters;
2889 if (stats_get_domain(mod->domain_flags) != STATS_DOMAIN_PROXY)
2892 if (!(stats_px_get_cap(mod->domain_flags) & STATS_PX_CAP_BE)) {
2893 stats_count += mod->stats_count;
2897 counters = EXTRA_COUNTERS_GET(px->extra_counters_be, mod);
2898 mod->fill_stats(counters, stats + stats_count);
2899 stats_count += mod->stats_count;
2902 return stats_dump_one_line(stats, stats_count, appctx);
2905 /* Dumps the HTML table header for proxy <px> to the local trash buffer for and
2906 * uses the state from stream connector <sc> and per-uri parameters <uri>. The
2907 * caller is responsible for clearing the local trash buffer if needed.
2909 static void stats_dump_html_px_hdr(struct stconn *sc, struct proxy *px)
2911 struct appctx *appctx = __sc_appctx(sc);
2912 struct show_stat_ctx *ctx = appctx->svcctx;
2913 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
2914 struct stats_module *mod;
2915 int stats_module_len = 0;
2917 if (px->cap & PR_CAP_BE && px->srv && (ctx->flags & STAT_ADMIN)) {
2918 /* A form to enable/disable this proxy servers */
2920 /* scope_txt = search pattern + search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
2922 if (ctx->scope_len) {
2923 const char *scope_ptr = stats_scope_ptr(appctx, sc);
2925 strcpy(scope_txt, STAT_SCOPE_PATTERN);
2926 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, ctx->scope_len);
2927 scope_txt[strlen(STAT_SCOPE_PATTERN) + ctx->scope_len] = 0;
2930 chunk_appendf(&trash_chunk,
2931 "<form method=\"post\">");
2934 /* print a new table */
2935 chunk_appendf(&trash_chunk,
2936 "<table class=\"tbl\" width=\"100%%\">\n"
2937 "<tr class=\"titre\">"
2938 "<th class=\"pxname\" width=\"10%%\">");
2940 chunk_appendf(&trash_chunk,
2941 "<a name=\"%s\"></a>%s"
2942 "<a class=px href=\"#%s\">%s</a>",
2944 (ctx->flags & STAT_SHLGNDS) ? "<u>":"",
2947 if (ctx->flags & STAT_SHLGNDS) {
2949 chunk_appendf(&trash_chunk, "<div class=tips>cap: %s, mode: %s, id: %d",
2950 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
2952 chunk_appendf(&trash_chunk, "</div>");
2955 chunk_appendf(&trash_chunk,
2957 "<th class=\"%s\" width=\"90%%\">%s</th>"
2960 "<table class=\"tbl\" width=\"100%%\">\n"
2961 "<tr class=\"titre\">",
2962 (ctx->flags & STAT_SHLGNDS) ? "</u>":"",
2963 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
2965 if (ctx->flags & STAT_ADMIN) {
2966 /* Column heading for Enable or Disable server */
2967 if ((px->cap & PR_CAP_BE) && px->srv)
2968 chunk_appendf(&trash_chunk,
2969 "<th rowspan=2 width=1><input type=\"checkbox\" "
2970 "onclick=\"for(c in document.getElementsByClassName('%s-checkbox')) "
2971 "document.getElementsByClassName('%s-checkbox').item(c).checked = this.checked\"></th>",
2975 chunk_appendf(&trash_chunk, "<th rowspan=2></th>");
2978 chunk_appendf(&trash_chunk,
2979 "<th rowspan=2></th>"
2980 "<th colspan=3>Queue</th>"
2981 "<th colspan=3>Session rate</th><th colspan=6>Sessions</th>"
2982 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
2983 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
2984 "<th colspan=9>Server</th>");
2986 if (ctx->flags & STAT_SHMODULES) {
2987 // calculate the count of module for colspan attribute
2988 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
2991 chunk_appendf(&trash_chunk, "<th colspan=%d>Extra modules</th>",
2995 chunk_appendf(&trash_chunk,
2997 "<tr class=\"titre\">"
2998 "<th>Cur</th><th>Max</th><th>Limit</th>"
2999 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
3000 "<th>Limit</th><th>Total</th><th>LbTot</th><th>Last</th><th>In</th><th>Out</th>"
3001 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
3002 "<th>Resp</th><th>Retr</th><th>Redis</th>"
3003 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
3004 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
3005 "<th>Thrtle</th>\n");
3007 if (ctx->flags & STAT_SHMODULES) {
3008 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
3009 chunk_appendf(&trash_chunk, "<th>%s</th>", mod->name);
3013 chunk_appendf(&trash_chunk, "</tr>");
3016 /* Dumps the HTML table trailer for proxy <px> to the local trash buffer for and
3017 * uses the state from stream connector <sc>. The caller is responsible for
3018 * clearing the local trash buffer if needed.
3020 static void stats_dump_html_px_end(struct stconn *sc, struct proxy *px)
3022 struct appctx *appctx = __sc_appctx(sc);
3023 struct show_stat_ctx *ctx = appctx->svcctx;
3025 chunk_appendf(&trash_chunk, "</table>");
3027 if ((px->cap & PR_CAP_BE) && px->srv && (ctx->flags & STAT_ADMIN)) {
3028 /* close the form used to enable/disable this proxy servers */
3029 chunk_appendf(&trash_chunk,
3030 "Choose the action to perform on the checked servers : "
3031 "<select name=action>"
3032 "<option value=\"\"></option>"
3033 "<option value=\"ready\">Set state to READY</option>"
3034 "<option value=\"drain\">Set state to DRAIN</option>"
3035 "<option value=\"maint\">Set state to MAINT</option>"
3036 "<option value=\"dhlth\">Health: disable checks</option>"
3037 "<option value=\"ehlth\">Health: enable checks</option>"
3038 "<option value=\"hrunn\">Health: force UP</option>"
3039 "<option value=\"hnolb\">Health: force NOLB</option>"
3040 "<option value=\"hdown\">Health: force DOWN</option>"
3041 "<option value=\"dagent\">Agent: disable checks</option>"
3042 "<option value=\"eagent\">Agent: enable checks</option>"
3043 "<option value=\"arunn\">Agent: force UP</option>"
3044 "<option value=\"adown\">Agent: force DOWN</option>"
3045 "<option value=\"shutdown\">Kill Sessions</option>"
3047 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
3048 " <input type=\"submit\" value=\"Apply\">"
3053 chunk_appendf(&trash_chunk, "<p>\n");
3057 * Dumps statistics for a proxy. The output is sent to the stream connector's
3058 * input buffer. Returns 0 if it had to stop dumping data because of lack of
3059 * buffer space, or non-zero if everything completed. This function is used
3060 * both by the CLI and the HTTP entry points, and is able to dump the output
3061 * in HTML or CSV formats. If the later, <uri> must be NULL.
3063 int stats_dump_proxy_to_buffer(struct stconn *sc, struct htx *htx,
3064 struct proxy *px, struct uri_auth *uri)
3066 struct appctx *appctx = __sc_appctx(sc);
3067 struct show_stat_ctx *ctx = appctx->svcctx;
3068 struct stream *s = __sc_strm(sc);
3069 struct channel *rep = sc_ic(sc);
3070 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
3074 chunk_reset(&trash_chunk);
3076 current_field = ctx->field;
3078 switch (ctx->px_st) {
3079 case STAT_PX_ST_INIT:
3080 /* we are on a new proxy */
3081 if (uri && uri->scope) {
3082 /* we have a limited scope, we have to check the proxy name */
3083 struct stat_scope *scope;
3086 len = strlen(px->id);
3090 /* match exact proxy name */
3091 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
3094 /* match '.' which means 'self' proxy */
3095 if (strcmp(scope->px_id, ".") == 0 && px == s->be)
3097 scope = scope->next;
3100 /* proxy name not found : don't dump anything */
3105 /* if the user has requested a limited output and the proxy
3106 * name does not match, skip it.
3108 if (ctx->scope_len) {
3109 const char *scope_ptr = stats_scope_ptr(appctx, sc);
3111 if (strnistr(px->id, strlen(px->id), scope_ptr, ctx->scope_len) == NULL)
3115 if ((ctx->flags & STAT_BOUND) &&
3117 (px->uuid != ctx->iid))
3120 ctx->px_st = STAT_PX_ST_TH;
3124 if (ctx->flags & STAT_FMT_HTML) {
3125 stats_dump_html_px_hdr(sc, px);
3126 if (!stats_putchk(rep, htx, &trash_chunk))
3130 ctx->px_st = STAT_PX_ST_FE;
3134 /* print the frontend */
3135 if (stats_dump_fe_stats(sc, px)) {
3136 if (!stats_putchk(rep, htx, &trash_chunk))
3143 ctx->obj2 = px->conf.listeners.n;
3144 ctx->px_st = STAT_PX_ST_LI;
3148 /* obj2 points to listeners list as initialized above */
3149 for (; ctx->obj2 != &px->conf.listeners; ctx->obj2 = l->by_fe.n) {
3151 if (htx_almost_full(htx))
3155 if (buffer_almost_full(&rep->buf))
3159 l = LIST_ELEM(ctx->obj2, struct listener *, by_fe);
3163 if (ctx->flags & STAT_BOUND) {
3164 if (!(ctx->type & (1 << STATS_TYPE_SO)))
3167 if (ctx->sid != -1 && l->luid != ctx->sid)
3171 /* print the frontend */
3172 if (stats_dump_li_stats(sc, px, l)) {
3173 if (!stats_putchk(rep, htx, &trash_chunk))
3181 ctx->obj2 = px->srv; /* may be NULL */
3182 ctx->px_st = STAT_PX_ST_SV;
3186 /* obj2 points to servers list as initialized above.
3188 * A server may be removed during the stats dumping.
3189 * Temporarily increment its refcount to prevent its
3190 * anticipated cleaning. Call free_server to release it.
3192 for (; ctx->obj2 != NULL;
3193 ctx->obj2 = srv_drop(sv)) {
3199 if (htx_almost_full(htx))
3203 if (buffer_almost_full(&rep->buf))
3207 if (ctx->flags & STAT_BOUND) {
3208 if (!(ctx->type & (1 << STATS_TYPE_SV))) {
3213 if (ctx->sid != -1 && sv->puid != ctx->sid)
3217 /* do not report disabled servers */
3218 if (ctx->flags & STAT_HIDE_MAINT &&
3219 sv->cur_admin & SRV_ADMF_MAINT) {
3227 /* do not report servers which are DOWN and not changing state */
3228 if ((ctx->flags & STAT_HIDE_DOWN) &&
3229 ((sv->cur_admin & SRV_ADMF_MAINT) || /* server is in maintenance */
3230 (sv->cur_state == SRV_ST_STOPPED && /* server is down */
3231 (!((svs->agent.state | svs->check.state) & CHK_ST_ENABLED) ||
3232 ((svs->agent.state & CHK_ST_ENABLED) && !svs->agent.health) ||
3233 ((svs->check.state & CHK_ST_ENABLED) && !svs->check.health))))) {
3237 if (stats_dump_sv_stats(sc, px, sv)) {
3238 if (!stats_putchk(rep, htx, &trash_chunk))
3243 ctx->px_st = STAT_PX_ST_BE;
3247 /* print the backend */
3248 if (stats_dump_be_stats(sc, px)) {
3249 if (!stats_putchk(rep, htx, &trash_chunk))
3256 ctx->px_st = STAT_PX_ST_END;
3259 case STAT_PX_ST_END:
3260 if (ctx->flags & STAT_FMT_HTML) {
3261 stats_dump_html_px_end(sc, px);
3262 if (!stats_putchk(rep, htx, &trash_chunk))
3266 ctx->px_st = STAT_PX_ST_FIN;
3269 case STAT_PX_ST_FIN:
3273 /* unknown state, we should put an abort() here ! */
3279 /* restore previous field */
3280 ctx->field = current_field;
3284 /* Dumps the HTTP stats head block to the local trash buffer for and uses the
3285 * per-uri parameters <uri>. The caller is responsible for clearing the local
3286 * trash buffer if needed.
3288 static void stats_dump_html_head(struct appctx *appctx, struct uri_auth *uri)
3290 struct show_stat_ctx *ctx = appctx->svcctx;
3292 /* WARNING! This must fit in the first buffer !!! */
3293 chunk_appendf(&trash_chunk,
3294 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3295 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3296 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
3297 "<link rel=\"icon\" href=\"data:,\">\n"
3298 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3299 "<style type=\"text/css\"><!--\n"
3301 " font-family: arial, helvetica, sans-serif;"
3303 " font-weight: normal;"
3305 " background: white;"
3311 " font-size: x-large;"
3312 " margin-bottom: 0.5em;"
3315 " font-family: helvetica, arial;"
3316 " font-size: x-large;"
3317 " font-weight: bold;"
3318 " font-style: italic;"
3321 " margin-bottom: 0em;"
3324 " font-family: helvetica, arial;"
3326 " font-weight: bold;"
3328 " background: #e8e8d0;"
3330 " margin-bottom: 0em;"
3333 " margin-top: 0.25em;"
3334 " margin-right: 2em;"
3336 ".hr {margin-top: 0.25em;"
3337 " border-color: black;"
3338 " border-bottom-style: solid;"
3340 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3341 ".total {background: #20D0D0;color: #ffff80;}\n"
3342 ".frontend {background: #e8e8d0;}\n"
3343 ".socket {background: #d0d0d0;}\n"
3344 ".backend {background: #e8e8d0;}\n"
3345 ".active_down {background: #ff9090;}\n"
3346 ".active_going_up {background: #ffd020;}\n"
3347 ".active_going_down {background: #ffffa0;}\n"
3348 ".active_up {background: #c0ffc0;}\n"
3349 ".active_nolb {background: #20a0ff;}\n"
3350 ".active_draining {background: #20a0FF;}\n"
3351 ".active_no_check {background: #e0e0e0;}\n"
3352 ".backup_down {background: #ff9090;}\n"
3353 ".backup_going_up {background: #ff80ff;}\n"
3354 ".backup_going_down {background: #c060ff;}\n"
3355 ".backup_up {background: #b0d0ff;}\n"
3356 ".backup_nolb {background: #90b0e0;}\n"
3357 ".backup_draining {background: #cc9900;}\n"
3358 ".backup_no_check {background: #e0e0e0;}\n"
3359 ".maintain {background: #c07820;}\n"
3360 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3362 "a.px:link {color: #ffff40; text-decoration: none;}"
3363 "a.px:visited {color: #ffff40; text-decoration: none;}"
3364 "a.px:hover {color: #ffffff; text-decoration: none;}"
3365 "a.lfsb:link {color: #000000; text-decoration: none;}"
3366 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3367 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3369 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3370 "table.tbl td { text-align: right; border-width: 1px 1px 1px 1px; border-style: solid solid solid solid; padding: 2px 3px; border-color: gray; white-space: nowrap;}\n"
3371 "table.tbl td.ac { text-align: center;}\n"
3372 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3373 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3374 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3375 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3377 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3378 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3379 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
3380 "table.det { border-collapse: collapse; border-style: none; }\n"
3381 "table.det th { text-align: left; border-width: 0px; padding: 0px 1px 0px 0px; font-style:normal;font-size:11px;font-weight:bold;font-family: sans-serif;}\n"
3382 "table.det td { text-align: right; border-width: 0px; padding: 0px 0px 0px 4px; white-space: nowrap; font-style:normal;font-size:11px;font-weight:normal;}\n"
3383 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
3386 " visibility:hidden;\n"
3387 " z-index:2147483647;\n"
3388 " position:absolute;\n"
3389 " padding:2px 4px 3px;\n"
3390 " background:#f0f060; color:#000000;\n"
3391 " border:1px solid #7040c0;\n"
3392 " white-space:nowrap;\n"
3393 " font-style:normal;font-size:11px;font-weight:normal;\n"
3394 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
3395 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
3397 "u:hover div.tips {visibility:visible;}\n"
3398 "@media (prefers-color-scheme: dark) {\n"
3399 " body { font-family: arial, helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #e8e6e3; background: #131516;}\n"
3400 " h1 { color: #a265e0!important; }\n"
3401 " h2 { color: #a265e0; }\n"
3402 " h3 { color: #ff5190; background-color: #3e3e1f; }\n"
3403 " a { color: #3391ff; }\n"
3404 " input { background-color: #2f3437; }\n"
3405 " .hr { border-color: #8c8273; }\n"
3406 " .titre { background-color: #1aa6a6; color: #e8e6e3; }\n"
3407 " .frontend {background: #2f3437;}\n"
3408 " .socket {background: #2a2d2f;}\n"
3409 " .backend {background: #2f3437;}\n"
3410 " .active_down {background: #760000;}\n"
3411 " .active_going_up {background: #b99200;}\n"
3412 " .active_going_down {background: #6c6c00;}\n"
3413 " .active_up {background: #165900;}\n"
3414 " .active_nolb {background: #006ab9;}\n"
3415 " .active_draining {background: #006ab9;}\n"
3416 " .active_no_check {background: #2a2d2f;}\n"
3417 " .backup_down {background: #760000;}\n"
3418 " .backup_going_up {background: #7f007f;}\n"
3419 " .backup_going_down {background: #580092;}\n"
3420 " .backup_up {background: #2e3234;}\n"
3421 " .backup_nolb {background: #1e3c6a;}\n"
3422 " .backup_draining {background: #a37a00;}\n"
3423 " .backup_no_check {background: #2a2d2f;}\n"
3424 " .maintain {background: #9a601a;}\n"
3425 " a.px:link {color: #d8d83b; text-decoration: none;}\n"
3426 " a.px:visited {color: #d8d83b; text-decoration: none;}\n"
3427 " a.px:hover {color: #ffffff; text-decoration: none;}\n"
3428 " a.lfsb:link {color: #e8e6e3; text-decoration: none;}\n"
3429 " a.lfsb:visited {color: #e8e6e3; text-decoration: none;}\n"
3430 " a.lfsb:hover {color: #b5afa6; text-decoration: none;}\n"
3431 " table.tbl th.empty { background-color: #181a1b; }\n"
3432 " table.tbl th.desc { background: #181a1b; }\n"
3433 " table.tbl th.pxname { background-color: #8d0033; color: #ffff46; }\n"
3434 " table.tbl th { border-color: #808080; }\n"
3435 " table.tbl td { border-color: #808080; }\n"
3436 " u {text-decoration:none; border-bottom: 1px dotted #e8e6e3;}\n"
3438 " background:#8e8e0d;\n"
3440 " border-color: #4e2c86;\n"
3441 " -moz-box-shadow: #60686c 2px 2px 3px;\n"
3442 " -webkit-box-shadow: #60686c 2px 2px 3px;\n"
3443 " box-shadow: #60686c 2px 2px 3px;\n"
3447 "</style></head>\n",
3448 (ctx->flags & STAT_SHNODE) ? " on " : "",
3449 (ctx->flags & STAT_SHNODE) ? (uri && uri->node ? uri->node : global.node) : ""
3453 /* Dumps the HTML stats information block to the local trash buffer for and uses
3454 * the state from stream connector <sc> and per-uri parameters <uri>. The caller
3455 * is responsible for clearing the local trash buffer if needed.
3457 static void stats_dump_html_info(struct stconn *sc, struct uri_auth *uri)
3459 struct appctx *appctx = __sc_appctx(sc);
3460 struct show_stat_ctx *ctx = appctx->svcctx;
3461 unsigned int up = (now.tv_sec - start_date.tv_sec);
3462 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
3463 const char *scope_ptr = stats_scope_ptr(appctx, sc);
3464 unsigned long long bps = (unsigned long long)read_freq_ctr(&global.out_32bps) * 32;
3466 /* Turn the bytes per second to bits per second and take care of the
3467 * usual ethernet overhead in order to help figure how far we are from
3468 * interface saturation since it's the only case which usually matters.
3469 * For this we count the total size of an Ethernet frame on the wire
3470 * including preamble and IFG (1538) for the largest TCP segment it
3471 * transports (1448 with TCP timestamps). This is not valid for smaller
3472 * packets (under-estimated), but it gives a reasonably accurate
3473 * estimation of how far we are from uplink saturation.
3475 bps = bps * 8 * 1538 / 1448;
3477 /* WARNING! this has to fit the first packet too.
3478 * We are around 3.5 kB, add adding entries will
3479 * become tricky if we want to support 4kB buffers !
3481 chunk_appendf(&trash_chunk,
3482 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
3483 PRODUCT_NAME "%s</a></h1>\n"
3484 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
3485 "<hr width=\"100%%\" class=\"hr\">\n"
3486 "<h3>> General process information</h3>\n"
3487 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
3488 "<p><b>pid = </b> %d (process #%d, nbproc = %d, nbthread = %d)<br>\n"
3489 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
3490 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
3491 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
3492 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec; bit rate = %.3f %cbps<br>\n"
3493 "Running tasks: %d/%d; idle = %d %%<br>\n"
3494 "</td><td align=\"center\" nowrap>\n"
3495 "<table class=\"lgd\"><tr>\n"
3496 "<td class=\"active_up\"> </td><td class=\"noborder\">active UP </td>"
3497 "<td class=\"backup_up\"> </td><td class=\"noborder\">backup UP </td>"
3499 "<td class=\"active_going_down\"></td><td class=\"noborder\">active UP, going down </td>"
3500 "<td class=\"backup_going_down\"></td><td class=\"noborder\">backup UP, going down </td>"
3502 "<td class=\"active_going_up\"></td><td class=\"noborder\">active DOWN, going up </td>"
3503 "<td class=\"backup_going_up\"></td><td class=\"noborder\">backup DOWN, going up </td>"
3505 "<td class=\"active_down\"></td><td class=\"noborder\">active or backup DOWN </td>"
3506 "<td class=\"active_no_check\"></td><td class=\"noborder\">not checked </td>"
3508 "<td class=\"maintain\"></td><td class=\"noborder\" colspan=\"3\">active or backup DOWN for maintenance (MAINT) </td>"
3510 "<td class=\"active_draining\"></td><td class=\"noborder\" colspan=\"3\">active or backup SOFT STOPPED for maintenance </td>"
3512 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
3514 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3515 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
3517 (ctx->flags & STAT_HIDEVER) ? "" : (stats_version_string),
3518 pid, (ctx->flags & STAT_SHNODE) ? " on " : "",
3519 (ctx->flags & STAT_SHNODE) ? (uri->node ? uri->node : global.node) : "",
3520 (ctx->flags & STAT_SHDESC) ? ": " : "",
3521 (ctx->flags & STAT_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
3522 pid, 1, 1, global.nbthread,
3523 up / 86400, (up % 86400) / 3600,
3524 (up % 3600) / 60, (up % 60),
3525 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
3526 global.rlimit_memmax ? " MB" : "",
3527 global.rlimit_nofile,
3528 global.maxsock, global.maxconn, global.maxpipes,
3529 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
3530 bps >= 1000000000UL ? (bps / 1000000000.0) : bps >= 1000000UL ? (bps / 1000000.0) : (bps / 1000.0),
3531 bps >= 1000000000UL ? 'G' : bps >= 1000000UL ? 'M' : 'k',
3532 total_run_queues(), total_allocated_tasks(), clock_report_idle()
3535 /* scope_txt = search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3536 memcpy(scope_txt, scope_ptr, ctx->scope_len);
3537 scope_txt[ctx->scope_len] = '\0';
3539 chunk_appendf(&trash_chunk,
3540 "<li><form method=\"GET\">Scope : <input value=\"%s\" name=\"" STAT_SCOPE_INPUT_NAME "\" size=\"8\" maxlength=\"%d\" tabindex=\"1\"/></form>\n",
3541 (ctx->scope_len > 0) ? scope_txt : "",
3542 STAT_SCOPE_TXT_MAXLEN);
3544 /* scope_txt = search pattern + search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3546 if (ctx->scope_len) {
3547 strcpy(scope_txt, STAT_SCOPE_PATTERN);
3548 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, ctx->scope_len);
3549 scope_txt[strlen(STAT_SCOPE_PATTERN) + ctx->scope_len] = 0;
3552 if (ctx->flags & STAT_HIDE_DOWN)
3553 chunk_appendf(&trash_chunk,
3554 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
3557 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3560 chunk_appendf(&trash_chunk,
3561 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
3564 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3567 if (uri->refresh > 0) {
3568 if (ctx->flags & STAT_NO_REFRESH)
3569 chunk_appendf(&trash_chunk,
3570 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
3572 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3576 chunk_appendf(&trash_chunk,
3577 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
3579 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3584 chunk_appendf(&trash_chunk,
3585 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
3587 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3588 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3591 chunk_appendf(&trash_chunk,
3592 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
3594 (uri->refresh > 0) ? ";norefresh" : "",
3597 chunk_appendf(&trash_chunk,
3598 "<li><a href=\"%s;json%s%s\">JSON export</a> (<a href=\"%s;json-schema\">schema</a>)<br>\n",
3600 (uri->refresh > 0) ? ";norefresh" : "",
3601 scope_txt, uri->uri_prefix);
3603 chunk_appendf(&trash_chunk,
3605 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3606 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
3607 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
3608 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
3609 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
3617 switch (ctx->st_code) {
3618 case STAT_STATUS_DONE:
3619 chunk_appendf(&trash_chunk,
3620 "<p><div class=active_up>"
3621 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3622 "Action processed successfully."
3623 "</div>\n", uri->uri_prefix,
3624 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3625 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3628 case STAT_STATUS_NONE:
3629 chunk_appendf(&trash_chunk,
3630 "<p><div class=active_going_down>"
3631 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3632 "Nothing has changed."
3633 "</div>\n", uri->uri_prefix,
3634 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3635 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3638 case STAT_STATUS_PART:
3639 chunk_appendf(&trash_chunk,
3640 "<p><div class=active_going_down>"
3641 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3642 "Action partially processed.<br>"
3643 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
3644 "</div>\n", uri->uri_prefix,
3645 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3646 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3649 case STAT_STATUS_ERRP:
3650 chunk_appendf(&trash_chunk,
3651 "<p><div class=active_down>"
3652 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3653 "Action not processed because of invalid parameters."
3655 "<li>The action is maybe unknown.</li>"
3656 "<li>Invalid key parameter (empty or too long).</li>"
3657 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
3658 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
3660 "</div>\n", uri->uri_prefix,
3661 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3662 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3665 case STAT_STATUS_EXCD:
3666 chunk_appendf(&trash_chunk,
3667 "<p><div class=active_down>"
3668 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3669 "<b>Action not processed : the buffer couldn't store all the data.<br>"
3670 "You should retry with less servers at a time.</b>"
3671 "</div>\n", uri->uri_prefix,
3672 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3673 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3676 case STAT_STATUS_DENY:
3677 chunk_appendf(&trash_chunk,
3678 "<p><div class=active_down>"
3679 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3680 "<b>Action denied.</b>"
3681 "</div>\n", uri->uri_prefix,
3682 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3683 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3686 case STAT_STATUS_IVAL:
3687 chunk_appendf(&trash_chunk,
3688 "<p><div class=active_down>"
3689 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3690 "<b>Invalid requests (unsupported method or chunked encoded request).</b>"
3691 "</div>\n", uri->uri_prefix,
3692 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3693 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3697 chunk_appendf(&trash_chunk,
3698 "<p><div class=active_no_check>"
3699 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
3700 "Unexpected result."
3701 "</div>\n", uri->uri_prefix,
3702 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
3703 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3706 chunk_appendf(&trash_chunk, "<p>\n");
3710 /* Dumps the HTML stats trailer block to the local trash buffer. The caller is
3711 * responsible for clearing the local trash buffer if needed.
3713 static void stats_dump_html_end()
3715 chunk_appendf(&trash_chunk, "</body></html>\n");
3718 /* Dumps the stats JSON header to the local trash buffer buffer which. The
3719 * caller is responsible for clearing it if needed.
3721 static void stats_dump_json_header()
3723 chunk_strcat(&trash_chunk, "[");
3727 /* Dumps the JSON stats trailer block to the local trash buffer. The caller is
3728 * responsible for clearing the local trash buffer if needed.
3730 static void stats_dump_json_end()
3732 chunk_strcat(&trash_chunk, "]\n");
3735 /* Uses <appctx.ctx.stats.obj1> as a pointer to the current proxy and <obj2> as
3736 * a pointer to the current server/listener.
3738 static int stats_dump_proxies(struct stconn *sc,
3740 struct uri_auth *uri)
3742 struct appctx *appctx = __sc_appctx(sc);
3743 struct show_stat_ctx *ctx = appctx->svcctx;
3744 struct channel *rep = sc_ic(sc);
3750 if (htx_almost_full(htx))
3754 if (buffer_almost_full(&rep->buf))
3759 /* Skip the global frontend proxies and non-networked ones.
3760 * Also skip proxies that were disabled in the configuration
3761 * This change allows retrieving stats from "old" proxies after a reload.
3763 if (!(px->flags & PR_FL_DISABLED) && px->uuid > 0 &&
3764 (px->cap & (PR_CAP_FE | PR_CAP_BE)) && !(px->cap & PR_CAP_INT)) {
3765 if (stats_dump_proxy_to_buffer(sc, htx, px, uri) == 0)
3769 ctx->obj1 = px->next;
3770 ctx->px_st = STAT_PX_ST_INIT;
3781 /* This function dumps statistics onto the stream connector's read buffer in
3782 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
3783 * are ignored for CSV format (hence <uri> may be NULL there). It returns 0 if
3784 * it had to stop writing data and an I/O is needed, 1 if the dump is finished
3785 * and the stream must be closed, or -1 in case of any error. This function is
3786 * used by both the CLI and the HTTP handlers.
3788 static int stats_dump_stat_to_buffer(struct stconn *sc, struct htx *htx,
3789 struct uri_auth *uri)
3791 struct appctx *appctx = __sc_appctx(sc);
3792 struct show_stat_ctx *ctx = appctx->svcctx;
3793 struct channel *rep = sc_ic(sc);
3794 enum stats_domain domain = ctx->domain;
3796 chunk_reset(&trash_chunk);
3798 switch (ctx->state) {
3799 case STAT_STATE_INIT:
3800 ctx->state = STAT_STATE_HEAD; /* let's start producing data */
3803 case STAT_STATE_HEAD:
3804 if (ctx->flags & STAT_FMT_HTML)
3805 stats_dump_html_head(appctx, uri);
3806 else if (ctx->flags & STAT_JSON_SCHM)
3807 stats_dump_json_schema(&trash_chunk);
3808 else if (ctx->flags & STAT_FMT_JSON)
3809 stats_dump_json_header();
3810 else if (!(ctx->flags & STAT_FMT_TYPED))
3811 stats_dump_csv_header(ctx->domain);
3813 if (!stats_putchk(rep, htx, &trash_chunk))
3816 if (ctx->flags & STAT_JSON_SCHM) {
3817 ctx->state = STAT_STATE_FIN;
3820 ctx->state = STAT_STATE_INFO;
3823 case STAT_STATE_INFO:
3824 if (ctx->flags & STAT_FMT_HTML) {
3825 stats_dump_html_info(sc, uri);
3826 if (!stats_putchk(rep, htx, &trash_chunk))
3830 if (domain == STATS_DOMAIN_PROXY)
3831 ctx->obj1 = proxies_list;
3833 ctx->px_st = STAT_PX_ST_INIT;
3835 ctx->state = STAT_STATE_LIST;
3838 case STAT_STATE_LIST:
3840 case STATS_DOMAIN_RESOLVERS:
3841 if (!stats_dump_resolvers(sc, stat_l[domain],
3843 &stats_module_list[domain])) {
3848 case STATS_DOMAIN_PROXY:
3851 if (!stats_dump_proxies(sc, htx, uri))
3856 ctx->state = STAT_STATE_END;
3859 case STAT_STATE_END:
3860 if (ctx->flags & (STAT_FMT_HTML|STAT_FMT_JSON)) {
3861 if (ctx->flags & STAT_FMT_HTML)
3862 stats_dump_html_end();
3864 stats_dump_json_end();
3865 if (!stats_putchk(rep, htx, &trash_chunk))
3869 ctx->state = STAT_STATE_FIN;
3872 case STAT_STATE_FIN:
3876 /* unknown state ! */
3877 ctx->state = STAT_STATE_FIN;
3887 /* We reached the stats page through a POST request. The appctx is
3888 * expected to have already been allocated by the caller.
3889 * Parse the posted data and enable/disable servers if necessary.
3890 * Returns 1 if request was parsed or zero if it needs more data.
3892 static int stats_process_http_post(struct stconn *sc)
3894 struct stream *s = __sc_strm(sc);
3895 struct appctx *appctx = __sc_appctx(sc);
3896 struct show_stat_ctx *ctx = appctx->svcctx;
3898 struct proxy *px = NULL;
3899 struct server *sv = NULL;
3902 int action = ST_ADM_ACTION_NONE;
3905 int total_servers = 0;
3906 int altered_servers = 0;
3908 char *first_param, *cur_param, *next_param, *end_params;
3909 char *st_cur_param = NULL;
3910 char *st_next_param = NULL;
3912 struct buffer *temp = get_trash_chunk();
3914 struct htx *htx = htxbuf(&s->req.buf);
3915 struct htx_blk *blk;
3917 /* we need more data */
3918 if (s->txn->req.msg_state < HTTP_MSG_DONE) {
3919 /* check if we can receive more */
3920 if (htx_free_data_space(htx) <= global.tune.maxrewrite) {
3921 ctx->st_code = STAT_STATUS_EXCD;
3927 /* The request was fully received. Copy data */
3928 blk = htx_get_head_blk(htx);
3930 enum htx_blk_type type = htx_get_blk_type(blk);
3932 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
3934 if (type == HTX_BLK_DATA) {
3935 struct ist v = htx_get_blk_value(htx, blk);
3937 if (!chunk_memcat(temp, v.ptr, v.len)) {
3938 ctx->st_code = STAT_STATUS_EXCD;
3942 blk = htx_get_next_blk(htx, blk);
3945 first_param = temp->area;
3946 end_params = temp->area + temp->data;
3947 cur_param = next_param = end_params;
3950 ctx->st_code = STAT_STATUS_NONE;
3953 * Parse the parameters in reverse order to only store the last value.
3954 * From the html form, the backend and the action are at the end.
3956 while (cur_param > first_param) {
3962 if ((*cur_param == '&') || (cur_param == first_param)) {
3965 poffset = (cur_param != first_param ? 1 : 0);
3966 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
3967 if ((plen > 0) && (plen <= sizeof(key))) {
3968 strncpy(key, cur_param + poffset, plen);
3969 key[plen - 1] = '\0';
3971 ctx->st_code = STAT_STATUS_ERRP;
3975 /* Parse the value */
3977 while (*value != '\0' && *value != '=') {
3980 if (*value == '=') {
3981 /* Ok, a value is found, we can mark the end of the key */
3984 if (url_decode(key, 1) < 0 || url_decode(value, 1) < 0)
3987 /* Now we can check the key to see what to do */
3988 if (!px && (strcmp(key, "b") == 0)) {
3989 if ((px = proxy_be_by_name(value)) == NULL) {
3990 /* the backend name is unknown or ambiguous (duplicate names) */
3991 ctx->st_code = STAT_STATUS_ERRP;
3995 else if (!action && (strcmp(key, "action") == 0)) {
3996 if (strcmp(value, "ready") == 0) {
3997 action = ST_ADM_ACTION_READY;
3999 else if (strcmp(value, "drain") == 0) {
4000 action = ST_ADM_ACTION_DRAIN;
4002 else if (strcmp(value, "maint") == 0) {
4003 action = ST_ADM_ACTION_MAINT;
4005 else if (strcmp(value, "shutdown") == 0) {
4006 action = ST_ADM_ACTION_SHUTDOWN;
4008 else if (strcmp(value, "dhlth") == 0) {
4009 action = ST_ADM_ACTION_DHLTH;
4011 else if (strcmp(value, "ehlth") == 0) {
4012 action = ST_ADM_ACTION_EHLTH;
4014 else if (strcmp(value, "hrunn") == 0) {
4015 action = ST_ADM_ACTION_HRUNN;
4017 else if (strcmp(value, "hnolb") == 0) {
4018 action = ST_ADM_ACTION_HNOLB;
4020 else if (strcmp(value, "hdown") == 0) {
4021 action = ST_ADM_ACTION_HDOWN;
4023 else if (strcmp(value, "dagent") == 0) {
4024 action = ST_ADM_ACTION_DAGENT;
4026 else if (strcmp(value, "eagent") == 0) {
4027 action = ST_ADM_ACTION_EAGENT;
4029 else if (strcmp(value, "arunn") == 0) {
4030 action = ST_ADM_ACTION_ARUNN;
4032 else if (strcmp(value, "adown") == 0) {
4033 action = ST_ADM_ACTION_ADOWN;
4035 /* else these are the old supported methods */
4036 else if (strcmp(value, "disable") == 0) {
4037 action = ST_ADM_ACTION_DISABLE;
4039 else if (strcmp(value, "enable") == 0) {
4040 action = ST_ADM_ACTION_ENABLE;
4042 else if (strcmp(value, "stop") == 0) {
4043 action = ST_ADM_ACTION_STOP;
4045 else if (strcmp(value, "start") == 0) {
4046 action = ST_ADM_ACTION_START;
4049 ctx->st_code = STAT_STATUS_ERRP;
4053 else if (strcmp(key, "s") == 0) {
4054 if (!(px && action)) {
4056 * Indicates that we'll need to reprocess the parameters
4057 * as soon as backend and action are known
4060 st_cur_param = cur_param;
4061 st_next_param = next_param;
4065 else if ((sv = findserver(px, value)) != NULL) {
4066 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4068 case ST_ADM_ACTION_DISABLE:
4069 if (!(sv->cur_admin & SRV_ADMF_FMAINT)) {
4072 srv_set_admin_flag(sv, SRV_ADMF_FMAINT, "'disable' on stats page");
4075 case ST_ADM_ACTION_ENABLE:
4076 if (sv->cur_admin & SRV_ADMF_FMAINT) {
4079 srv_clr_admin_flag(sv, SRV_ADMF_FMAINT);
4082 case ST_ADM_ACTION_STOP:
4083 if (!(sv->cur_admin & SRV_ADMF_FDRAIN)) {
4084 srv_set_admin_flag(sv, SRV_ADMF_FDRAIN, "'stop' on stats page");
4089 case ST_ADM_ACTION_START:
4090 if (sv->cur_admin & SRV_ADMF_FDRAIN) {
4091 srv_clr_admin_flag(sv, SRV_ADMF_FDRAIN);
4096 case ST_ADM_ACTION_DHLTH:
4097 if (sv->check.state & CHK_ST_CONFIGURED) {
4098 sv->check.state &= ~CHK_ST_ENABLED;
4103 case ST_ADM_ACTION_EHLTH:
4104 if (sv->check.state & CHK_ST_CONFIGURED) {
4105 sv->check.state |= CHK_ST_ENABLED;
4110 case ST_ADM_ACTION_HRUNN:
4112 sv->check.health = sv->check.rise + sv->check.fall - 1;
4113 srv_set_running(sv, "changed from Web interface", NULL);
4118 case ST_ADM_ACTION_HNOLB:
4120 sv->check.health = sv->check.rise + sv->check.fall - 1;
4121 srv_set_stopping(sv, "changed from Web interface", NULL);
4126 case ST_ADM_ACTION_HDOWN:
4128 sv->check.health = 0;
4129 srv_set_stopped(sv, "changed from Web interface", NULL);
4134 case ST_ADM_ACTION_DAGENT:
4135 if (sv->agent.state & CHK_ST_CONFIGURED) {
4136 sv->agent.state &= ~CHK_ST_ENABLED;
4141 case ST_ADM_ACTION_EAGENT:
4142 if (sv->agent.state & CHK_ST_CONFIGURED) {
4143 sv->agent.state |= CHK_ST_ENABLED;
4148 case ST_ADM_ACTION_ARUNN:
4149 if (sv->agent.state & CHK_ST_ENABLED) {
4150 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
4151 srv_set_running(sv, "changed from Web interface", NULL);
4156 case ST_ADM_ACTION_ADOWN:
4157 if (sv->agent.state & CHK_ST_ENABLED) {
4158 sv->agent.health = 0;
4159 srv_set_stopped(sv, "changed from Web interface", NULL);
4164 case ST_ADM_ACTION_READY:
4165 srv_adm_set_ready(sv);
4169 case ST_ADM_ACTION_DRAIN:
4170 srv_adm_set_drain(sv);
4174 case ST_ADM_ACTION_MAINT:
4175 srv_adm_set_maint(sv);
4179 case ST_ADM_ACTION_SHUTDOWN:
4180 if (!(px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
4181 srv_shutdown_streams(sv, SF_ERR_KILLED);
4187 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4189 /* the server name is unknown or ambiguous (duplicate names) */
4193 if (reprocess && px && action) {
4194 /* Now, we know the backend and the action chosen by the user.
4195 * We can safely restart from the first server parameter
4198 cur_param = st_cur_param;
4199 next_param = st_next_param;
4201 goto reprocess_servers;
4204 next_param = cur_param;
4208 if (total_servers == 0) {
4209 ctx->st_code = STAT_STATUS_NONE;
4211 else if (altered_servers == 0) {
4212 ctx->st_code = STAT_STATUS_ERRP;
4214 else if (altered_servers == total_servers) {
4215 ctx->st_code = STAT_STATUS_DONE;
4218 ctx->st_code = STAT_STATUS_PART;
4223 ctx->st_code = STAT_STATUS_NONE;
4228 static int stats_send_http_headers(struct stconn *sc, struct htx *htx)
4230 struct stream *s = __sc_strm(sc);
4231 struct uri_auth *uri = s->be->uri_auth;
4232 struct appctx *appctx = __sc_appctx(sc);
4233 struct show_stat_ctx *ctx = appctx->svcctx;
4237 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_ENC|HTX_SL_F_XFER_LEN|HTX_SL_F_CHNK);
4238 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("200"), ist("OK"));
4241 sl->info.res.status = 200;
4243 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")))
4245 if (ctx->flags & STAT_FMT_HTML) {
4246 if (!htx_add_header(htx, ist("Content-Type"), ist("text/html")))
4249 else if (ctx->flags & (STAT_FMT_JSON|STAT_JSON_SCHM)) {
4250 if (!htx_add_header(htx, ist("Content-Type"), ist("application/json")))
4254 if (!htx_add_header(htx, ist("Content-Type"), ist("text/plain")))
4258 if (uri->refresh > 0 && !(ctx->flags & STAT_NO_REFRESH)) {
4259 const char *refresh = U2A(uri->refresh);
4260 if (!htx_add_header(htx, ist("Refresh"), ist(refresh)))
4264 if (ctx->flags & STAT_CHUNKED) {
4265 if (!htx_add_header(htx, ist("Transfer-Encoding"), ist("chunked")))
4269 if (!htx_add_endof(htx, HTX_BLK_EOH))
4272 channel_add_input(&s->res, htx->data);
4282 static int stats_send_http_redirect(struct stconn *sc, struct htx *htx)
4284 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
4285 struct stream *s = __sc_strm(sc);
4286 struct uri_auth *uri = s->be->uri_auth;
4287 struct appctx *appctx = __sc_appctx(sc);
4288 struct show_stat_ctx *ctx = appctx->svcctx;
4292 /* scope_txt = search pattern + search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
4294 if (ctx->scope_len) {
4295 const char *scope_ptr = stats_scope_ptr(appctx, sc);
4297 strcpy(scope_txt, STAT_SCOPE_PATTERN);
4298 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), scope_ptr, ctx->scope_len);
4299 scope_txt[strlen(STAT_SCOPE_PATTERN) + ctx->scope_len] = 0;
4302 /* We don't want to land on the posted stats page because a refresh will
4303 * repost the data. We don't want this to happen on accident so we redirect
4304 * the browse to the stats page with a GET.
4306 chunk_printf(&trash, "%s;st=%s%s%s%s",
4308 ((ctx->st_code > STAT_STATUS_INIT) &&
4309 (ctx->st_code < STAT_STATUS_SIZE) &&
4310 stat_status_codes[ctx->st_code]) ?
4311 stat_status_codes[ctx->st_code] :
4312 stat_status_codes[STAT_STATUS_UNKN],
4313 (ctx->flags & STAT_HIDE_DOWN) ? ";up" : "",
4314 (ctx->flags & STAT_NO_REFRESH) ? ";norefresh" : "",
4317 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_CHNK);
4318 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("303"), ist("See Other"));
4321 sl->info.res.status = 303;
4323 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
4324 !htx_add_header(htx, ist("Content-Type"), ist("text/plain")) ||
4325 !htx_add_header(htx, ist("Content-Length"), ist("0")) ||
4326 !htx_add_header(htx, ist("Location"), ist2(trash.area, trash.data)))
4329 if (!htx_add_endof(htx, HTX_BLK_EOH))
4332 channel_add_input(&s->res, htx->data);
4342 /* This I/O handler runs as an applet embedded in a stream connector. It is
4343 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
4344 * appctx->st0 contains the operation in progress (dump, done). The handler
4345 * automatically unregisters itself once transfer is complete.
4347 static void http_stats_io_handler(struct appctx *appctx)
4349 struct show_stat_ctx *ctx = appctx->svcctx;
4350 struct stconn *sc = appctx_sc(appctx);
4351 struct stream *s = __sc_strm(sc);
4352 struct channel *req = sc_oc(sc);
4353 struct channel *res = sc_ic(sc);
4354 struct htx *req_htx, *res_htx;
4356 /* only proxy stats are available via http */
4357 ctx->domain = STATS_DOMAIN_PROXY;
4359 res_htx = htx_from_buf(&res->buf);
4361 if (unlikely(sc->state == SC_ST_DIS || sc->state == SC_ST_CLO))
4364 /* Check if the input buffer is available. */
4365 if (!b_size(&res->buf)) {
4370 /* check that the output is not closed */
4371 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
4372 appctx->st0 = STAT_HTTP_END;
4374 /* all states are processed in sequence */
4375 if (appctx->st0 == STAT_HTTP_HEAD) {
4376 if (stats_send_http_headers(sc, res_htx)) {
4377 if (s->txn->meth == HTTP_METH_HEAD)
4378 appctx->st0 = STAT_HTTP_DONE;
4380 appctx->st0 = STAT_HTTP_DUMP;
4384 if (appctx->st0 == STAT_HTTP_DUMP) {
4385 trash_chunk = b_make(trash.area, channel_htx_recv_limit(res, res_htx), 0, 0);
4386 if (stats_dump_stat_to_buffer(sc, res_htx, s->be->uri_auth))
4387 appctx->st0 = STAT_HTTP_DONE;
4390 if (appctx->st0 == STAT_HTTP_POST) {
4391 if (stats_process_http_post(sc))
4392 appctx->st0 = STAT_HTTP_LAST;
4393 else if (req->flags & CF_SHUTR)
4394 appctx->st0 = STAT_HTTP_DONE;
4397 if (appctx->st0 == STAT_HTTP_LAST) {
4398 if (stats_send_http_redirect(sc, res_htx))
4399 appctx->st0 = STAT_HTTP_DONE;
4402 if (appctx->st0 == STAT_HTTP_DONE) {
4403 /* no more data are expected. If the response buffer is empty,
4404 * be sure to add something (EOT block in this case) to have
4405 * something to send. It is important to be sure the EOM flags
4406 * will be handled by the endpoint.
4408 if (htx_is_empty(res_htx)) {
4409 if (!htx_add_endof(res_htx, HTX_BLK_EOT)) {
4413 channel_add_input(res, 1);
4415 res_htx->flags |= HTX_FL_EOM;
4416 res->flags |= CF_EOI;
4417 se_fl_set(appctx->sedesc, SE_FL_EOI);
4418 appctx->st0 = STAT_HTTP_END;
4421 if (appctx->st0 == STAT_HTTP_END) {
4422 if (!(res->flags & CF_SHUTR)) {
4423 res->flags |= CF_READ_NULL;
4427 /* eat the whole request */
4429 req_htx = htx_from_buf(&req->buf);
4430 co_htx_skip(req, req_htx, co_data(req));
4431 htx_to_buf(req_htx, &req->buf);
4436 /* we have left the request in the buffer for the case where we
4437 * process a POST, and this automatically re-enables activity on
4438 * read. It's better to indicate that we want to stop reading when
4439 * we're sending, so that we know there's at most one direction
4440 * deciding to wake the applet up. It saves it from looping when
4441 * emitting large blocks into small TCP windows.
4443 htx_to_buf(res_htx, &res->buf);
4444 if (!channel_is_empty(res))
4445 applet_wont_consume(appctx);
4448 /* Dump all fields from <info> into <out> using the "show info" format (name: value) */
4449 static int stats_dump_info_fields(struct buffer *out,
4450 const struct field *info,
4451 struct show_stat_ctx *ctx)
4453 int flags = ctx->flags;
4456 for (field = 0; field < INF_TOTAL_FIELDS; field++) {
4457 if (!field_format(info, field))
4460 if (!chunk_appendf(out, "%s: ", info_fields[field].name))
4462 if (!stats_emit_raw_data_field(out, &info[field]))
4464 if ((flags & STAT_SHOW_FDESC) && !chunk_appendf(out, ":\"%s\"", info_fields[field].desc))
4466 if (!chunk_strcat(out, "\n"))
4472 /* Dump all fields from <info> into <out> using the "show info typed" format */
4473 static int stats_dump_typed_info_fields(struct buffer *out,
4474 const struct field *info,
4475 struct show_stat_ctx *ctx)
4477 int flags = ctx->flags;
4480 for (field = 0; field < INF_TOTAL_FIELDS; field++) {
4481 if (!field_format(info, field))
4484 if (!chunk_appendf(out, "%d.%s.%u:", field, info_fields[field].name, info[INF_PROCESS_NUM].u.u32))
4486 if (!stats_emit_field_tags(out, &info[field], ':'))
4488 if (!stats_emit_typed_data_field(out, &info[field]))
4490 if ((flags & STAT_SHOW_FDESC) && !chunk_appendf(out, ":\"%s\"", info_fields[field].desc))
4492 if (!chunk_strcat(out, "\n"))
4498 /* Fill <info> with HAProxy global info. <info> is preallocated array of length
4499 * <len>. The length of the array must be INF_TOTAL_FIELDS. If this length is
4500 * less then this value, the function returns 0, otherwise, it returns 1. Some
4501 * fields' presence or precision may depend on some of the STAT_* flags present
4504 int stats_fill_info(struct field *info, int len, uint flags)
4507 struct buffer *out = get_trash_chunk();
4510 double ssl_sess_rate = read_freq_ctr_flt(&global.ssl_per_sec);
4511 double ssl_key_rate = read_freq_ctr_flt(&global.ssl_fe_keys_per_sec);
4512 double ssl_reuse = 0;
4514 if (ssl_key_rate < ssl_sess_rate)
4515 ssl_reuse = 100.0 * (1.0 - ssl_key_rate / ssl_sess_rate);
4518 tv_remain(&start_date, &now, &up);
4520 if (len < INF_TOTAL_FIELDS)
4524 memset(info, 0, sizeof(*info) * len);
4526 info[INF_NAME] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, PRODUCT_NAME);
4527 info[INF_VERSION] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_version);
4528 info[INF_BUILD_INFO] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_version);
4529 info[INF_RELEASE_DATE] = mkf_str(FO_PRODUCT|FN_OUTPUT|FS_SERVICE, haproxy_date);
4531 info[INF_NBTHREAD] = mkf_u32(FO_CONFIG|FS_SERVICE, global.nbthread);
4532 info[INF_NBPROC] = mkf_u32(FO_CONFIG|FS_SERVICE, 1);
4533 info[INF_PROCESS_NUM] = mkf_u32(FO_KEY, 1);
4534 info[INF_PID] = mkf_u32(FO_STATUS, pid);
4536 info[INF_UPTIME] = mkf_str(FN_DURATION, chunk_newstr(out));
4537 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));
4539 info[INF_UPTIME_SEC] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_DURATION, up.tv_sec + up.tv_usec / 1000000.0) : mkf_u32(FN_DURATION, up.tv_sec);
4540 info[INF_START_TIME_SEC] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_DURATION, start_date.tv_sec + start_date.tv_usec / 1000000.0) : mkf_u32(FN_DURATION, start_date.tv_sec);
4541 info[INF_MEMMAX_MB] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_memmax);
4542 info[INF_MEMMAX_BYTES] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_memmax * 1048576L);
4543 info[INF_POOL_ALLOC_MB] = mkf_u32(0, (unsigned)(pool_total_allocated() / 1048576L));
4544 info[INF_POOL_ALLOC_BYTES] = mkf_u64(0, pool_total_allocated());
4545 info[INF_POOL_USED_MB] = mkf_u32(0, (unsigned)(pool_total_used() / 1048576L));
4546 info[INF_POOL_USED_BYTES] = mkf_u64(0, pool_total_used());
4547 info[INF_POOL_FAILED] = mkf_u32(FN_COUNTER, pool_total_failures());
4548 info[INF_ULIMIT_N] = mkf_u32(FO_CONFIG|FN_LIMIT, global.rlimit_nofile);
4549 info[INF_MAXSOCK] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxsock);
4550 info[INF_MAXCONN] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxconn);
4551 info[INF_HARD_MAXCONN] = mkf_u32(FO_CONFIG|FN_LIMIT, global.hardmaxconn);
4552 info[INF_CURR_CONN] = mkf_u32(0, actconn);
4553 info[INF_CUM_CONN] = mkf_u32(FN_COUNTER, totalconn);
4554 info[INF_CUM_REQ] = mkf_u32(FN_COUNTER, global.req_count);
4556 info[INF_MAX_SSL_CONNS] = mkf_u32(FN_MAX, global.maxsslconn);
4557 info[INF_CURR_SSL_CONNS] = mkf_u32(0, global.sslconns);
4558 info[INF_CUM_SSL_CONNS] = mkf_u32(FN_COUNTER, global.totalsslconns);
4560 info[INF_MAXPIPES] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxpipes);
4561 info[INF_PIPES_USED] = mkf_u32(0, pipes_used);
4562 info[INF_PIPES_FREE] = mkf_u32(0, pipes_free);
4563 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));
4564 info[INF_CONN_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.cps_lim);
4565 info[INF_MAX_CONN_RATE] = mkf_u32(FN_MAX, global.cps_max);
4566 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));
4567 info[INF_SESS_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.sps_lim);
4568 info[INF_MAX_SESS_RATE] = mkf_u32(FN_RATE, global.sps_max);
4571 info[INF_SSL_RATE] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, ssl_sess_rate) : mkf_u32(FN_RATE, ssl_sess_rate);
4572 info[INF_SSL_RATE_LIMIT] = mkf_u32(FO_CONFIG|FN_LIMIT, global.ssl_lim);
4573 info[INF_MAX_SSL_RATE] = mkf_u32(FN_MAX, global.ssl_max);
4574 info[INF_SSL_FRONTEND_KEY_RATE] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, ssl_key_rate) : mkf_u32(0, ssl_key_rate);
4575 info[INF_SSL_FRONTEND_MAX_KEY_RATE] = mkf_u32(FN_MAX, global.ssl_fe_keys_max);
4576 info[INF_SSL_FRONTEND_SESSION_REUSE_PCT] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, ssl_reuse) : mkf_u32(0, ssl_reuse);
4577 info[INF_SSL_BACKEND_KEY_RATE] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, read_freq_ctr_flt(&global.ssl_be_keys_per_sec)) : mkf_u32(FN_RATE, read_freq_ctr(&global.ssl_be_keys_per_sec));
4578 info[INF_SSL_BACKEND_MAX_KEY_RATE] = mkf_u32(FN_MAX, global.ssl_be_keys_max);
4579 info[INF_SSL_CACHE_LOOKUPS] = mkf_u32(FN_COUNTER, global.shctx_lookups);
4580 info[INF_SSL_CACHE_MISSES] = mkf_u32(FN_COUNTER, global.shctx_misses);
4582 info[INF_COMPRESS_BPS_IN] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, read_freq_ctr_flt(&global.comp_bps_in)) : mkf_u32(FN_RATE, read_freq_ctr(&global.comp_bps_in));
4583 info[INF_COMPRESS_BPS_OUT] = (flags & STAT_USE_FLOAT) ? mkf_flt(FN_RATE, read_freq_ctr_flt(&global.comp_bps_out)) : mkf_u32(FN_RATE, read_freq_ctr(&global.comp_bps_out));
4584 info[INF_COMPRESS_BPS_RATE_LIM] = mkf_u32(FO_CONFIG|FN_LIMIT, global.comp_rate_lim);
4586 info[INF_ZLIB_MEM_USAGE] = mkf_u32(0, zlib_used_memory);
4587 info[INF_MAX_ZLIB_MEM_USAGE] = mkf_u32(FO_CONFIG|FN_LIMIT, global.maxzlibmem);
4589 info[INF_TASKS] = mkf_u32(0, total_allocated_tasks());
4590 info[INF_RUN_QUEUE] = mkf_u32(0, total_run_queues());
4591 info[INF_IDLE_PCT] = mkf_u32(FN_AVG, clock_report_idle());
4592 info[INF_NODE] = mkf_str(FO_CONFIG|FN_OUTPUT|FS_SERVICE, global.node);
4594 info[INF_DESCRIPTION] = mkf_str(FO_CONFIG|FN_OUTPUT|FS_SERVICE, global.desc);
4595 info[INF_STOPPING] = mkf_u32(0, stopping);
4596 info[INF_JOBS] = mkf_u32(0, jobs);
4597 info[INF_UNSTOPPABLE_JOBS] = mkf_u32(0, unstoppable_jobs);
4598 info[INF_LISTENERS] = mkf_u32(0, listeners);
4599 info[INF_ACTIVE_PEERS] = mkf_u32(0, active_peers);
4600 info[INF_CONNECTED_PEERS] = mkf_u32(0, connected_peers);
4601 info[INF_DROPPED_LOGS] = mkf_u32(0, dropped_logs);
4602 info[INF_BUSY_POLLING] = mkf_u32(0, !!(global.tune.options & GTUNE_BUSY_POLLING));
4603 info[INF_FAILED_RESOLUTIONS] = mkf_u32(0, resolv_failed_resolutions);
4604 info[INF_TOTAL_BYTES_OUT] = mkf_u64(0, global.out_bytes);
4605 info[INF_TOTAL_SPLICED_BYTES_OUT] = mkf_u64(0, global.spliced_out_bytes);
4606 info[INF_BYTES_OUT_RATE] = mkf_u64(FN_RATE, (unsigned long long)read_freq_ctr(&global.out_32bps) * 32);
4607 info[INF_DEBUG_COMMANDS_ISSUED] = mkf_u32(0, debug_commands_issued);
4608 info[INF_CUM_LOG_MSGS] = mkf_u32(FN_COUNTER, cum_log_messages);
4610 info[INF_TAINTED] = mkf_str(FO_STATUS, chunk_newstr(out));
4611 chunk_appendf(out, "%#x", get_tainted());
4616 /* This function dumps information onto the stream connector's read buffer.
4617 * It returns 0 as long as it does not complete, non-zero upon completion.
4620 static int stats_dump_info_to_buffer(struct stconn *sc)
4622 struct appctx *appctx = __sc_appctx(sc);
4623 struct show_stat_ctx *ctx = appctx->svcctx;
4627 if (!stats_fill_info(info, INF_TOTAL_FIELDS, ctx->flags))
4630 chunk_reset(&trash_chunk);
4632 current_field = ctx->field;
4634 if (ctx->flags & STAT_FMT_TYPED)
4635 ret = stats_dump_typed_info_fields(&trash_chunk, info, ctx);
4636 else if (ctx->flags & STAT_FMT_JSON)
4637 ret = stats_dump_json_info_fields(&trash_chunk, info, ctx);
4639 ret = stats_dump_info_fields(&trash_chunk, info, ctx);
4641 if (applet_putchk(appctx, &trash_chunk) == -1) {
4642 /* restore previous field */
4643 ctx->field = current_field;
4646 if (ret && ctx->field) {
4654 /* This function dumps the schema onto the stream connector's read buffer.
4655 * It returns 0 as long as it does not complete, non-zero upon completion.
4658 * Integer values bounded to the range [-(2**53)+1, (2**53)-1] as
4659 * per the recommendation for interoperable integers in section 6 of RFC 7159.
4661 static void stats_dump_json_schema(struct buffer *out)
4664 int old_len = out->data;
4668 "\"$schema\":\"http://json-schema.org/draft-04/schema#\","
4671 "\"title\":\"Info\","
4672 "\"type\":\"array\","
4674 "\"title\":\"InfoItem\","
4675 "\"type\":\"object\","
4677 "\"field\":{\"$ref\":\"#/definitions/field\"},"
4678 "\"processNum\":{\"$ref\":\"#/definitions/processNum\"},"
4679 "\"tags\":{\"$ref\":\"#/definitions/tags\"},"
4680 "\"value\":{\"$ref\":\"#/definitions/typedValue\"}"
4682 "\"required\":[\"field\",\"processNum\",\"tags\","
4687 "\"title\":\"Stat\","
4688 "\"type\":\"array\","
4690 "\"title\":\"InfoItem\","
4691 "\"type\":\"object\","
4694 "\"enum\":[\"Frontend\",\"Backend\",\"Listener\","
4695 "\"Server\",\"Unknown\"]"
4698 "\"type\":\"integer\","
4702 "\"type\":\"integer\","
4705 "\"field\":{\"$ref\":\"#/definitions/field\"},"
4706 "\"processNum\":{\"$ref\":\"#/definitions/processNum\"},"
4707 "\"tags\":{\"$ref\":\"#/definitions/tags\"},"
4708 "\"typedValue\":{\"$ref\":\"#/definitions/typedValue\"}"
4710 "\"required\":[\"objType\",\"proxyId\",\"id\","
4711 "\"field\",\"processNum\",\"tags\","
4716 "\"title\":\"Error\","
4717 "\"type\":\"object\","
4720 "\"type\":\"string\""
4723 "\"required\":[\"errorStr\"]"
4728 "\"type\":\"object\","
4730 "\"type\":\"integer\","
4734 "\"type\":\"string\""
4736 "\"required\":[\"pos\",\"name\"]"
4739 "\"type\":\"integer\","
4743 "\"type\":\"object\","
4745 "\"type\":\"string\","
4746 "\"enum\":[\"Metric\",\"Status\",\"Key\","
4747 "\"Config\",\"Product\",\"Unknown\"]"
4750 "\"type\":\"string\","
4751 "\"enum\":[\"Gauge\",\"Limit\",\"Min\",\"Max\","
4752 "\"Rate\",\"Counter\",\"Duration\","
4753 "\"Age\",\"Time\",\"Name\",\"Output\","
4754 "\"Avg\", \"Unknown\"]"
4757 "\"type\":\"string\","
4758 "\"enum\":[\"Cluster\",\"Process\",\"Service\","
4759 "\"System\",\"Unknown\"]"
4761 "\"required\":[\"origin\",\"nature\",\"scope\"]"
4764 "\"type\":\"object\","
4766 "{\"$ref\":\"#/definitions/typedValue/definitions/s32Value\"},"
4767 "{\"$ref\":\"#/definitions/typedValue/definitions/s64Value\"},"
4768 "{\"$ref\":\"#/definitions/typedValue/definitions/u32Value\"},"
4769 "{\"$ref\":\"#/definitions/typedValue/definitions/u64Value\"},"
4770 "{\"$ref\":\"#/definitions/typedValue/definitions/strValue\"}"
4776 "\"type\":\"string\","
4777 "\"enum\":[\"s32\"]"
4780 "\"type\":\"integer\","
4781 "\"minimum\":-2147483648,"
4782 "\"maximum\":2147483647"
4785 "\"required\":[\"type\",\"value\"]"
4790 "\"type\":\"string\","
4791 "\"enum\":[\"s64\"]"
4794 "\"type\":\"integer\","
4795 "\"minimum\":-9007199254740991,"
4796 "\"maximum\":9007199254740991"
4799 "\"required\":[\"type\",\"value\"]"
4804 "\"type\":\"string\","
4805 "\"enum\":[\"u32\"]"
4808 "\"type\":\"integer\","
4810 "\"maximum\":4294967295"
4813 "\"required\":[\"type\",\"value\"]"
4818 "\"type\":\"string\","
4819 "\"enum\":[\"u64\"]"
4822 "\"type\":\"integer\","
4824 "\"maximum\":9007199254740991"
4827 "\"required\":[\"type\",\"value\"]"
4832 "\"type\":\"string\","
4833 "\"enum\":[\"str\"]"
4835 "\"value\":{\"type\":\"string\"}"
4837 "\"required\":[\"type\",\"value\"]"
4839 "\"unknownValue\":{"
4842 "\"type\":\"integer\","
4846 "\"type\":\"string\","
4847 "\"enum\":[\"unknown\"]"
4850 "\"required\":[\"type\",\"value\"]"
4857 if (old_len == out->data) {
4860 "{\"errorStr\":\"output buffer too short\"}");
4862 chunk_appendf(out, "\n");
4865 /* This function dumps the schema onto the stream connector's read buffer.
4866 * It returns 0 as long as it does not complete, non-zero upon completion.
4869 static int stats_dump_json_schema_to_buffer(struct appctx *appctx)
4872 chunk_reset(&trash_chunk);
4874 stats_dump_json_schema(&trash_chunk);
4876 if (applet_putchk(appctx, &trash_chunk) == -1)
4882 static int cli_parse_clear_counters(char **args, char *payload, struct appctx *appctx, void *private)
4886 struct listener *li;
4887 struct stats_module *mod;
4890 if (strcmp(args[2], "all") == 0)
4893 /* check permissions */
4894 if (!cli_has_level(appctx, ACCESS_LVL_OPER) ||
4895 (clrall && !cli_has_level(appctx, ACCESS_LVL_ADMIN)))
4898 for (px = proxies_list; px; px = px->next) {
4900 memset(&px->be_counters, 0, sizeof(px->be_counters));
4901 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
4904 px->be_counters.conn_max = 0;
4905 px->be_counters.p.http.rps_max = 0;
4906 px->be_counters.sps_max = 0;
4907 px->be_counters.cps_max = 0;
4908 px->be_counters.nbpend_max = 0;
4909 px->be_counters.qtime_max = 0;
4910 px->be_counters.ctime_max = 0;
4911 px->be_counters.dtime_max = 0;
4912 px->be_counters.ttime_max = 0;
4914 px->fe_counters.conn_max = 0;
4915 px->fe_counters.p.http.rps_max = 0;
4916 px->fe_counters.sps_max = 0;
4917 px->fe_counters.cps_max = 0;
4920 for (sv = px->srv; sv; sv = sv->next)
4922 memset(&sv->counters, 0, sizeof(sv->counters));
4924 sv->counters.cur_sess_max = 0;
4925 sv->counters.nbpend_max = 0;
4926 sv->counters.sps_max = 0;
4927 sv->counters.qtime_max = 0;
4928 sv->counters.ctime_max = 0;
4929 sv->counters.dtime_max = 0;
4930 sv->counters.ttime_max = 0;
4933 list_for_each_entry(li, &px->conf.listeners, by_fe)
4936 memset(li->counters, 0, sizeof(*li->counters));
4938 li->counters->conn_max = 0;
4945 global.ssl_fe_keys_max = 0;
4946 global.ssl_be_keys_max = 0;
4948 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
4949 if (!mod->clearable && !clrall)
4952 for (px = proxies_list; px; px = px->next) {
4953 enum stats_domain_px_cap mod_cap = stats_px_get_cap(mod->domain_flags);
4955 if (px->cap & PR_CAP_FE && mod_cap & STATS_PX_CAP_FE) {
4956 EXTRA_COUNTERS_INIT(px->extra_counters_fe,
4959 mod->counters_size);
4962 if (px->cap & PR_CAP_BE && mod_cap & STATS_PX_CAP_BE) {
4963 EXTRA_COUNTERS_INIT(px->extra_counters_be,
4966 mod->counters_size);
4969 if (mod_cap & STATS_PX_CAP_SRV) {
4970 for (sv = px->srv; sv; sv = sv->next) {
4971 EXTRA_COUNTERS_INIT(sv->extra_counters,
4974 mod->counters_size);
4978 if (mod_cap & STATS_PX_CAP_LI) {
4979 list_for_each_entry(li, &px->conf.listeners, by_fe) {
4980 EXTRA_COUNTERS_INIT(li->extra_counters,
4983 mod->counters_size);
4989 resolv_stats_clear_counters(clrall, &stats_module_list[STATS_DOMAIN_RESOLVERS]);
4991 memset(activity, 0, sizeof(activity));
4996 static int cli_parse_show_info(char **args, char *payload, struct appctx *appctx, void *private)
4998 struct show_stat_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
5004 ctx->field = 0; /* explicit default value */
5006 while (*args[arg]) {
5007 if (strcmp(args[arg], "typed") == 0)
5008 ctx->flags = (ctx->flags & ~STAT_FMT_MASK) | STAT_FMT_TYPED;
5009 else if (strcmp(args[arg], "json") == 0)
5010 ctx->flags = (ctx->flags & ~STAT_FMT_MASK) | STAT_FMT_JSON;
5011 else if (strcmp(args[arg], "desc") == 0)
5012 ctx->flags |= STAT_SHOW_FDESC;
5013 else if (strcmp(args[arg], "float") == 0)
5014 ctx->flags |= STAT_USE_FLOAT;
5021 static int cli_parse_show_stat(char **args, char *payload, struct appctx *appctx, void *private)
5023 struct show_stat_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
5028 ctx->flags = STAT_SHNODE | STAT_SHDESC;
5030 if ((strm_li(appctx_strm(appctx))->bind_conf->level & ACCESS_LVL_MASK) >= ACCESS_LVL_OPER)
5031 ctx->flags |= STAT_SHLGNDS;
5033 /* proxy is the default domain */
5034 ctx->domain = STATS_DOMAIN_PROXY;
5035 if (strcmp(args[arg], "domain") == 0) {
5038 if (strcmp(args[arg], "proxy") == 0) {
5040 } else if (strcmp(args[arg], "resolvers") == 0) {
5041 ctx->domain = STATS_DOMAIN_RESOLVERS;
5044 return cli_err(appctx, "Invalid statistics domain.\n");
5048 if (ctx->domain == STATS_DOMAIN_PROXY
5049 && *args[arg] && *args[arg+1] && *args[arg+2]) {
5052 px = proxy_find_by_name(args[arg], 0, 0);
5054 ctx->iid = px->uuid;
5056 ctx->iid = atoi(args[arg]);
5059 return cli_err(appctx, "No such proxy.\n");
5061 ctx->flags |= STAT_BOUND;
5062 ctx->type = atoi(args[arg+1]);
5063 ctx->sid = atoi(args[arg+2]);
5067 while (*args[arg]) {
5068 if (strcmp(args[arg], "typed") == 0)
5069 ctx->flags = (ctx->flags & ~STAT_FMT_MASK) | STAT_FMT_TYPED;
5070 else if (strcmp(args[arg], "json") == 0)
5071 ctx->flags = (ctx->flags & ~STAT_FMT_MASK) | STAT_FMT_JSON;
5072 else if (strcmp(args[arg], "desc") == 0)
5073 ctx->flags |= STAT_SHOW_FDESC;
5074 else if (strcmp(args[arg], "no-maint") == 0)
5075 ctx->flags |= STAT_HIDE_MAINT;
5076 else if (strcmp(args[arg], "up") == 0)
5077 ctx->flags |= STAT_HIDE_DOWN;
5084 static int cli_io_handler_dump_info(struct appctx *appctx)
5086 trash_chunk = b_make(trash.area, trash.size, 0, 0);
5087 return stats_dump_info_to_buffer(appctx_sc(appctx));
5090 /* This I/O handler runs as an applet embedded in a stream connector. It is
5091 * used to send raw stats over a socket.
5093 static int cli_io_handler_dump_stat(struct appctx *appctx)
5095 trash_chunk = b_make(trash.area, trash.size, 0, 0);
5096 return stats_dump_stat_to_buffer(appctx_sc(appctx), NULL, NULL);
5099 static int cli_io_handler_dump_json_schema(struct appctx *appctx)
5101 trash_chunk = b_make(trash.area, trash.size, 0, 0);
5102 return stats_dump_json_schema_to_buffer(appctx);
5105 int stats_allocate_proxy_counters_internal(struct extra_counters **counters,
5106 int type, int px_cap)
5108 struct stats_module *mod;
5110 EXTRA_COUNTERS_REGISTER(counters, type, alloc_failed);
5112 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
5113 if (!(stats_px_get_cap(mod->domain_flags) & px_cap))
5116 EXTRA_COUNTERS_ADD(mod, *counters, mod->counters, mod->counters_size);
5119 EXTRA_COUNTERS_ALLOC(*counters, alloc_failed);
5121 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
5122 if (!(stats_px_get_cap(mod->domain_flags) & px_cap))
5125 EXTRA_COUNTERS_INIT(*counters, mod, mod->counters, mod->counters_size);
5134 /* Initialize and allocate all extra counters for a proxy and its attached
5135 * servers/listeners with all already registered stats module
5137 int stats_allocate_proxy_counters(struct proxy *px)
5140 struct listener *li;
5142 if (px->cap & PR_CAP_FE) {
5143 if (!stats_allocate_proxy_counters_internal(&px->extra_counters_fe,
5150 if (px->cap & PR_CAP_BE) {
5151 if (!stats_allocate_proxy_counters_internal(&px->extra_counters_be,
5158 for (sv = px->srv; sv; sv = sv->next) {
5159 if (!stats_allocate_proxy_counters_internal(&sv->extra_counters,
5161 STATS_PX_CAP_SRV)) {
5166 list_for_each_entry(li, &px->conf.listeners, by_fe) {
5167 if (!stats_allocate_proxy_counters_internal(&li->extra_counters,
5177 void stats_register_module(struct stats_module *m)
5179 const uint8_t domain = stats_get_domain(m->domain_flags);
5181 LIST_APPEND(&stats_module_list[domain], &m->list);
5182 stat_count[domain] += m->stats_count;
5185 static int allocate_stats_px_postcheck(void)
5187 struct stats_module *mod;
5188 size_t i = ST_F_TOTAL_FIELDS;
5192 stat_count[STATS_DOMAIN_PROXY] += ST_F_TOTAL_FIELDS;
5194 stat_f[STATS_DOMAIN_PROXY] = malloc(stat_count[STATS_DOMAIN_PROXY] * sizeof(struct name_desc));
5195 if (!stat_f[STATS_DOMAIN_PROXY]) {
5196 ha_alert("stats: cannot allocate all fields for proxy statistics\n");
5197 err_code |= ERR_ALERT | ERR_FATAL;
5201 memcpy(stat_f[STATS_DOMAIN_PROXY], stat_fields,
5202 ST_F_TOTAL_FIELDS * sizeof(struct name_desc));
5204 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_PROXY], list) {
5205 memcpy(stat_f[STATS_DOMAIN_PROXY] + i,
5207 mod->stats_count * sizeof(struct name_desc));
5208 i += mod->stats_count;
5211 for (px = proxies_list; px; px = px->next) {
5212 if (!stats_allocate_proxy_counters(px)) {
5213 ha_alert("stats: cannot allocate all counters for proxy statistics\n");
5214 err_code |= ERR_ALERT | ERR_FATAL;
5219 /* wait per-thread alloc to perform corresponding stat_l allocation */
5224 REGISTER_CONFIG_POSTPARSER("allocate-stats-px", allocate_stats_px_postcheck);
5226 static int allocate_stats_rslv_postcheck(void)
5228 struct stats_module *mod;
5232 stat_f[STATS_DOMAIN_RESOLVERS] = malloc(stat_count[STATS_DOMAIN_RESOLVERS] * sizeof(struct name_desc));
5233 if (!stat_f[STATS_DOMAIN_RESOLVERS]) {
5234 ha_alert("stats: cannot allocate all fields for resolver statistics\n");
5235 err_code |= ERR_ALERT | ERR_FATAL;
5239 list_for_each_entry(mod, &stats_module_list[STATS_DOMAIN_RESOLVERS], list) {
5240 memcpy(stat_f[STATS_DOMAIN_RESOLVERS] + i,
5242 mod->stats_count * sizeof(struct name_desc));
5243 i += mod->stats_count;
5246 if (!resolv_allocate_counters(&stats_module_list[STATS_DOMAIN_RESOLVERS])) {
5247 ha_alert("stats: cannot allocate all counters for resolver statistics\n");
5248 err_code |= ERR_ALERT | ERR_FATAL;
5252 /* wait per-thread alloc to perform corresponding stat_l allocation */
5257 REGISTER_CONFIG_POSTPARSER("allocate-stats-resolver", allocate_stats_rslv_postcheck);
5259 static int allocate_stat_lines_per_thread(void)
5261 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
5263 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5264 const int domain = domains[i];
5266 stat_l[domain] = malloc(stat_count[domain] * sizeof(struct field));
5267 if (!stat_l[domain])
5273 REGISTER_PER_THREAD_ALLOC(allocate_stat_lines_per_thread);
5275 static int allocate_trash_counters(void)
5277 struct stats_module *mod;
5278 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
5279 size_t max_counters_size = 0;
5281 /* calculate the greatest counters used by any stats modules */
5282 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5283 list_for_each_entry(mod, &stats_module_list[domains[i]], list) {
5284 max_counters_size = mod->counters_size > max_counters_size ?
5285 mod->counters_size : max_counters_size;
5289 /* allocate the trash with the size of the greatest counters */
5290 if (max_counters_size) {
5291 trash_counters = malloc(max_counters_size);
5292 if (!trash_counters) {
5293 ha_alert("stats: cannot allocate trash counters for statistics\n");
5301 REGISTER_PER_THREAD_ALLOC(allocate_trash_counters);
5303 static void deinit_stat_lines_per_thread(void)
5305 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
5307 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5308 const int domain = domains[i];
5310 ha_free(&stat_l[domain]);
5315 REGISTER_PER_THREAD_FREE(deinit_stat_lines_per_thread);
5317 static void deinit_stats(void)
5319 int domains[] = { STATS_DOMAIN_PROXY, STATS_DOMAIN_RESOLVERS }, i;
5321 for (i = 0; i < STATS_DOMAIN_COUNT; ++i) {
5322 const int domain = domains[i];
5325 free(stat_f[domain]);
5329 REGISTER_POST_DEINIT(deinit_stats);
5331 static void free_trash_counters(void)
5334 free(trash_counters);
5337 REGISTER_PER_THREAD_FREE(free_trash_counters);
5339 /* register cli keywords */
5340 static struct cli_kw_list cli_kws = {{ },{
5341 { { "clear", "counters", NULL }, "clear counters [all] : clear max statistics counters (or all counters)", cli_parse_clear_counters, NULL, NULL },
5342 { { "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 },
5343 { { "show", "stat", NULL }, "show stat [desc|json|no-maint|typed|up]*: report counters for each proxy and server", cli_parse_show_stat, cli_io_handler_dump_stat, NULL },
5344 { { "show", "schema", "json", NULL }, "show schema json : report schema used for stats", NULL, cli_io_handler_dump_json_schema, NULL },
5348 INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
5350 struct applet http_stats_applet = {
5351 .obj_type = OBJ_TYPE_APPLET,
5352 .name = "<STATS>", /* used for logging */
5353 .fct = http_stats_io_handler,