blob: 4d2a933fc891ae18fb65e68d613b024363ed46b2 [file] [log] [blame]
Willy Tarreau91861262007-10-17 17:06:05 +02001/*
William Lallemand9ed62032016-11-21 17:49:11 +01002 * include/types/stats.h
3 * This file provides structures and types for stats.
Willy Tarreaueb472682010-05-28 18:46:57 +02004 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation, version 2.1
8 * exclusively.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
Willy Tarreau91861262007-10-17 17:06:05 +020019
William Lallemand9ed62032016-11-21 17:49:11 +010020#ifndef _TYPES_STATS_H
21#define _TYPES_STATS_H
Willy Tarreau91861262007-10-17 17:06:05 +020022
Willy Tarreau295a8372011-03-10 11:25:07 +010023/* Flags for applet.ctx.stats.flags */
Willy Tarreau354898b2012-12-23 18:15:23 +010024#define STAT_FMT_HTML 0x00000001 /* dump the stats in HTML format */
Willy Tarreaucb809122016-01-11 20:08:42 +010025#define STAT_FMT_TYPED 0x00000002 /* use the typed output format */
Simon Horman05ee2132017-01-04 09:37:25 +010026#define STAT_FMT_JSON 0x00000004 /* dump the stats in JSON format */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +010027#define STAT_HIDE_DOWN 0x00000008 /* hide 'down' servers in the stats page */
28#define STAT_NO_REFRESH 0x00000010 /* do not automatically refresh the stats page */
Cyril Bonté474be412010-10-12 00:14:36 +020029#define STAT_ADMIN 0x00000020 /* indicate a stats admin level */
Willy Tarreauaf3cf702014-04-22 22:19:53 +020030#define STAT_CHUNKED 0x00000040 /* use chunked encoding (HTTP/1.1) */
Christopher Faulet6338a082019-09-09 15:50:54 +020031#define STAT_JSON_SCHM 0x00000080 /* dump the json schema */
Willy Tarreau708c4162019-10-09 10:19:16 +020032
33#define STAT_HIDEVER 0x00000100 /* conf: do not report the version and reldate */
34#define STAT_SHNODE 0x00000200 /* conf: show node name */
35#define STAT_SHDESC 0x00000400 /* conf: show description */
36#define STAT_SHLGNDS 0x00000800 /* conf: show legends */
Willy Tarreau2f397382019-10-09 11:43:59 +020037#define STAT_SHOW_FDESC 0x00001000 /* show the field descriptions when possible */
Willy Tarreau708c4162019-10-09 10:19:16 +020038
Willy Tarreau39f7e6d2008-03-17 21:38:24 +010039#define STAT_BOUND 0x00800000 /* bound statistics to selected proxies/types/services */
Simon Horman05ee2132017-01-04 09:37:25 +010040#define STAT_STARTED 0x01000000 /* some output has occurred */
Willy Tarreau55bb8452007-10-17 18:44:57 +020041
Christopher Faulet6338a082019-09-09 15:50:54 +020042#define STAT_FMT_MASK 0x00000007
43
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +010044#define STATS_TYPE_FE 0
45#define STATS_TYPE_BE 1
46#define STATS_TYPE_SV 2
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +020047#define STATS_TYPE_SO 3
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +010048
Willy Tarreau96d44912013-11-22 12:25:24 +010049/* HTTP stats : applet.st0 */
50enum {
Christopher Faulet3a78aa62019-02-27 16:19:48 +010051 STAT_HTTP_INIT = 0, /* Initial state */
Willy Tarreau347a35d2013-11-22 17:51:09 +010052 STAT_HTTP_HEAD, /* send headers before dump */
Willy Tarreau96d44912013-11-22 12:25:24 +010053 STAT_HTTP_DUMP, /* dumping stats */
Willy Tarreau347a35d2013-11-22 17:51:09 +010054 STAT_HTTP_POST, /* waiting post data */
55 STAT_HTTP_LAST, /* sending last chunk of response */
Christopher Faulet3a78aa62019-02-27 16:19:48 +010056 STAT_HTTP_DONE, /* dump is finished */
57 STAT_HTTP_END, /* finished */
Willy Tarreau96d44912013-11-22 12:25:24 +010058};
59
Christopher Faulet2b9b6782019-02-27 16:42:58 +010060/* status codes available for the stats admin page */
61enum {
62 STAT_STATUS_INIT = 0,
63 STAT_STATUS_DENY, /* action denied */
64 STAT_STATUS_DONE, /* the action is successful */
65 STAT_STATUS_ERRP, /* an error occurred due to invalid values in parameters */
66 STAT_STATUS_EXCD, /* an error occurred because the buffer couldn't store all data */
67 STAT_STATUS_NONE, /* nothing happened (no action chosen or servers state didn't change) */
68 STAT_STATUS_PART, /* the action is partially successful */
69 STAT_STATUS_UNKN, /* an unknown error occurred, shouldn't happen */
70 STAT_STATUS_IVAL, /* invalid requests (chunked or invalid post) */
71 STAT_STATUS_SIZE
72};
73
de Lafond Guillaume88c278f2013-04-15 19:27:10 +020074/* HTML form to limit output scope */
75#define STAT_SCOPE_TXT_MAXLEN 20 /* max len for scope substring */
76#define STAT_SCOPE_INPUT_NAME "scope" /* pattern form scope name <input> in html form */
77#define STAT_SCOPE_PATTERN "?" STAT_SCOPE_INPUT_NAME "="
78
William Lallemand9ed62032016-11-21 17:49:11 +010079/* Actions available for the stats admin forms */
80enum {
81 ST_ADM_ACTION_NONE = 0,
Thierry Fournier31e64ca2016-03-23 16:25:49 +010082
William Lallemand9ed62032016-11-21 17:49:11 +010083 /* enable/disable health checks */
84 ST_ADM_ACTION_DHLTH,
85 ST_ADM_ACTION_EHLTH,
86
87 /* force health check status */
88 ST_ADM_ACTION_HRUNN,
89 ST_ADM_ACTION_HNOLB,
90 ST_ADM_ACTION_HDOWN,
91
92 /* enable/disable agent checks */
93 ST_ADM_ACTION_DAGENT,
94 ST_ADM_ACTION_EAGENT,
95
96 /* force agent check status */
97 ST_ADM_ACTION_ARUNN,
98 ST_ADM_ACTION_ADOWN,
99
100 /* set admin state */
101 ST_ADM_ACTION_READY,
102 ST_ADM_ACTION_DRAIN,
103 ST_ADM_ACTION_MAINT,
104 ST_ADM_ACTION_SHUTDOWN,
105 /* these are the ancient actions, still available for compatibility */
106 ST_ADM_ACTION_DISABLE,
107 ST_ADM_ACTION_ENABLE,
108 ST_ADM_ACTION_STOP,
109 ST_ADM_ACTION_START,
Thierry Fournier31e64ca2016-03-23 16:25:49 +0100110};
111
Thierry Fournier31e64ca2016-03-23 16:25:49 +0100112
William Lallemand9ed62032016-11-21 17:49:11 +0100113/* data transmission states for the stats responses */
114enum {
115 STAT_ST_INIT = 0,
116 STAT_ST_HEAD,
117 STAT_ST_INFO,
118 STAT_ST_LIST,
119 STAT_ST_END,
120 STAT_ST_FIN,
Thierry Fournier31e64ca2016-03-23 16:25:49 +0100121};
122
William Lallemand9ed62032016-11-21 17:49:11 +0100123/* data transmission states for the stats responses inside a proxy */
124enum {
125 STAT_PX_ST_INIT = 0,
126 STAT_PX_ST_TH,
127 STAT_PX_ST_FE,
128 STAT_PX_ST_LI,
129 STAT_PX_ST_SV,
130 STAT_PX_ST_BE,
131 STAT_PX_ST_END,
132 STAT_PX_ST_FIN,
133};
134
Willy Tarreau8e62c052016-01-04 17:23:25 +0100135/* This level of detail is needed to let the stats consumer know how to
136 * aggregate them (eg: between processes or cluster nodes). Only a few
137 * combinations are actually in use, though the mechanism tends to make
138 * this easy to extend to future uses.
139 *
140 * Each reported stats element is typed based on 4 dimensions :
141 * - the field format : it indicates the validity range of the reported value,
142 * its limits and how to parse it. 6 types are currently supported :
143 * empty, signed 32-bit integer, unsigned 32-bit integer, signed 64-bit
144 * integer, unsigned 64-bit integer, string
145 *
146 * - the field origin : how was the value retrieved and what it depends on.
147 * 5 origins are currently defined : product (eg: haproxy version or
148 * release date), configuration (eg: a configured limit), key (identifier
149 * used to group values at a certain level), metric (a measure of something),
150 * status (something discrete which by definition cannot be averaged nor
151 * aggregated, such as "listening" versus "full").
152 *
153 * - the field nature : what does the data represent, implying how to aggregate
154 * it. At least 9 different natures are expected : counter (an increasing
155 * positive counter that may wrap when its type is overflown such as a byte
156 * counter), gauge (a measure at any instant that may vary, such as a
157 * concurrent connection count), a limit (eg: maximum acceptable concurrent
158 * connections), a minimum (eg: minimum free memory over a period), a
159 * maximum (eg: highest queue length over a period), an event rate (eg:
160 * incoming connections per second), a duration that is often aggregated by
161 * taking the max (eg: service uptime), an age that generally reports the
162 * last time an event appeared and which generally is aggregated by taking
163 * the most recent event hence the smallest one, the time which reports a
164 * discrete instant and cannot obviously be averaged either, a name which
165 * will generally be the name of an entity (such as a server name or cookie
166 * name), an output which is mostly used for various unsafe strings that are
167 * retrieved (eg: last check output, product name, description, etc), and an
168 * average which indicates that the value is relative and meant to be averaged
169 * between all nodes (eg: response time, throttling, etc).
170 *
171 * - the field scope : if the value is shared with other elements, which ones
172 * are expected to report the same value. The first scope with the least
173 * share is the process (most common one) where all data are only relevant
174 * to the process being consulted. The next one is the service, which is
175 * valid for all processes launched together (eg: shared SSL cache usage
176 * among processes). The next one is the system (such as the OS version)
177 * and which will report the same information for all instances running on
178 * the same node. The next one is the cluster, which indicates that the
179 * information are shared with other nodes being part of a same cluster.
180 * Stick-tables may carry such cluster-wide information. Larger scopes may
181 * be added in the future such as datacenter, country, continent, planet,
182 * galaxy, universe, etc.
183 *
184 * All these information will be encoded in the field as a bit field so that
185 * it is easy to pass composite values by simply ORing elements above, and
186 * to ease the definition of a few field types for the most common field
187 * combinations.
188 *
189 * The enums try to be arranged so that most likely characteristics are
190 * assigned the value zero, making it easier to add new fields.
191 *
192 * Field format has precedence over the other parts of the type. Please avoid
193 * declaring extra formats unless absolutely needed. The first one, FF_EMPTY,
194 * must absolutely have value zero so that it is what is returned after a
195 * memset(0). Furthermore, the producer is responsible for ensuring that when
196 * this format is set, all other bits of the type as well as the values in the
197 * union only contain zeroes. This makes it easier for the consumer to use the
198 * values as the expected type.
199 */
200
201enum field_format {
202 FF_EMPTY = 0x00000000,
203 FF_S32 = 0x00000001,
204 FF_U32 = 0x00000002,
205 FF_S64 = 0x00000003,
206 FF_U64 = 0x00000004,
207 FF_STR = 0x00000005,
Christopher Faulet88a0db22019-09-24 16:35:10 +0200208 FF_FLT = 0x00000006,
Willy Tarreau8e62c052016-01-04 17:23:25 +0100209 FF_MASK = 0x000000FF,
210};
211
212enum field_origin {
213 FO_METRIC = 0x00000000,
214 FO_STATUS = 0x00000100,
215 FO_KEY = 0x00000200,
216 FO_CONFIG = 0x00000300,
217 FO_PRODUCT = 0x00000400,
218 FO_MASK = 0x0000FF00,
219};
220
221enum field_nature {
222 FN_GAUGE = 0x00000000,
223 FN_LIMIT = 0x00010000,
224 FN_MIN = 0x00020000,
225 FN_MAX = 0x00030000,
226 FN_RATE = 0x00040000,
227 FN_COUNTER = 0x00050000,
228 FN_DURATION = 0x00060000,
229 FN_AGE = 0x00070000,
230 FN_TIME = 0x00080000,
231 FN_NAME = 0x00090000,
232 FN_OUTPUT = 0x000A0000,
233 FN_AVG = 0x000B0000,
234 FN_MASK = 0x00FF0000,
235};
236
237enum field_scope {
238 FS_PROCESS = 0x00000000,
239 FS_SERVICE = 0x01000000,
240 FS_SYSTEM = 0x02000000,
241 FS_CLUSTER = 0x03000000,
242 FS_MASK = 0xFF000000,
243};
244
Simon Horman6f6bb382017-01-04 09:37:26 +0100245/* Please consider updating stats_dump_fields_*(),
246 * stats_dump_.*_info_fields() and stats_*_schema()
247 * when modifying struct field or related enums.
Simon Horman05ee2132017-01-04 09:37:25 +0100248 */
Willy Tarreau8e62c052016-01-04 17:23:25 +0100249struct field {
250 uint32_t type;
251 union {
252 int32_t s32; /* FF_S32 */
253 uint32_t u32; /* FF_U32 */
254 int64_t s64; /* FF_S64 */
255 uint64_t u64; /* FF_U64 */
Christopher Faulet88a0db22019-09-24 16:35:10 +0200256 double flt; /* FF_FLT */
Willy Tarreau8e62c052016-01-04 17:23:25 +0100257 const char *str; /* FF_STR */
258 } u;
259};
260
Willy Tarreau0baac8c2016-11-22 16:36:53 +0100261/* Show Info fields for CLI output. For any field added here, please add the text
262 * representation in the info_field_names array below. Please only append at the end,
263 * before the INF_TOTAL_FIELDS entry, and never insert anything in the middle
264 * nor at the beginning.
265 */
266enum info_field {
267 INF_NAME,
268 INF_VERSION,
269 INF_RELEASE_DATE,
Yves Lafon95317282018-02-26 11:10:37 +0100270 INF_NBTHREAD,
Willy Tarreau0baac8c2016-11-22 16:36:53 +0100271 INF_NBPROC,
272 INF_PROCESS_NUM,
273 INF_PID,
274 INF_UPTIME,
275 INF_UPTIME_SEC,
276 INF_MEMMAX_MB,
277 INF_POOL_ALLOC_MB,
278 INF_POOL_USED_MB,
279 INF_POOL_FAILED,
280 INF_ULIMIT_N,
281 INF_MAXSOCK,
282 INF_MAXCONN,
283 INF_HARD_MAXCONN,
284 INF_CURR_CONN,
285 INF_CUM_CONN,
286 INF_CUM_REQ,
287 INF_MAX_SSL_CONNS,
288 INF_CURR_SSL_CONNS,
289 INF_CUM_SSL_CONNS,
290 INF_MAXPIPES,
291 INF_PIPES_USED,
292 INF_PIPES_FREE,
293 INF_CONN_RATE,
294 INF_CONN_RATE_LIMIT,
295 INF_MAX_CONN_RATE,
296 INF_SESS_RATE,
297 INF_SESS_RATE_LIMIT,
298 INF_MAX_SESS_RATE,
299 INF_SSL_RATE,
300 INF_SSL_RATE_LIMIT,
301 INF_MAX_SSL_RATE,
302 INF_SSL_FRONTEND_KEY_RATE,
303 INF_SSL_FRONTEND_MAX_KEY_RATE,
304 INF_SSL_FRONTEND_SESSION_REUSE_PCT,
305 INF_SSL_BACKEND_KEY_RATE,
306 INF_SSL_BACKEND_MAX_KEY_RATE,
307 INF_SSL_CACHE_LOOKUPS,
308 INF_SSL_CACHE_MISSES,
309 INF_COMPRESS_BPS_IN,
310 INF_COMPRESS_BPS_OUT,
311 INF_COMPRESS_BPS_RATE_LIM,
312 INF_ZLIB_MEM_USAGE,
313 INF_MAX_ZLIB_MEM_USAGE,
314 INF_TASKS,
315 INF_RUN_QUEUE,
316 INF_IDLE_PCT,
317 INF_NODE,
318 INF_DESCRIPTION,
Willy Tarreau00098ea2018-11-05 14:38:13 +0100319 INF_STOPPING,
320 INF_JOBS,
William Lallemanda7199262018-11-16 16:57:20 +0100321 INF_UNSTOPPABLE_JOBS,
Willy Tarreau00098ea2018-11-05 14:38:13 +0100322 INF_LISTENERS,
Willy Tarreau199ad242018-11-05 16:31:22 +0100323 INF_ACTIVE_PEERS,
Willy Tarreau2d372c22018-11-05 17:12:27 +0100324 INF_CONNECTED_PEERS,
Willy Tarreau13ef7732018-11-12 07:25:28 +0100325 INF_DROPPED_LOGS,
Willy Tarreaubeb859a2018-11-22 18:07:59 +0100326 INF_BUSY_POLLING,
Baptiste Assmann333939c2019-01-21 08:34:50 +0100327 INF_FAILED_RESOLUTIONS,
Willy Tarreau7cf0e452019-05-23 11:39:14 +0200328 INF_TOTAL_BYTES_OUT,
329 INF_BYTES_OUT_RATE,
Willy Tarreau9b013702019-10-24 18:18:02 +0200330 INF_DEBUG_COMMANDS_ISSUED,
Willy Tarreau0baac8c2016-11-22 16:36:53 +0100331
332 /* must always be the last one */
333 INF_TOTAL_FIELDS
334};
335
336
William Lallemand9ed62032016-11-21 17:49:11 +0100337/* Stats fields for CSV output. For any field added here, please add the text
338 * representation in the stat_field_names array below. Please only append at the end,
339 * before the ST_F_TOTAL_FIELDS entry, and never insert anything in the middle
340 * nor at the beginning.
Thierry Fournier31e64ca2016-03-23 16:25:49 +0100341 */
William Lallemand9ed62032016-11-21 17:49:11 +0100342enum stat_field {
343 ST_F_PXNAME,
344 ST_F_SVNAME,
345 ST_F_QCUR,
346 ST_F_QMAX,
347 ST_F_SCUR,
348 ST_F_SMAX,
349 ST_F_SLIM,
350 ST_F_STOT,
351 ST_F_BIN ,
352 ST_F_BOUT,
353 ST_F_DREQ,
354 ST_F_DRESP,
355 ST_F_EREQ,
356 ST_F_ECON,
357 ST_F_ERESP,
358 ST_F_WRETR,
359 ST_F_WREDIS,
360 ST_F_STATUS,
361 ST_F_WEIGHT,
362 ST_F_ACT,
363 ST_F_BCK,
364 ST_F_CHKFAIL,
365 ST_F_CHKDOWN,
366 ST_F_LASTCHG,
367 ST_F_DOWNTIME,
368 ST_F_QLIMIT,
369 ST_F_PID,
370 ST_F_IID,
371 ST_F_SID,
372 ST_F_THROTTLE,
373 ST_F_LBTOT,
374 ST_F_TRACKED,
375 ST_F_TYPE,
376 ST_F_RATE,
377 ST_F_RATE_LIM,
378 ST_F_RATE_MAX,
379 ST_F_CHECK_STATUS,
380 ST_F_CHECK_CODE,
381 ST_F_CHECK_DURATION,
382 ST_F_HRSP_1XX,
383 ST_F_HRSP_2XX,
384 ST_F_HRSP_3XX,
385 ST_F_HRSP_4XX,
386 ST_F_HRSP_5XX,
387 ST_F_HRSP_OTHER,
388 ST_F_HANAFAIL,
389 ST_F_REQ_RATE,
390 ST_F_REQ_RATE_MAX,
391 ST_F_REQ_TOT,
392 ST_F_CLI_ABRT,
393 ST_F_SRV_ABRT,
394 ST_F_COMP_IN,
395 ST_F_COMP_OUT,
396 ST_F_COMP_BYP,
397 ST_F_COMP_RSP,
398 ST_F_LASTSESS,
399 ST_F_LAST_CHK,
400 ST_F_LAST_AGT,
401 ST_F_QTIME,
402 ST_F_CTIME,
403 ST_F_RTIME,
404 ST_F_TTIME,
405 ST_F_AGENT_STATUS,
406 ST_F_AGENT_CODE,
407 ST_F_AGENT_DURATION,
408 ST_F_CHECK_DESC,
409 ST_F_AGENT_DESC,
410 ST_F_CHECK_RISE,
411 ST_F_CHECK_FALL,
412 ST_F_CHECK_HEALTH,
413 ST_F_AGENT_RISE,
414 ST_F_AGENT_FALL,
415 ST_F_AGENT_HEALTH,
416 ST_F_ADDR,
417 ST_F_COOKIE,
418 ST_F_MODE,
419 ST_F_ALGO,
420 ST_F_CONN_RATE,
421 ST_F_CONN_RATE_MAX,
422 ST_F_CONN_TOT,
423 ST_F_INTERCEPTED,
424 ST_F_DCON,
425 ST_F_DSES,
Tim Duesterhus3fd19732018-05-27 20:35:08 +0200426 ST_F_WREW,
Willy Tarreauf1573842018-12-14 11:35:36 +0100427 ST_F_CONNECT,
428 ST_F_REUSE,
Willy Tarreaua1214a52018-12-14 14:00:25 +0100429 ST_F_CACHE_LOOKUPS,
430 ST_F_CACHE_HITS,
Willy Tarreauf21d17b2019-09-08 09:24:56 +0200431 ST_F_SRV_ICUR,
432 ST_F_SRV_ILIM,
Christopher Faulet0d1c2a62019-11-08 14:59:51 +0100433 ST_F_QT_MAX,
434 ST_F_CT_MAX,
435 ST_F_RT_MAX,
436 ST_F_TT_MAX,
William Lallemand1e08cd82016-10-13 17:57:55 +0200437
William Lallemand9ed62032016-11-21 17:49:11 +0100438 /* must always be the last one */
439 ST_F_TOTAL_FIELDS
William Lallemand1e08cd82016-10-13 17:57:55 +0200440};
441
William Lallemand74c24fb2016-11-21 17:18:36 +0100442
William Lallemand9ed62032016-11-21 17:49:11 +0100443#endif /* _TYPES_STATS_H */