blob: dee7aa4a0ea1045fc7742abc5d0526db2457664d [file] [log] [blame]
Willy Tarreau91861262007-10-17 17:06:05 +02001/*
Willy Tarreaueb472682010-05-28 18:46:57 +02002 * Functions dedicated to statistics output and the stats socket
Willy Tarreau91861262007-10-17 17:06:05 +02003 *
Willy Tarreaueb472682010-05-28 18:46:57 +02004 * Copyright 2000-2010 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02005 * Copyright 2007-2009 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreau91861262007-10-17 17:06:05 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
14#include <ctype.h>
15#include <errno.h>
16#include <fcntl.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020020#include <pwd.h>
21#include <grp.h>
Willy Tarreau91861262007-10-17 17:06:05 +020022
23#include <sys/socket.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26
Willy Tarreau10522fd2008-07-09 20:12:41 +020027#include <common/cfgparse.h>
Willy Tarreau91861262007-10-17 17:06:05 +020028#include <common/compat.h>
29#include <common/config.h>
30#include <common/debug.h>
31#include <common/memory.h>
32#include <common/mini-clist.h>
33#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020034#include <common/ticks.h>
Willy Tarreau91861262007-10-17 17:06:05 +020035#include <common/time.h>
36#include <common/uri_auth.h>
37#include <common/version.h>
38
Willy Tarreau91861262007-10-17 17:06:05 +020039#include <types/global.h>
Willy Tarreau91861262007-10-17 17:06:05 +020040
41#include <proto/backend.h>
42#include <proto/buffers.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020043#include <proto/checks.h>
Willy Tarreau91861262007-10-17 17:06:05 +020044#include <proto/dumpstats.h>
45#include <proto/fd.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010046#include <proto/freq_ctr.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020047#include <proto/log.h>
Willy Tarreaua206fa92009-01-25 14:02:00 +010048#include <proto/pipe.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020049#include <proto/proto_uxst.h>
Willy Tarreau89a63132009-08-16 17:41:45 +020050#include <proto/proxy.h>
Willy Tarreau91861262007-10-17 17:06:05 +020051#include <proto/session.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020052#include <proto/server.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010053#include <proto/stream_interface.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020054#include <proto/stream_sock.h>
Willy Tarreau4726f532009-03-07 17:25:21 +010055#include <proto/task.h>
Willy Tarreau91861262007-10-17 17:06:05 +020056
Willy Tarreau5ca791d2009-08-16 19:06:42 +020057const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +020058 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +020059 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +020060 " help : this message\n"
61 " prompt : toggle interactive mode with prompt\n"
62 " quit : disconnect\n"
63 " show info : report information about the running process\n"
64 " show stat : report counters for each proxy and server\n"
65 " show errors : report last request and response errors for each proxy\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +010066 " show sess [id] : report the list of current sessions or dump this session\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +020067 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +020068 " set weight : change a server's weight\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +010069 " set timeout : change a timeout setting\n"
Cyril Bontécd19e512010-01-31 22:34:03 +010070 " disable server : set a server in maintenance mode\n"
71 " enable server : re-enable a server that was previously in maintenance mode\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020072 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +020073
Willy Tarreau6162db22009-10-10 17:13:00 +020074const char stats_permission_denied_msg[] =
75 "Permission denied\n"
76 "";
77
Willy Tarreaueb472682010-05-28 18:46:57 +020078/* This function is called from the protocol layer accept() in order to instanciate
79 * a new stats socket. It returns a positive value upon success, 0 if the connection
80 * needs to be closed and ignored, or a negative value upon critical failure.
81 */
82int stats_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
83{
84 struct proxy *p = l->frontend; /* attached frontend */
85 struct session *s;
86 struct task *t;
87
88 if ((s = pool_alloc2(pool2_session)) == NULL) {
89 Alert("out of memory in stats_accept().\n");
90 goto out_close;
91 }
92
93 LIST_ADDQ(&sessions, &s->list);
94 LIST_INIT(&s->back_refs);
95
96 s->flags = 0;
97 s->term_trace = 0;
98 s->cli_addr = *addr;
99
100 if ((t = task_new()) == NULL) {
101 Alert("out of memory in stats_accept().\n");
102 goto out_free_session;
103 }
104
105 t->process = l->handler;
106 t->context = s;
107 t->nice = l->nice;
108
109 s->task = t;
110 s->listener = l;
111 s->fe = s->be = p;
112
113 s->req = s->rep = NULL; /* will be allocated later */
114
115 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
116 s->si[0].err_type = SI_ET_NONE;
117 s->si[0].err_loc = NULL;
118 s->si[0].owner = t;
119 s->si[0].update = stream_sock_data_finish;
120 s->si[0].shutr = stream_sock_shutr;
121 s->si[0].shutw = stream_sock_shutw;
122 s->si[0].chk_rcv = stream_sock_chk_rcv;
123 s->si[0].chk_snd = stream_sock_chk_snd;
124 s->si[0].connect = NULL;
125 s->si[0].iohandler = NULL;
126 s->si[0].fd = cfd;
127 s->si[0].flags = SI_FL_NONE;
128 if (s->fe->options2 & PR_O2_INDEPSTR)
129 s->si[0].flags |= SI_FL_INDEP_STR;
130 s->si[0].exp = TICK_ETERNITY;
131
132 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
133 s->si[1].err_type = SI_ET_NONE;
134 s->si[1].err_loc = NULL;
135 s->si[1].owner = t;
136 s->si[1].exp = TICK_ETERNITY;
137 s->si[1].fd = -1; /* just to help with debugging */
138 s->si[1].flags = SI_FL_NONE;
139 if (s->be->options2 & PR_O2_INDEPSTR)
140 s->si[1].flags |= SI_FL_INDEP_STR;
141
142 stream_int_register_handler(&s->si[1], stats_io_handler);
143 s->si[1].private = s;
144 s->si[1].st1 = 0;
145 s->si[1].st0 = STAT_CLI_INIT;
146
147 s->srv = s->prev_srv = s->srv_conn = NULL;
148 s->pend_pos = NULL;
149
150 s->store_count = 0;
151
152 memset(&s->logs, 0, sizeof(s->logs));
153 memset(&s->txn, 0, sizeof(s->txn));
154
155 s->logs.accept_date = date; /* user-visible date for logging */
156 s->logs.tv_accept = now; /* corrected date for internal use */
157
158 s->data_state = DATA_ST_INIT;
159 s->data_source = DATA_SRC_NONE;
160 s->uniq_id = totalconn;
161 proxy_inc_fe_ctr(l, p); /* note: cum_beconn will be increased once assigned */
162
163 if (fcntl(cfd, F_SETFL, O_NONBLOCK) == -1) {
164 Alert("accept(): cannot set the socket in non blocking mode. Giving up.\n");
165 goto out_free_task;
166 }
167
168 if ((s->req = pool_alloc2(pool2_buffer)) == NULL)
169 goto out_free_task;
170
171 s->req->size = global.tune.bufsize;
172 buffer_init(s->req);
173 s->req->prod = &s->si[0];
174 s->req->cons = &s->si[1];
175 s->si[0].ib = s->si[1].ob = s->req;
176 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
177 s->req->flags |= BF_READ_DONTWAIT; /* we plan to read small requests */
178
179 s->req->analysers = l->analysers;
180
181 s->req->wto = TICK_ETERNITY;
Willy Tarreaueb472682010-05-28 18:46:57 +0200182 s->req->rto = TICK_ETERNITY;
183
184 if ((s->rep = pool_alloc2(pool2_buffer)) == NULL)
185 goto out_free_req;
186
187 s->rep->size = global.tune.bufsize;
188 buffer_init(s->rep);
189
190 s->rep->prod = &s->si[1];
191 s->rep->cons = &s->si[0];
192 s->si[0].ob = s->si[1].ib = s->rep;
193
194 s->rep->rto = TICK_ETERNITY;
Willy Tarreaueb472682010-05-28 18:46:57 +0200195 s->rep->wto = TICK_ETERNITY;
196
197 s->req->rex = TICK_ETERNITY;
198 s->req->wex = TICK_ETERNITY;
199 s->req->analyse_exp = TICK_ETERNITY;
200 s->rep->rex = TICK_ETERNITY;
201 s->rep->wex = TICK_ETERNITY;
202 s->rep->analyse_exp = TICK_ETERNITY;
203
204 t->expire = TICK_ETERNITY;
205
206 if (l->timeout) {
207 s->req->rto = *l->timeout;
208 s->rep->wto = *l->timeout;
209 }
210
211 fd_insert(cfd);
212 fdtab[cfd].owner = &s->si[0];
213 fdtab[cfd].state = FD_STREADY;
214 fdtab[cfd].cb[DIR_RD].f = l->proto->read;
215 fdtab[cfd].cb[DIR_RD].b = s->req;
216 fdtab[cfd].cb[DIR_WR].f = l->proto->write;
217 fdtab[cfd].cb[DIR_WR].b = s->rep;
218 fdinfo[cfd].peeraddr = (struct sockaddr *)&s->cli_addr;
219 fdinfo[cfd].peerlen = sizeof(s->cli_addr);
220
221 EV_FD_SET(cfd, DIR_RD);
222
223 task_wakeup(t, TASK_WOKEN_INIT);
224 return 1;
225
226 out_free_req:
227 pool_free2(pool2_buffer, s->req);
228 out_free_task:
229 task_free(t);
230 out_free_session:
231 LIST_DEL(&s->list);
232 pool_free2(pool2_session, s);
233 out_close:
234 return -1;
235}
236
Willy Tarreaufbee7132007-10-18 13:53:22 +0200237/* This function parses a "stats" statement in the "global" section. It returns
238 * -1 if there is any error, otherwise zero. If it returns -1, it may write an
239 * error message into ther <err> buffer, for at most <errlen> bytes, trailing
240 * zero included. The trailing '\n' must not be written. The function must be
241 * called with <args> pointing to the first word after "stats".
242 */
Willy Tarreau10522fd2008-07-09 20:12:41 +0200243static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
244 struct proxy *defpx, char *err, int errlen)
Willy Tarreaufbee7132007-10-18 13:53:22 +0200245{
Willy Tarreau10522fd2008-07-09 20:12:41 +0200246 args++;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200247 if (!strcmp(args[0], "socket")) {
248 struct sockaddr_un su;
249 int cur_arg;
250
251 if (*args[1] == 0) {
252 snprintf(err, errlen, "'stats socket' in global section expects a path to a UNIX socket");
253 return -1;
254 }
255
256 if (global.stats_sock.state != LI_NEW) {
257 snprintf(err, errlen, "'stats socket' already specified in global section");
258 return -1;
259 }
260
261 su.sun_family = AF_UNIX;
262 strncpy(su.sun_path, args[1], sizeof(su.sun_path));
263 su.sun_path[sizeof(su.sun_path) - 1] = 0;
264 memcpy(&global.stats_sock.addr, &su, sizeof(su)); // guaranteed to fit
265
Willy Tarreau89a63132009-08-16 17:41:45 +0200266 if (!global.stats_fe) {
267 if ((global.stats_fe = (struct proxy *)calloc(1, sizeof(struct proxy))) == NULL) {
268 snprintf(err, errlen, "out of memory");
269 return -1;
270 }
271
272 LIST_INIT(&global.stats_fe->pendconns);
273 LIST_INIT(&global.stats_fe->acl);
274 LIST_INIT(&global.stats_fe->block_cond);
275 LIST_INIT(&global.stats_fe->redirect_rules);
276 LIST_INIT(&global.stats_fe->mon_fail_cond);
277 LIST_INIT(&global.stats_fe->switching_rules);
278 LIST_INIT(&global.stats_fe->tcp_req.inspect_rules);
279
280 /* Timeouts are defined as -1, so we cannot use the zeroed area
281 * as a default value.
282 */
283 proxy_reset_timeouts(global.stats_fe);
284
285 global.stats_fe->last_change = now.tv_sec;
286 global.stats_fe->id = strdup("GLOBAL");
287 global.stats_fe->cap = PR_CAP_FE;
Willy Tarreaueb472682010-05-28 18:46:57 +0200288 global.stats_fe->maxconn = global.stats_sock.maxconn;
Willy Tarreau89a63132009-08-16 17:41:45 +0200289 }
290
Willy Tarreaufbee7132007-10-18 13:53:22 +0200291 global.stats_sock.state = LI_INIT;
Willy Tarreau6fb42e02007-10-28 17:02:33 +0100292 global.stats_sock.options = LI_O_NONE;
Willy Tarreaueb472682010-05-28 18:46:57 +0200293 global.stats_sock.accept = stats_accept;
Willy Tarreau104eb362009-08-16 18:51:29 +0200294 global.stats_sock.handler = process_session;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200295 global.stats_sock.analysers = 0;
Willy Tarreau2c9f5b12009-08-16 19:12:36 +0200296 global.stats_sock.nice = -64; /* we want to boost priority for local stats */
Willy Tarreaueb472682010-05-28 18:46:57 +0200297 global.stats_sock.frontend = global.stats_fe;
Willy Tarreau6162db22009-10-10 17:13:00 +0200298 global.stats_sock.perm.ux.level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau89a63132009-08-16 17:41:45 +0200299
300 global.stats_fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
301 global.stats_sock.timeout = &global.stats_fe->timeout.client;
302
303 global.stats_sock.next = global.stats_fe->listen;
304 global.stats_fe->listen = &global.stats_sock;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200305
306 cur_arg = 2;
307 while (*args[cur_arg]) {
308 if (!strcmp(args[cur_arg], "uid")) {
309 global.stats_sock.perm.ux.uid = atol(args[cur_arg + 1]);
310 cur_arg += 2;
311 }
312 else if (!strcmp(args[cur_arg], "gid")) {
313 global.stats_sock.perm.ux.gid = atol(args[cur_arg + 1]);
314 cur_arg += 2;
315 }
316 else if (!strcmp(args[cur_arg], "mode")) {
317 global.stats_sock.perm.ux.mode = strtol(args[cur_arg + 1], NULL, 8);
318 cur_arg += 2;
319 }
320 else if (!strcmp(args[cur_arg], "user")) {
321 struct passwd *user;
322 user = getpwnam(args[cur_arg + 1]);
323 if (!user) {
324 snprintf(err, errlen, "unknown user '%s' in 'global' section ('stats user')",
325 args[cur_arg + 1]);
326 return -1;
327 }
328 global.stats_sock.perm.ux.uid = user->pw_uid;
329 cur_arg += 2;
330 }
331 else if (!strcmp(args[cur_arg], "group")) {
332 struct group *group;
333 group = getgrnam(args[cur_arg + 1]);
334 if (!group) {
335 snprintf(err, errlen, "unknown group '%s' in 'global' section ('stats group')",
336 args[cur_arg + 1]);
337 return -1;
338 }
339 global.stats_sock.perm.ux.gid = group->gr_gid;
340 cur_arg += 2;
341 }
Willy Tarreau6162db22009-10-10 17:13:00 +0200342 else if (!strcmp(args[cur_arg], "level")) {
343 if (!strcmp(args[cur_arg+1], "user"))
344 global.stats_sock.perm.ux.level = ACCESS_LVL_USER;
345 else if (!strcmp(args[cur_arg+1], "operator"))
346 global.stats_sock.perm.ux.level = ACCESS_LVL_OPER;
347 else if (!strcmp(args[cur_arg+1], "admin"))
348 global.stats_sock.perm.ux.level = ACCESS_LVL_ADMIN;
349 else {
350 snprintf(err, errlen, "'stats socket level' only supports 'user', 'operator', and 'admin'");
351 return -1;
352 }
353 cur_arg += 2;
354 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200355 else {
Willy Tarreau6162db22009-10-10 17:13:00 +0200356 snprintf(err, errlen, "'stats socket' only supports 'user', 'uid', 'group', 'gid', 'level', and 'mode'");
Willy Tarreaufbee7132007-10-18 13:53:22 +0200357 return -1;
358 }
359 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100360
Willy Tarreaufbee7132007-10-18 13:53:22 +0200361 uxst_add_listener(&global.stats_sock);
362 global.maxsock++;
363 }
364 else if (!strcmp(args[0], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100365 unsigned timeout;
366 const char *res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
367
368 if (res) {
369 snprintf(err, errlen, "unexpected character '%c' in 'stats timeout' in 'global' section", *res);
370 return -1;
371 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200372
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100373 if (!timeout) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200374 snprintf(err, errlen, "a positive value is expected for 'stats timeout' in 'global section'");
375 return -1;
376 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200377 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200378 }
379 else if (!strcmp(args[0], "maxconn")) {
380 int maxconn = atol(args[1]);
381
382 if (maxconn <= 0) {
383 snprintf(err, errlen, "a positive value is expected for 'stats maxconn' in 'global section'");
384 return -1;
385 }
386 global.maxsock -= global.stats_sock.maxconn;
387 global.stats_sock.maxconn = maxconn;
388 global.maxsock += global.stats_sock.maxconn;
Willy Tarreaueb472682010-05-28 18:46:57 +0200389 if (global.stats_fe)
390 global.stats_fe->maxconn = global.stats_sock.maxconn;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200391 }
392 else {
393 snprintf(err, errlen, "'stats' only supports 'socket', 'maxconn' and 'timeout' in 'global' section");
394 return -1;
395 }
396 return 0;
397}
398
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200399int print_csv_header(struct chunk *msg)
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100400{
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200401 return chunk_printf(msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100402 "# pxname,svname,"
403 "qcur,qmax,"
404 "scur,smax,slim,stot,"
405 "bin,bout,"
406 "dreq,dresp,"
407 "ereq,econ,eresp,"
408 "wretr,wredis,"
409 "status,weight,act,bck,"
410 "chkfail,chkdown,lastchg,downtime,qlimit,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +0200411 "pid,iid,sid,throttle,lbtot,tracked,type,"
412 "rate,rate_lim,rate_max,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200413 "check_status,check_code,check_duration,"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100414 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
Willy Tarreauae526782010-03-04 20:34:23 +0100415 "req_rate,req_rate_max,req_tot,"
416 "cli_abrt,srv_abrt,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100417 "\n");
418}
419
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200420/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200421 * called from an applet running in a stream interface. The function returns 1
422 * if the request was understood, otherwise zero. It sets si->st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200423 * designating the function which will have to process the request, which can
424 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200425 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200426int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200427{
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200428 struct session *s = si->private;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200429 char *args[MAX_STATS_ARGS + 1];
430 int arg;
431
432 while (isspace((unsigned char)*line))
433 line++;
434
435 arg = 0;
436 args[arg] = line;
437
438 while (*line && arg < MAX_STATS_ARGS) {
439 if (isspace((unsigned char)*line)) {
440 *line++ = '\0';
441
442 while (isspace((unsigned char)*line))
443 line++;
444
445 args[++arg] = line;
446 continue;
447 }
448
449 line++;
450 }
451
452 while (++arg <= MAX_STATS_ARGS)
453 args[arg] = line;
454
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200455 s->data_ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200456 if (strcmp(args[0], "show") == 0) {
457 if (strcmp(args[1], "stat") == 0) {
458 if (*args[2] && *args[3] && *args[4]) {
459 s->data_ctx.stats.flags |= STAT_BOUND;
460 s->data_ctx.stats.iid = atoi(args[2]);
461 s->data_ctx.stats.type = atoi(args[3]);
462 s->data_ctx.stats.sid = atoi(args[4]);
463 }
464
465 s->data_ctx.stats.flags |= STAT_SHOW_STAT;
466 s->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200467 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200468 si->st0 = STAT_CLI_O_INFO; // stats_dump_raw_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200469 }
470 else if (strcmp(args[1], "info") == 0) {
471 s->data_ctx.stats.flags |= STAT_SHOW_INFO;
472 s->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200473 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200474 si->st0 = STAT_CLI_O_INFO; // stats_dump_raw_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200475 }
476 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200477 s->data_state = DATA_ST_INIT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200478 if (s->listener->perm.ux.level < ACCESS_LVL_OPER) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200479 s->data_ctx.cli.msg = stats_permission_denied_msg;
480 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200481 return 1;
482 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100483 if (*args[2])
484 s->data_ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
485 else
486 s->data_ctx.sess.target = NULL;
487 s->data_ctx.sess.section = 0; /* start with session status */
488 s->data_ctx.sess.pos = 0;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200489 si->st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200490 }
491 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau6162db22009-10-10 17:13:00 +0200492 if (s->listener->perm.ux.level < ACCESS_LVL_OPER) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200493 s->data_ctx.cli.msg = stats_permission_denied_msg;
494 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200495 return 1;
496 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200497 if (*args[2])
498 s->data_ctx.errors.iid = atoi(args[2]);
499 else
500 s->data_ctx.errors.iid = -1;
501 s->data_ctx.errors.px = NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200502 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200503 si->st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200504 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200505 else { /* neither "stat" nor "info" nor "sess" nor "errors"*/
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200506 return 0;
507 }
508 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200509 else if (strcmp(args[0], "clear") == 0) {
510 if (strcmp(args[1], "counters") == 0) {
511 struct proxy *px;
512 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200513 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200514 int clrall = 0;
515
516 if (strcmp(args[2], "all") == 0)
517 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200518
Willy Tarreau6162db22009-10-10 17:13:00 +0200519 /* check permissions */
520 if (s->listener->perm.ux.level < ACCESS_LVL_OPER ||
521 (clrall && s->listener->perm.ux.level < ACCESS_LVL_ADMIN)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200522 s->data_ctx.cli.msg = stats_permission_denied_msg;
523 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200524 return 1;
525 }
526
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200527 for (px = proxy; px; px = px->next) {
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200528 if (clrall)
529 memset(&px->counters, 0, sizeof(px->counters));
530 else {
531 px->counters.feconn_max = 0;
532 px->counters.beconn_max = 0;
Willy Tarreaud9b587f2010-02-26 10:05:55 +0100533 px->counters.fe_rps_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200534 px->counters.fe_sps_max = 0;
535 px->counters.be_sps_max = 0;
536 px->counters.nbpend_max = 0;
537 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200538
539 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200540 if (clrall)
541 memset(&sv->counters, 0, sizeof(sv->counters));
542 else {
543 sv->counters.cur_sess_max = 0;
544 sv->counters.nbpend_max = 0;
545 sv->counters.sps_max = 0;
546 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200547
548 for (li = px->listen; li; li = li->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200549 if (li->counters) {
550 if (clrall)
551 memset(li->counters, 0, sizeof(*li->counters));
552 else
553 li->counters->conn_max = 0;
554 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200555 }
556
557 return 1;
558 }
559 else {
560 return 0;
561 }
562 }
Willy Tarreau38338fa2009-10-10 18:37:29 +0200563 else if (strcmp(args[0], "get") == 0) {
564 if (strcmp(args[1], "weight") == 0) {
565 struct proxy *px;
566 struct server *sv;
567
568 /* split "backend/server" and make <line> point to server */
569 for (line = args[2]; *line; line++)
570 if (*line == '/') {
571 *line++ = '\0';
572 break;
573 }
574
575 if (!*line) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200576 s->data_ctx.cli.msg = "Require 'backend/server'.\n";
577 si->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +0200578 return 1;
579 }
580
581 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200582 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
583 si->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +0200584 return 1;
585 }
586
587 /* return server's effective weight at the moment */
588 snprintf(trash, sizeof(trash), "%d (initial %d)\n", sv->uweight, sv->iweight);
589 buffer_feed(si->ib, trash);
590 return 1;
591 }
592 else { /* not "get weight" */
593 return 0;
594 }
595 }
Willy Tarreau4483d432009-10-10 19:30:08 +0200596 else if (strcmp(args[0], "set") == 0) {
597 if (strcmp(args[1], "weight") == 0) {
598 struct proxy *px;
599 struct server *sv;
600 int w;
601
602 if (s->listener->perm.ux.level < ACCESS_LVL_ADMIN) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200603 s->data_ctx.cli.msg = stats_permission_denied_msg;
604 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200605 return 1;
606 }
607
608 /* split "backend/server" and make <line> point to server */
609 for (line = args[2]; *line; line++)
610 if (*line == '/') {
611 *line++ = '\0';
612 break;
613 }
614
615 if (!*line || !*args[3]) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200616 s->data_ctx.cli.msg = "Require 'backend/server' and 'weight' or 'weight%'.\n";
617 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200618 return 1;
619 }
620
621 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200622 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
623 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200624 return 1;
625 }
626
627 /* if the weight is terminated with '%', it is set relative to
628 * the initial weight, otherwise it is absolute.
629 */
630 w = atoi(args[3]);
631 if (strchr(args[3], '%') != NULL) {
632 if (w < 0 || w > 100) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200633 s->data_ctx.cli.msg = "Relative weight can only be set between 0 and 100% inclusive.\n";
634 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200635 return 1;
636 }
637 w = sv->iweight * w / 100;
638 }
639 else {
640 if (w < 0 || w > 256) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200641 s->data_ctx.cli.msg = "Absolute weight can only be between 0 and 256 inclusive.\n";
642 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200643 return 1;
644 }
645 }
646
647 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200648 s->data_ctx.cli.msg = "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
649 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200650 return 1;
651 }
652
653 sv->uweight = w;
654
655 if (px->lbprm.algo & BE_LB_PROP_DYN) {
656 /* we must take care of not pushing the server to full throttle during slow starts */
657 if ((sv->state & SRV_WARMINGUP) && (px->lbprm.algo & BE_LB_PROP_DYN))
658 sv->eweight = (BE_WEIGHT_SCALE * (now.tv_sec - sv->last_change) + sv->slowstart - 1) / sv->slowstart;
659 else
660 sv->eweight = BE_WEIGHT_SCALE;
661 sv->eweight *= sv->uweight;
662 } else {
663 sv->eweight = sv->uweight;
664 }
665
666 /* static LB algorithms are a bit harder to update */
667 if (px->lbprm.update_server_eweight)
668 px->lbprm.update_server_eweight(sv);
669 else if (sv->eweight)
670 px->lbprm.set_server_status_up(sv);
671 else
672 px->lbprm.set_server_status_down(sv);
673
674 return 1;
675 }
Willy Tarreau7aabd112010-01-26 10:59:06 +0100676 else if (strcmp(args[1], "timeout") == 0) {
677 if (strcmp(args[2], "cli") == 0) {
678 unsigned timeout;
679 const char *res;
680
681 if (!*args[3]) {
682 s->data_ctx.cli.msg = "Expects an integer value.\n";
683 si->st0 = STAT_CLI_PRINT;
684 return 1;
685 }
686
687 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
688 if (res || timeout < 1) {
689 s->data_ctx.cli.msg = "Invalid timeout value.\n";
690 si->st0 = STAT_CLI_PRINT;
691 return 1;
692 }
693
694 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
695 return 1;
696 }
697 else {
698 s->data_ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
699 si->st0 = STAT_CLI_PRINT;
700 return 1;
701 }
702 }
703 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +0200704 return 0;
705 }
706 }
Cyril Bontécd19e512010-01-31 22:34:03 +0100707 else if (strcmp(args[0], "enable") == 0) {
708 if (strcmp(args[1], "server") == 0) {
709 struct proxy *px;
710 struct server *sv;
711
712 if (s->listener->perm.ux.level < ACCESS_LVL_ADMIN) {
713 s->data_ctx.cli.msg = stats_permission_denied_msg;
714 si->st0 = STAT_CLI_PRINT;
715 return 1;
716 }
717
718 /* split "backend/server" and make <line> point to server */
719 for (line = args[2]; *line; line++)
720 if (*line == '/') {
721 *line++ = '\0';
722 break;
723 }
724
725 if (!*line || !*args[2]) {
726 s->data_ctx.cli.msg = "Require 'backend/server'.\n";
727 si->st0 = STAT_CLI_PRINT;
728 return 1;
729 }
730
731 if (!get_backend_server(args[2], line, &px, &sv)) {
732 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
733 si->st0 = STAT_CLI_PRINT;
734 return 1;
735 }
736
737 if (sv->state & SRV_MAINTAIN) {
738 /* The server is really in maintenance, we can change the server state */
739 if (sv->tracked) {
740 /* If this server tracks the status of another one,
741 * we must restore the good status.
742 */
743 if (sv->tracked->state & SRV_RUNNING) {
744 set_server_up(sv);
745 } else {
746 sv->state &= ~SRV_MAINTAIN;
747 set_server_down(sv);
748 }
749 } else {
750 set_server_up(sv);
751 }
752 }
753
754 return 1;
755 }
756 else { /* unknown "enable" parameter */
757 return 0;
758 }
759 }
760 else if (strcmp(args[0], "disable") == 0) {
761 if (strcmp(args[1], "server") == 0) {
762 struct proxy *px;
763 struct server *sv;
764
765 if (s->listener->perm.ux.level < ACCESS_LVL_ADMIN) {
766 s->data_ctx.cli.msg = stats_permission_denied_msg;
767 si->st0 = STAT_CLI_PRINT;
768 return 1;
769 }
770
771 /* split "backend/server" and make <line> point to server */
772 for (line = args[2]; *line; line++)
773 if (*line == '/') {
774 *line++ = '\0';
775 break;
776 }
777
778 if (!*line || !*args[2]) {
779 s->data_ctx.cli.msg = "Require 'backend/server'.\n";
780 si->st0 = STAT_CLI_PRINT;
781 return 1;
782 }
783
784 if (!get_backend_server(args[2], line, &px, &sv)) {
785 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
786 si->st0 = STAT_CLI_PRINT;
787 return 1;
788 }
789
790 if (! (sv->state & SRV_MAINTAIN)) {
791 /* Not already in maintenance, we can change the server state */
792 sv->state |= SRV_MAINTAIN;
793 set_server_down(sv);
794 }
795
796 return 1;
797 }
798 else { /* unknown "disable" parameter */
799 return 0;
800 }
801 }
802 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200803 return 0;
804 }
805 return 1;
806}
807
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200808/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200809 * used to processes I/O from/to the stats unix socket. The system relies on a
810 * state machine handling requests and various responses. We read a request,
811 * then we process it and send the response, and we possibly display a prompt.
812 * Then we can read again. The state is stored in si->st0 and is one of the
813 * STAT_CLI_* constants. si->st1 is used to indicate whether prompt is enabled
814 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200815 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200816void stats_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200817{
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200818 struct session *s = si->private;
819 struct buffer *req = si->ob;
820 struct buffer *res = si->ib;
821 int reql;
822 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200823
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200824 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
825 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200826
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200827 while (1) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200828 if (si->st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200829 /* Stats output not initialized yet */
830 memset(&s->data_ctx.stats, 0, sizeof(s->data_ctx.stats));
831 s->data_source = DATA_SRC_STATS;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200832 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200833 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200834 else if (si->st0 == STAT_CLI_END) {
835 /* Let's close for real now. We just close the request
836 * side, the conditions below will complete if needed.
837 */
838 si->shutw(si);
839 break;
840 }
841 else if (si->st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +0200842 /* ensure we have some output room left in the event we
843 * would want to return some info right after parsing.
844 */
845 if (buffer_almost_full(si->ib))
846 break;
847
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200848 reql = buffer_si_peekline(si->ob, trash, sizeof(trash));
849 if (reql <= 0) { /* closed or EOL not found */
850 if (reql == 0)
851 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200852 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200853 continue;
854 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200855
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200856 /* seek for a possible semi-colon. If we find one, we
857 * replace it with an LF and skip only this part.
858 */
859 for (len = 0; len < reql; len++)
860 if (trash[len] == ';') {
861 trash[len] = '\n';
862 reql = len + 1;
863 break;
864 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200865
Willy Tarreau816fc222009-10-04 07:36:58 +0200866 /* now it is time to check that we have a full line,
867 * remove the trailing \n and possibly \r, then cut the
868 * line.
869 */
870 len = reql - 1;
871 if (trash[len] != '\n') {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200872 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200873 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200874 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200875
Willy Tarreau816fc222009-10-04 07:36:58 +0200876 if (len && trash[len-1] == '\r')
877 len--;
878
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200879 trash[len] = '\0';
880
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200881 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200882 if (len) {
883 if (strcmp(trash, "quit") == 0) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200884 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200885 continue;
886 }
887 else if (strcmp(trash, "prompt") == 0)
888 si->st1 = !si->st1;
889 else if (strcmp(trash, "help") == 0 ||
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200890 !stats_sock_parse_request(si, trash)) {
891 s->data_ctx.cli.msg = stats_sock_usage_msg;
892 si->st0 = STAT_CLI_PRINT;
893 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200894 /* NB: stats_sock_parse_request() may have put
895 * another STAT_CLI_O_* into si->st0.
896 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200897 }
898 else if (!si->st1) {
899 /* if prompt is disabled, print help on empty lines,
900 * so that the user at least knows how to enable
901 * prompt and find help.
902 */
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200903 s->data_ctx.cli.msg = stats_sock_usage_msg;
904 si->st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200905 }
906
907 /* re-adjust req buffer */
908 buffer_skip(si->ob, reql);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200909 req->flags |= BF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200910 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200911 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200912 if (res->flags & (BF_SHUTR_NOW|BF_SHUTR)) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200913 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200914 continue;
915 }
916
917 switch (si->st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200918 case STAT_CLI_PRINT:
919 if (buffer_feed(si->ib, s->data_ctx.cli.msg) < 0)
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200920 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200921 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200922 case STAT_CLI_O_INFO:
Willy Tarreau24955a12009-10-04 11:54:04 +0200923 if (stats_dump_raw_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200924 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200925 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200926 case STAT_CLI_O_SESS:
Willy Tarreau7e72a8f2009-10-03 23:55:14 +0200927 if (stats_dump_sess_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200928 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200929 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200930 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau61b34732009-10-03 23:49:35 +0200931 if (stats_dump_errors_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200932 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200933 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200934 default: /* abnormal state */
935 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200936 break;
937 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200938
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200939 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
940 if (si->st0 == STAT_CLI_PROMPT) {
Willy Tarreau9bcc91e2009-10-10 18:01:44 +0200941 if (buffer_feed(si->ib, si->st1 ? "\n> " : "\n") < 0)
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200942 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200943 }
944
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200945 /* If the output functions are still there, it means they require more room. */
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200946 if (si->st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200947 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200948
949 /* Now we close the output if one of the writers did so,
950 * or if we're not in interactive mode and the request
951 * buffer is empty. This still allows pipelined requests
952 * to be sent in non-interactive mode.
953 */
954 if ((res->flags & (BF_SHUTW|BF_SHUTW_NOW)) || (!si->st1 && !req->send_max)) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200955 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200956 continue;
957 }
958
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200959 /* switch state back to GETREQ to read next requests */
960 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200961 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200962 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200963
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200964 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST) && (si->st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200965 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
966 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
967 /* Other size has closed, let's abort if we have no more processing to do
968 * and nothing more to consume. This is comparable to a broken pipe, so
969 * we forward the close to the request side so that it flows upstream to
970 * the client.
971 */
972 si->shutw(si);
973 }
974
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200975 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && (si->st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200976 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
977 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
978 /* We have no more processing to do, and nothing more to send, and
979 * the client side has closed. So we'll forward this state downstream
980 * on the response buffer.
981 */
982 si->shutr(si);
983 res->flags |= BF_READ_NULL;
984 }
985
986 /* update all other flags and resync with the other side */
987 si->update(si);
988
989 /* we don't want to expire timeouts while we're processing requests */
990 si->ib->rex = TICK_ETERNITY;
991 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200992
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200993 out:
994 DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rql=%d, rqs=%d, rl=%d, rs=%d\n",
995 __FUNCTION__, __LINE__,
996 si->state, req->flags, res->flags, req->l, req->send_max, res->l, res->send_max);
997
998 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
999 /* check that we have released everything then unregister */
1000 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001001 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001002}
1003
Willy Tarreau24955a12009-10-04 11:54:04 +02001004/* This function is called to send output to the response buffer.
1005 * It dumps statistics onto the output buffer <rep> owned by session <s>.
1006 * s->data_ctx must have been zeroed first, and the flags properly set.
1007 * It returns 0 as long as it does not complete, non-zero upon completion.
1008 * Some states are not used but it makes the code more similar to other
1009 * functions which handle stats too.
Willy Tarreau3e76e722007-10-17 18:57:38 +02001010 */
Willy Tarreau24955a12009-10-04 11:54:04 +02001011int stats_dump_raw_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau3e76e722007-10-17 18:57:38 +02001012{
Willy Tarreau3e76e722007-10-17 18:57:38 +02001013 struct proxy *px;
1014 struct chunk msg;
Willy Tarreaua8efd362008-01-03 10:19:15 +01001015 unsigned int up;
Willy Tarreau3e76e722007-10-17 18:57:38 +02001016
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001017 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3e76e722007-10-17 18:57:38 +02001018
1019 switch (s->data_state) {
1020 case DATA_ST_INIT:
Willy Tarreau24955a12009-10-04 11:54:04 +02001021 /* the function had not been called yet */
Willy Tarreau3e76e722007-10-17 18:57:38 +02001022 s->data_state = DATA_ST_HEAD;
1023 /* fall through */
1024
1025 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001026 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001027 print_csv_header(&msg);
Willy Tarreau24955a12009-10-04 11:54:04 +02001028 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +01001029 return 0;
1030 }
Willy Tarreau3e76e722007-10-17 18:57:38 +02001031
1032 s->data_state = DATA_ST_INFO;
1033 /* fall through */
1034
1035 case DATA_ST_INFO:
Willy Tarreaua8efd362008-01-03 10:19:15 +01001036 up = (now.tv_sec - start_date.tv_sec);
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001037 if (s->data_ctx.stats.flags & STAT_SHOW_INFO) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001038 chunk_printf(&msg,
Willy Tarreaua8efd362008-01-03 10:19:15 +01001039 "Name: " PRODUCT_NAME "\n"
1040 "Version: " HAPROXY_VERSION "\n"
1041 "Release_date: " HAPROXY_DATE "\n"
1042 "Nbproc: %d\n"
1043 "Process_num: %d\n"
1044 "Pid: %d\n"
1045 "Uptime: %dd %dh%02dm%02ds\n"
1046 "Uptime_sec: %d\n"
1047 "Memmax_MB: %d\n"
1048 "Ulimit-n: %d\n"
1049 "Maxsock: %d\n"
1050 "Maxconn: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +01001051 "Maxpipes: %d\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +01001052 "CurrConns: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +01001053 "PipesUsed: %d\n"
1054 "PipesFree: %d\n"
Willy Tarreauc7bdf092009-03-21 18:33:52 +01001055 "Tasks: %d\n"
1056 "Run_queue: %d\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001057 "node: %s\n"
1058 "description: %s\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +01001059 "",
1060 global.nbproc,
1061 relative_pid,
1062 pid,
1063 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
1064 up,
1065 global.rlimit_memmax,
1066 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +01001067 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +01001068 actconn, pipes_used, pipes_free,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001069 nb_tasks_cur, run_queue_cur,
1070 global.node, global.desc?global.desc:""
Willy Tarreaua8efd362008-01-03 10:19:15 +01001071 );
Willy Tarreau24955a12009-10-04 11:54:04 +02001072 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +01001073 return 0;
1074 }
1075
Willy Tarreau3e76e722007-10-17 18:57:38 +02001076 s->data_ctx.stats.px = proxy;
1077 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001078
1079 s->data_ctx.stats.sv = NULL;
1080 s->data_ctx.stats.sv_st = 0;
1081
Willy Tarreau3e76e722007-10-17 18:57:38 +02001082 s->data_state = DATA_ST_LIST;
1083 /* fall through */
1084
1085 case DATA_ST_LIST:
1086 /* dump proxies */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001087 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Willy Tarreaua8efd362008-01-03 10:19:15 +01001088 while (s->data_ctx.stats.px) {
1089 px = s->data_ctx.stats.px;
1090 /* skip the disabled proxies and non-networked ones */
1091 if (px->state != PR_STSTOPPED &&
Willy Tarreau24955a12009-10-04 11:54:04 +02001092 (px->cap & (PR_CAP_FE | PR_CAP_BE))) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001093 if (stats_dump_proxy(s, px, NULL) == 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +01001094 return 0;
Willy Tarreau24955a12009-10-04 11:54:04 +02001095 }
Willy Tarreau3e76e722007-10-17 18:57:38 +02001096
Willy Tarreaua8efd362008-01-03 10:19:15 +01001097 s->data_ctx.stats.px = px->next;
1098 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
1099 }
1100 /* here, we just have reached the last proxy */
Willy Tarreau3e76e722007-10-17 18:57:38 +02001101 }
Willy Tarreau3e76e722007-10-17 18:57:38 +02001102
1103 s->data_state = DATA_ST_END;
1104 /* fall through */
1105
1106 case DATA_ST_END:
1107 s->data_state = DATA_ST_FIN;
Willy Tarreau0a464892008-12-07 18:30:00 +01001108 /* fall through */
Willy Tarreau3e76e722007-10-17 18:57:38 +02001109
1110 case DATA_ST_FIN:
1111 return 1;
1112
1113 default:
1114 /* unknown state ! */
Willy Tarreau24955a12009-10-04 11:54:04 +02001115 s->data_state = DATA_ST_FIN;
1116 return 1;
Willy Tarreau3e76e722007-10-17 18:57:38 +02001117 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001118}
1119
1120
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001121/* This I/O handler runs as an applet embedded in a stream interface. It is
1122 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
1123 * si->st0 becomes non-zero once the transfer is finished. The handler
1124 * automatically unregisters itself once transfer is complete.
1125 */
1126void http_stats_io_handler(struct stream_interface *si)
1127{
1128 struct session *s = si->private;
1129 struct buffer *req = si->ob;
1130 struct buffer *res = si->ib;
1131
1132 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
1133 goto out;
1134
1135 /* check that the output is not closed */
1136 if (res->flags & (BF_SHUTW|BF_SHUTW_NOW))
1137 si->st0 = 1;
1138
1139 if (!si->st0) {
1140 if (stats_dump_http(s, res, s->be->uri_auth)) {
1141 si->st0 = 1;
1142 si->shutw(si);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001143 }
1144 }
1145
1146 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST))
1147 si->shutw(si);
1148
1149 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && si->st0) {
1150 si->shutr(si);
1151 res->flags |= BF_READ_NULL;
1152 }
1153
1154 /* update all other flags and resync with the other side */
1155 si->update(si);
1156
1157 /* we don't want to expire timeouts while we're processing requests */
1158 si->ib->rex = TICK_ETERNITY;
1159 si->ob->wex = TICK_ETERNITY;
1160
1161 out:
1162 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
1163 /* check that we have released everything then unregister */
1164 stream_int_unregister_handler(si);
1165 }
1166}
1167
1168
Willy Tarreau3e76e722007-10-17 18:57:38 +02001169/*
1170 * Produces statistics data for the session <s>. Expects to be called with
Willy Tarreau1ae3a052008-08-16 10:56:30 +02001171 * client socket shut down on input. It stops by itself by unsetting the
Willy Tarreau72b179a2008-08-28 16:01:32 +02001172 * BF_HIJACK flag from the buffer, which it uses to keep on being called
Willy Tarreau1ae3a052008-08-16 10:56:30 +02001173 * when there is free space in the buffer, of simply by letting an empty buffer
1174 * upon return.s->data_ctx must have been zeroed before the first call, and the
1175 * flags set. It returns 0 if it had to stop writing data and an I/O is needed,
1176 * 1 if the dump is finished and the session must be closed, or -1 in case of
1177 * any error.
Willy Tarreau91861262007-10-17 17:06:05 +02001178 */
Willy Tarreau0a464892008-12-07 18:30:00 +01001179int stats_dump_http(struct session *s, struct buffer *rep, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02001180{
Willy Tarreau91861262007-10-17 17:06:05 +02001181 struct proxy *px;
1182 struct chunk msg;
1183 unsigned int up;
1184
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001185 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +02001186
1187 switch (s->data_state) {
1188 case DATA_ST_INIT:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001189 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001190 "HTTP/1.0 200 OK\r\n"
1191 "Cache-Control: no-cache\r\n"
1192 "Connection: close\r\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001193 "Content-Type: %s\r\n",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001194 (s->data_ctx.stats.flags & STAT_FMT_CSV) ? "text/plain" : "text/html");
Willy Tarreau91861262007-10-17 17:06:05 +02001195
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001196 if (uri->refresh > 0 && !(s->data_ctx.stats.flags & STAT_NO_REFRESH))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001197 chunk_printf(&msg, "Refresh: %d\r\n",
Willy Tarreau91861262007-10-17 17:06:05 +02001198 uri->refresh);
1199
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001200 chunk_printf(&msg, "\r\n");
Willy Tarreau91861262007-10-17 17:06:05 +02001201
1202 s->txn.status = 200;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001203 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau56a560a2009-09-22 19:27:35 +02001204 return 0;
1205
Willy Tarreau91861262007-10-17 17:06:05 +02001206 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
1207 s->flags |= SN_ERR_PRXCOND; // to mark that it comes from the proxy
1208 if (!(s->flags & SN_FINST_MASK))
1209 s->flags |= SN_FINST_R;
1210
1211 if (s->txn.meth == HTTP_METH_HEAD) {
1212 /* that's all we return in case of HEAD request */
1213 s->data_state = DATA_ST_FIN;
Willy Tarreau91861262007-10-17 17:06:05 +02001214 return 1;
1215 }
1216
1217 s->data_state = DATA_ST_HEAD; /* let's start producing data */
1218 /* fall through */
1219
1220 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001221 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01001222 /* WARNING! This must fit in the first buffer !!! */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001223 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001224 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
1225 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02001226 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001227 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
1228 "<style type=\"text/css\"><!--\n"
1229 "body {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +02001230 " font-family: arial, helvetica, sans-serif;"
Willy Tarreau91861262007-10-17 17:06:05 +02001231 " font-size: 12px;"
1232 " font-weight: normal;"
1233 " color: black;"
1234 " background: white;"
1235 "}\n"
1236 "th,td {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +02001237 " font-size: 10px;"
Willy Tarreau91861262007-10-17 17:06:05 +02001238 "}\n"
1239 "h1 {"
Willy Tarreauda6721b2009-07-15 10:07:05 +02001240 " font-size: x-large;"
Willy Tarreau91861262007-10-17 17:06:05 +02001241 " margin-bottom: 0.5em;"
1242 "}\n"
1243 "h2 {"
1244 " font-family: helvetica, arial;"
1245 " font-size: x-large;"
1246 " font-weight: bold;"
1247 " font-style: italic;"
1248 " color: #6020a0;"
1249 " margin-top: 0em;"
1250 " margin-bottom: 0em;"
1251 "}\n"
1252 "h3 {"
1253 " font-family: helvetica, arial;"
1254 " font-size: 16px;"
1255 " font-weight: bold;"
1256 " color: #b00040;"
1257 " background: #e8e8d0;"
1258 " margin-top: 0em;"
1259 " margin-bottom: 0em;"
1260 "}\n"
1261 "li {"
1262 " margin-top: 0.25em;"
1263 " margin-right: 2em;"
1264 "}\n"
1265 ".hr {margin-top: 0.25em;"
1266 " border-color: black;"
1267 " border-bottom-style: solid;"
1268 "}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001269 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001270 ".total {background: #20D0D0;color: #ffff80;}\n"
1271 ".frontend {background: #e8e8d0;}\n"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001272 ".socket {background: #d0d0d0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001273 ".backend {background: #e8e8d0;}\n"
1274 ".active0 {background: #ff9090;}\n"
1275 ".active1 {background: #ffd020;}\n"
1276 ".active2 {background: #ffffa0;}\n"
1277 ".active3 {background: #c0ffc0;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001278 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
1279 ".active5 {background: #a0e0a0;}\n" /* NOLB state shows darker than up */
1280 ".active6 {background: #e0e0e0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001281 ".backup0 {background: #ff9090;}\n"
1282 ".backup1 {background: #ff80ff;}\n"
1283 ".backup2 {background: #c060ff;}\n"
1284 ".backup3 {background: #b0d0ff;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001285 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
1286 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
1287 ".backup6 {background: #e0e0e0;}\n"
Cyril Bontécd19e512010-01-31 22:34:03 +01001288 ".maintain {background: #c07820;}\n"
Willy Tarreauda6721b2009-07-15 10:07:05 +02001289 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001290 "\n"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001291 "a.px:link {color: #ffff40; text-decoration: none;}"
1292 "a.px:visited {color: #ffff40; text-decoration: none;}"
1293 "a.px:hover {color: #ffffff; text-decoration: none;}"
1294 "a.lfsb:link {color: #000000; text-decoration: none;}"
1295 "a.lfsb:visited {color: #000000; text-decoration: none;}"
1296 "a.lfsb:hover {color: #505050; text-decoration: none;}"
1297 "\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001298 "table.tbl { border-collapse: collapse; border-style: none;}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001299 "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"
1300 "table.tbl td.ac { text-align: center;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001301 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001302 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
Willy Tarreauda6721b2009-07-15 10:07:05 +02001303 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001304 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001305 "\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001306 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
1307 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
1308 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreaue0454092010-02-26 12:29:07 +01001309 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001310 "-->\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02001311 "</style></head>\n",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001312 (uri->flags&ST_SHNODE) ? " on " : "",
1313 (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02001314 );
Willy Tarreau55bb8452007-10-17 18:44:57 +02001315 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001316 print_csv_header(&msg);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001317 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001318 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001319 return 0;
1320
1321 s->data_state = DATA_ST_INFO;
1322 /* fall through */
1323
1324 case DATA_ST_INFO:
1325 up = (now.tv_sec - start_date.tv_sec);
1326
1327 /* WARNING! this has to fit the first packet too.
1328 * We are around 3.5 kB, add adding entries will
1329 * become tricky if we want to support 4kB buffers !
1330 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001331 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001332 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001333 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
1334 PRODUCT_NAME "%s</a></h1>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001335 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001336 "<hr width=\"100%%\" class=\"hr\">\n"
1337 "<h3>&gt; General process information</h3>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001338 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +01001339 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001340 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001341 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
1342 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
1343 "current conns = %d; current pipes = %d/%d<br>\n"
1344 "Running tasks: %d/%d<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001345 "</td><td align=\"center\" nowrap>\n"
1346 "<table class=\"lgd\"><tr>\n"
1347 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
1348 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
1349 "</tr><tr>\n"
1350 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
1351 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
1352 "</tr><tr>\n"
1353 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
1354 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
1355 "</tr><tr>\n"
1356 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001357 "<td class=\"active6\"></td><td class=\"noborder\">not checked </td>"
Cyril Bontécd19e512010-01-31 22:34:03 +01001358 "</tr><tr>\n"
1359 "<td class=\"maintain\"></td><td class=\"noborder\" colspan=\"3\">active or backup DOWN for maintenance (MAINT) &nbsp;</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001360 "</tr></table>\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001361 "Note: UP with load-balancing disabled is reported as \"NOLB\"."
Willy Tarreau91861262007-10-17 17:06:05 +02001362 "</td>"
1363 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
1364 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
1365 "",
1366 (uri->flags&ST_HIDEVER)?"":(STATS_VERSION_STRING),
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001367 pid, (uri->flags&ST_SHNODE) ? " on " : "", (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
1368 (uri->flags&ST_SHDESC)? ": " : "", (uri->flags&ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
1369 pid, relative_pid, global.nbproc,
Willy Tarreau91861262007-10-17 17:06:05 +02001370 up / 86400, (up % 86400) / 3600,
1371 (up % 3600) / 60, (up % 60),
1372 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
1373 global.rlimit_memmax ? " MB" : "",
1374 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +01001375 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +01001376 actconn, pipes_used, pipes_used+pipes_free,
1377 run_queue_cur, nb_tasks_cur
Willy Tarreau91861262007-10-17 17:06:05 +02001378 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001379
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001380 if (s->data_ctx.stats.flags & STAT_HIDE_DOWN)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001381 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001382 "<li><a href=\"%s%s%s\">Show all servers</a><br>\n",
1383 uri->uri_prefix,
1384 "",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001385 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001386 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001387 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001388 "<li><a href=\"%s%s%s\">Hide 'DOWN' servers</a><br>\n",
1389 uri->uri_prefix,
1390 ";up",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001391 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +02001392
Willy Tarreau55bb8452007-10-17 18:44:57 +02001393 if (uri->refresh > 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001394 if (s->data_ctx.stats.flags & STAT_NO_REFRESH)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001395 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001396 "<li><a href=\"%s%s%s\">Enable refresh</a><br>\n",
1397 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001398 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +02001399 "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001400 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001401 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001402 "<li><a href=\"%s%s%s\">Disable refresh</a><br>\n",
1403 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001404 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +02001405 ";norefresh");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001406 }
Willy Tarreau91861262007-10-17 17:06:05 +02001407
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001408 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001409 "<li><a href=\"%s%s%s\">Refresh now</a><br>\n",
1410 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001411 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
1412 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +02001413
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001414 chunk_printf(&msg,
Willy Tarreau5031e6a2007-10-18 11:05:48 +02001415 "<li><a href=\"%s;csv%s\">CSV export</a><br>\n",
1416 uri->uri_prefix,
1417 (uri->refresh > 0) ? ";norefresh" : "");
1418
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001419 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001420 "</ul></td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001421 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
1422 "<b>External ressources:</b><ul style=\"margin-top: 0.25em;\">\n"
1423 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
1424 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
1425 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
1426 "</ul>"
1427 "</td>"
1428 "</tr></table>\n"
1429 ""
1430 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001431
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001432 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001433 return 0;
1434 }
Willy Tarreau91861262007-10-17 17:06:05 +02001435
Willy Tarreau91861262007-10-17 17:06:05 +02001436 s->data_ctx.stats.px = proxy;
1437 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
1438 s->data_state = DATA_ST_LIST;
1439 /* fall through */
1440
1441 case DATA_ST_LIST:
1442 /* dump proxies */
1443 while (s->data_ctx.stats.px) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001444 if (buffer_almost_full(rep))
1445 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02001446 px = s->data_ctx.stats.px;
1447 /* skip the disabled proxies and non-networked ones */
1448 if (px->state != PR_STSTOPPED && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001449 if (stats_dump_proxy(s, px, uri) == 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001450 return 0;
1451
1452 s->data_ctx.stats.px = px->next;
1453 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
1454 }
1455 /* here, we just have reached the last proxy */
1456
1457 s->data_state = DATA_ST_END;
1458 /* fall through */
1459
1460 case DATA_ST_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001461 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001462 chunk_printf(&msg, "</body></html>\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001463 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001464 return 0;
1465 }
Willy Tarreau91861262007-10-17 17:06:05 +02001466
1467 s->data_state = DATA_ST_FIN;
1468 /* fall through */
1469
1470 case DATA_ST_FIN:
Willy Tarreau91861262007-10-17 17:06:05 +02001471 return 1;
1472
1473 default:
1474 /* unknown state ! */
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001475 s->data_state = DATA_ST_FIN;
Willy Tarreau91861262007-10-17 17:06:05 +02001476 return -1;
1477 }
1478}
1479
1480
1481/*
1482 * Dumps statistics for a proxy.
1483 * Returns 0 if it had to stop dumping data because of lack of buffer space,
1484 * ot non-zero if everything completed.
1485 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001486int stats_dump_proxy(struct session *s, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02001487{
1488 struct buffer *rep = s->rep;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001489 struct server *sv, *svs; /* server and server-state, server-state=server or server->tracked */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001490 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02001491 struct chunk msg;
1492
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001493 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +02001494
1495 switch (s->data_ctx.stats.px_st) {
1496 case DATA_ST_PX_INIT:
1497 /* we are on a new proxy */
1498
1499 if (uri && uri->scope) {
1500 /* we have a limited scope, we have to check the proxy name */
1501 struct stat_scope *scope;
1502 int len;
1503
1504 len = strlen(px->id);
1505 scope = uri->scope;
1506
1507 while (scope) {
1508 /* match exact proxy name */
1509 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
1510 break;
1511
1512 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02001513 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02001514 break;
1515 scope = scope->next;
1516 }
1517
1518 /* proxy name not found : don't dump anything */
1519 if (scope == NULL)
1520 return 1;
1521 }
1522
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001523 if ((s->data_ctx.stats.flags & STAT_BOUND) && (s->data_ctx.stats.iid != -1) &&
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001524 (px->uuid != s->data_ctx.stats.iid))
1525 return 1;
1526
Willy Tarreau91861262007-10-17 17:06:05 +02001527 s->data_ctx.stats.px_st = DATA_ST_PX_TH;
1528 /* fall through */
1529
1530 case DATA_ST_PX_TH:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001531 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02001532 /* print a new table */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001533 chunk_printf(&msg,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001534 "<table class=\"tbl\" width=\"100%%\">\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001535 "<tr class=\"titre\">"
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001536 "<th class=\"pxname\" width=\"10%%\"");
1537
1538 if (uri->flags&ST_SHLGNDS) {
1539 /* cap, mode, id */
1540 chunk_printf(&msg, " title=\"cap: %s, mode: %s, id: %d",
1541 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
1542 px->uuid);
1543
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001544 chunk_printf(&msg, "\"");
1545 }
1546
1547 chunk_printf(&msg,
Willy Tarreaue0454092010-02-26 12:29:07 +01001548 ">%s<a name=\"%s\"></a>"
1549 "<a class=px href=\"#%s\">%s</a>%s</th>"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001550 "<th class=\"%s\" width=\"90%%\">%s</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001551 "</tr>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001552 "</table>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001553 "<table class=\"tbl\" width=\"100%%\">\n"
1554 "<tr class=\"titre\">"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001555 "<th rowspan=2></th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001556 "<th colspan=3>Queue</th>"
1557 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001558 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001559 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001560 "<th colspan=9>Server</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001561 "</tr>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001562 "<tr class=\"titre\">"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001563 "<th>Cur</th><th>Max</th><th>Limit</th>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001564 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001565 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001566 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001567 "<th>Resp</th><th>Retr</th><th>Redis</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001568 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001569 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
1570 "<th>Thrtle</th>\n"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001571 "</tr>",
Willy Tarreaue0454092010-02-26 12:29:07 +01001572 (uri->flags & ST_SHLGNDS)?"<u>":"",
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001573 px->id, px->id, px->id,
Willy Tarreaue0454092010-02-26 12:29:07 +01001574 (uri->flags & ST_SHLGNDS)?"</u>":"",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001575 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001576
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001577 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001578 return 0;
1579 }
Willy Tarreau91861262007-10-17 17:06:05 +02001580
1581 s->data_ctx.stats.px_st = DATA_ST_PX_FE;
1582 /* fall through */
1583
1584 case DATA_ST_PX_FE:
1585 /* print the frontend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001586 if ((px->cap & PR_CAP_FE) &&
1587 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_FE)))) {
1588 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001589 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001590 /* name, queue */
Krzysztof Piotr Oledzki516ed492009-10-22 22:48:09 +02001591 "<tr class=\"frontend\"><td class=ac>"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001592 "<a name=\"%s/Frontend\"></a>"
1593 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td><td colspan=3></td>"
Willy Tarreaub44939a2010-02-26 11:35:39 +01001594 "",
1595 px->id, px->id);
1596
1597 if (px->mode == PR_MODE_HTTP) {
1598 chunk_printf(&msg,
1599 /* sessions rate : current, max, limit */
Willy Tarreaue0454092010-02-26 12:29:07 +01001600 "<td title=\"Cur: %u req/s\"><u>%s</u></td><td title=\"Max: %u req/s\"><u>%s</u></td><td>%s</td>"
Willy Tarreaub44939a2010-02-26 11:35:39 +01001601 "",
1602 read_freq_ctr(&px->fe_req_per_sec),
1603 U2H0(read_freq_ctr(&px->fe_sess_per_sec)),
1604 px->counters.fe_rps_max,
1605 U2H2(px->counters.fe_sps_max),
1606 LIM2A2(px->fe_sps_lim, "-"));
1607 } else {
1608 chunk_printf(&msg,
1609 /* sessions rate : current, max, limit */
1610 "<td>%s</td><td>%s</td><td>%s</td>"
1611 "",
1612 U2H0(read_freq_ctr(&px->fe_sess_per_sec)),
1613 U2H1(px->counters.fe_sps_max), LIM2A2(px->fe_sps_lim, "-"));
1614 }
1615
1616 chunk_printf(&msg,
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001617 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001618 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001619 "<td"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001620 "",
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001621 U2H3(px->feconn), U2H4(px->counters.feconn_max), U2H5(px->maxconn));
1622
1623 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1624 if (px->mode == PR_MODE_HTTP) {
1625 int i;
1626
Willy Tarreaub44939a2010-02-26 11:35:39 +01001627 chunk_printf(&msg, " title=\"%lld requests:", px->counters.cum_fe_req);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001628
1629 for (i = 1; i < 6; i++)
Willy Tarreau24657792010-02-26 10:30:28 +01001630 chunk_printf(&msg, " %dxx=%lld,", i, px->counters.fe.http.rsp[i]);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001631
Willy Tarreau24657792010-02-26 10:30:28 +01001632 chunk_printf(&msg, " other=%lld\"", px->counters.fe.http.rsp[0]);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001633 }
1634
1635 chunk_printf(&msg,
1636 /* sessions: total, lbtot */
Willy Tarreaue0454092010-02-26 12:29:07 +01001637 ">%s%s%s</td><td></td>"
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001638 /* bytes : in, out */
1639 "<td>%s</td><td>%s</td>"
1640 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01001641 (px->mode == PR_MODE_HTTP)?"<u>":"",
1642 U2H6(px->counters.cum_feconn),
1643 (px->mode == PR_MODE_HTTP)?"</u>":"",
1644 U2H7(px->counters.bytes_in), U2H8(px->counters.bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001645
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001646 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001647 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001648 "<td>%s</td><td>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001649 /* errors : request, connect, response */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001650 "<td>%s</td><td></td><td></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001651 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001652 "<td></td><td></td>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001653 /* server status : reflect frontend status */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001654 "<td class=ac>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001655 /* rest of server: nothing */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001656 "<td class=ac colspan=8></td></tr>"
Willy Tarreau91861262007-10-17 17:06:05 +02001657 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001658 U2H0(px->counters.denied_req), U2H1(px->counters.denied_resp),
1659 U2H2(px->counters.failed_req),
Willy Tarreau91861262007-10-17 17:06:05 +02001660 px->state == PR_STRUN ? "OPEN" :
1661 px->state == PR_STIDLE ? "FULL" : "STOP");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001662 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001663 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001664 /* pxid, name, queue cur, queue max, */
1665 "%s,FRONTEND,,,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001666 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001667 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001668 /* bytes : in, out */
1669 "%lld,%lld,"
1670 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001671 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001672 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001673 "%lld,,,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001674 /* warnings: retries, redispatches */
1675 ",,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001676 /* server status : reflect frontend status */
1677 "%s,"
1678 /* rest of server: nothing */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001679 ",,,,,,,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001680 /* pid, iid, sid, throttle, lbtot, tracked, type */
1681 "%d,%d,0,,,,%d,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001682 /* rate, rate_lim, rate_max */
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001683 "%u,%u,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001684 /* check_status, check_code, check_duration */
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001685 ",,,",
Willy Tarreau55bb8452007-10-17 18:44:57 +02001686 px->id,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001687 px->feconn, px->counters.feconn_max, px->maxconn, px->counters.cum_feconn,
1688 px->counters.bytes_in, px->counters.bytes_out,
1689 px->counters.denied_req, px->counters.denied_resp,
1690 px->counters.failed_req,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001691 px->state == PR_STRUN ? "OPEN" :
Willy Tarreaudcd47712007-11-04 23:35:08 +01001692 px->state == PR_STIDLE ? "FULL" : "STOP",
Willy Tarreau7f062c42009-03-05 18:43:00 +01001693 relative_pid, px->uuid, STATS_TYPE_FE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001694 read_freq_ctr(&px->fe_sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001695 px->fe_sps_lim, px->counters.fe_sps_max);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001696
1697 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1698 if (px->mode == PR_MODE_HTTP) {
1699 int i;
1700
1701 for (i=1; i<6; i++)
Willy Tarreau24657792010-02-26 10:30:28 +01001702 chunk_printf(&msg, "%lld,", px->counters.fe.http.rsp[i]);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001703
Willy Tarreau24657792010-02-26 10:30:28 +01001704 chunk_printf(&msg, "%lld,", px->counters.fe.http.rsp[0]);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001705 } else {
1706 chunk_printf(&msg, ",,,,,,");
1707 }
1708
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001709 /* failed health analyses */
1710 chunk_printf(&msg, ",");
1711
Willy Tarreaud9b587f2010-02-26 10:05:55 +01001712 /* requests : req_rate, req_rate_max, req_tot, */
1713 chunk_printf(&msg, "%u,%u,%lld,",
1714 read_freq_ctr(&px->fe_req_per_sec),
1715 px->counters.fe_rps_max, px->counters.cum_fe_req);
1716
Willy Tarreauae526782010-03-04 20:34:23 +01001717 /* errors: cli_aborts, srv_aborts */
1718 chunk_printf(&msg, ",,");
1719
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001720 /* finish with EOL */
1721 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001722 }
Willy Tarreau91861262007-10-17 17:06:05 +02001723
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001724 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001725 return 0;
1726 }
1727
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001728 s->data_ctx.stats.l = px->listen; /* may be NULL */
1729 s->data_ctx.stats.px_st = DATA_ST_PX_LI;
1730 /* fall through */
1731
1732 case DATA_ST_PX_LI:
1733 /* stats.l has been initialized above */
1734 for (; s->data_ctx.stats.l != NULL; s->data_ctx.stats.l = l->next) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001735 if (buffer_almost_full(rep))
1736 return 0;
1737
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001738 l = s->data_ctx.stats.l;
1739 if (!l->counters)
1740 continue;
1741
1742 if (s->data_ctx.stats.flags & STAT_BOUND) {
1743 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SO)))
1744 break;
1745
1746 if (s->data_ctx.stats.sid != -1 && l->luid != s->data_ctx.stats.sid)
1747 continue;
1748 }
1749
1750 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001751 chunk_printf(&msg, "<tr class=socket><td class=ac");
1752
1753 if (uri->flags&ST_SHLGNDS) {
1754 char str[INET6_ADDRSTRLEN], *fmt = NULL;
1755 int port;
1756
1757 chunk_printf(&msg, " title=\"IP: ");
1758
1759 port = (l->addr.ss_family == AF_INET6)
1760 ? ntohs(((struct sockaddr_in6 *)(&l->addr))->sin6_port)
1761 : ntohs(((struct sockaddr_in *)(&l->addr))->sin_port);
1762
1763 if (l->addr.ss_family == AF_INET) {
1764 if (inet_ntop(AF_INET,
1765 (const void *)&((struct sockaddr_in *)&l->addr)->sin_addr,
1766 str, sizeof(str)))
1767 fmt = "%s:%d";
1768 } else {
1769 if (inet_ntop(AF_INET6,
1770 (const void *)&((struct sockaddr_in6 *)(&l->addr))->sin6_addr,
1771 str, sizeof(str)))
1772 fmt = "[%s]:%d";
1773 }
1774
1775 if (fmt)
1776 chunk_printf(&msg, fmt, str, port);
1777 else
1778 chunk_printf(&msg, "(%s)", strerror(errno));
1779
1780 /* id */
1781 chunk_printf(&msg, ", id: %d", l->luid);
1782
1783 chunk_printf(&msg, "\"");
1784 }
1785
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001786 chunk_printf(&msg,
1787 /* name, queue */
Willy Tarreaue0454092010-02-26 12:29:07 +01001788 ">%s<a name=\"%s/+%s\"></a>"
1789 "<a class=lfsb href=\"#%s/+%s\">%s</a></td><td colspan=3>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001790 /* sessions rate: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001791 "<td colspan=3>&nbsp;</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001792 /* sessions: current, max, limit, total, lbtot */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001793 "<td>%s</td><td>%s</td><td>%s</td>"
1794 "<td>%s</td><td>&nbsp;</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001795 /* bytes: in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001796 "<td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001797 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01001798 (uri->flags & ST_SHLGNDS)?"<u>":"",
Krzysztof Piotr Oledzki2ec025d2010-01-04 11:33:32 +01001799 px->id, l->name, px->id, l->name, l->name,
Willy Tarreaue0454092010-02-26 12:29:07 +01001800 (uri->flags & ST_SHLGNDS)?"</u>":"",
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001801 U2H3(l->nbconn), U2H4(l->counters->conn_max), U2H5(l->maxconn),
1802 U2H6(l->counters->cum_conn), U2H7(l->counters->bytes_in), U2H8(l->counters->bytes_out));
1803
1804 chunk_printf(&msg,
1805 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001806 "<td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001807 /* errors: request, connect, response */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001808 "<td>%s</td><td></td><td></td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001809 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001810 "<td></td><td></td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001811 /* server status: reflect listener status */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001812 "<td class=ac>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001813 /* rest of server: nothing */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001814 "<td class=ac colspan=8></td></tr>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001815 "",
1816 U2H0(l->counters->denied_req), U2H1(l->counters->denied_resp),
1817 U2H2(l->counters->failed_req),
1818 (l->nbconn < l->maxconn) ? "OPEN" : "FULL");
1819 } else {
1820 chunk_printf(&msg,
1821 /* pxid, name, queue cur, queue max, */
1822 "%s,%s,,,"
1823 /* sessions: current, max, limit, total */
1824 "%d,%d,%d,%lld,"
1825 /* bytes: in, out */
1826 "%lld,%lld,"
1827 /* denied: req, resp */
1828 "%lld,%lld,"
1829 /* errors: request, connect, response */
1830 "%lld,,,"
1831 /* warnings: retries, redispatches */
1832 ",,"
1833 /* server status: reflect listener status */
1834 "%s,"
1835 /* rest of server: nothing */
1836 ",,,,,,,,"
1837 /* pid, iid, sid, throttle, lbtot, tracked, type */
1838 "%d,%d,%d,,,,%d,"
1839 /* rate, rate_lim, rate_max */
1840 ",,,"
1841 /* check_status, check_code, check_duration */
1842 ",,,"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001843 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1844 ",,,,,,"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001845 /* failed health analyses */
1846 ","
Willy Tarreaud9b587f2010-02-26 10:05:55 +01001847 /* requests : req_rate, req_rate_max, req_tot, */
1848 ",,,"
Willy Tarreauae526782010-03-04 20:34:23 +01001849 /* errors: cli_aborts, srv_aborts */
1850 ",,"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001851 "\n",
1852 px->id, l->name,
1853 l->nbconn, l->counters->conn_max,
1854 l->maxconn, l->counters->cum_conn,
1855 l->counters->bytes_in, l->counters->bytes_out,
1856 l->counters->denied_req, l->counters->denied_resp,
1857 l->counters->failed_req,
1858 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
1859 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
1860 }
1861
1862 if (buffer_feed_chunk(rep, &msg) >= 0)
1863 return 0;
1864 }
1865
Willy Tarreau91861262007-10-17 17:06:05 +02001866 s->data_ctx.stats.sv = px->srv; /* may be NULL */
1867 s->data_ctx.stats.px_st = DATA_ST_PX_SV;
1868 /* fall through */
1869
1870 case DATA_ST_PX_SV:
1871 /* stats.sv has been initialized above */
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001872 for (; s->data_ctx.stats.sv != NULL; s->data_ctx.stats.sv = sv->next) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001873 int sv_state; /* 0=DOWN, 1=going up, 2=going down, 3=UP, 4,5=NOLB, 6=unchecked */
Willy Tarreau91861262007-10-17 17:06:05 +02001874
Willy Tarreau4e33d862009-10-11 23:35:10 +02001875 if (buffer_almost_full(rep))
1876 return 0;
1877
Willy Tarreau91861262007-10-17 17:06:05 +02001878 sv = s->data_ctx.stats.sv;
1879
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001880 if (s->data_ctx.stats.flags & STAT_BOUND) {
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001881 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SV)))
1882 break;
1883
1884 if (s->data_ctx.stats.sid != -1 && sv->puid != s->data_ctx.stats.sid)
1885 continue;
1886 }
1887
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001888 if (sv->tracked)
1889 svs = sv->tracked;
1890 else
1891 svs = sv;
1892
Willy Tarreau91861262007-10-17 17:06:05 +02001893 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001894 if (!(svs->state & SRV_CHECKED))
Willy Tarreau2ea81932007-11-30 12:04:38 +01001895 sv_state = 6;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001896 else if (svs->state & SRV_RUNNING) {
1897 if (svs->health == svs->rise + svs->fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02001898 sv_state = 3; /* UP */
1899 else
1900 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01001901
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001902 if (svs->state & SRV_GOINGDOWN)
Willy Tarreau2ea81932007-11-30 12:04:38 +01001903 sv_state += 2;
1904 }
Willy Tarreau91861262007-10-17 17:06:05 +02001905 else
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001906 if (svs->health)
Willy Tarreau91861262007-10-17 17:06:05 +02001907 sv_state = 1; /* going up */
1908 else
1909 sv_state = 0; /* DOWN */
1910
Cyril Bonté0dae5852010-02-03 00:26:28 +01001911 if (((sv_state == 0) || (sv->state & SRV_MAINTAIN)) && (s->data_ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02001912 /* do not report servers which are DOWN */
1913 s->data_ctx.stats.sv = sv->next;
1914 continue;
1915 }
1916
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001917 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001918 static char *srv_hlt_st[7] = { "DOWN", "DN %d/%d &uarr;",
1919 "UP %d/%d &darr;", "UP",
1920 "NOLB %d/%d &darr;", "NOLB",
1921 "<i>no check</i>" };
Cyril Bonté0dae5852010-02-03 00:26:28 +01001922 if ((sv->state & SRV_MAINTAIN) || (svs->state & SRV_MAINTAIN)) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001923 chunk_printf(&msg,
1924 /* name */
1925 "<tr class=\"maintain\"><td class=ac"
1926 );
1927 }
1928 else {
1929 chunk_printf(&msg,
1930 /* name */
1931 "<tr class=\"%s%d\"><td class=ac",
1932 (sv->state & SRV_BACKUP) ? "backup" : "active", sv_state);
1933 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001934
1935 if (uri->flags&ST_SHLGNDS) {
1936 char str[INET6_ADDRSTRLEN];
1937
1938 chunk_printf(&msg, " title=\"IP: ");
1939
1940 /* IP */
1941 if (inet_ntop(sv->addr.sin_family, &sv->addr.sin_addr, str, sizeof(str)))
1942 chunk_printf(&msg, "%s:%d", str, htons(sv->addr.sin_port));
1943 else
1944 chunk_printf(&msg, "(%s)", strerror(errno));
1945
1946 /* id */
1947 chunk_printf(&msg, ", id: %d", sv->puid);
1948
1949 /* cookie */
1950 if (sv->cookie) {
1951 struct chunk src;
1952
1953 chunk_printf(&msg, ", cookie: '");
1954
1955 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
1956 chunk_htmlencode(&msg, &src);
1957
1958 chunk_printf(&msg, "'");
1959 }
1960
1961 chunk_printf(&msg, "\"");
1962 }
1963
1964 chunk_printf(&msg,
Willy Tarreaue0454092010-02-26 12:29:07 +01001965 ">%s<a name=\"%s/%s\"></a>"
1966 "<a class=lfsb href=\"#%s/%s\">%s</a>%s</td>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001967 /* queue : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001968 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001969 /* sessions rate : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001970 "<td>%s</td><td>%s</td><td></td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001971 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001972 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001973 "<td"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001974 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01001975 (uri->flags & ST_SHLGNDS)?"<u>":"",
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001976 px->id, sv->id, px->id, sv->id, sv->id,
Willy Tarreaue0454092010-02-26 12:29:07 +01001977 (uri->flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001978 U2H0(sv->nbpend), U2H1(sv->counters.nbpend_max), LIM2A2(sv->maxqueue, "-"),
1979 U2H3(read_freq_ctr(&sv->sess_per_sec)), U2H4(sv->counters.sps_max),
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001980 U2H5(sv->cur_sess), U2H6(sv->counters.cur_sess_max), LIM2A7(sv->maxconn, "-"));
1981
1982 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1983 if (px->mode == PR_MODE_HTTP) {
1984 int i;
1985
1986 chunk_printf(&msg, " title=\"rsp codes:");
1987
1988 for (i = 1; i < 6; i++)
1989 chunk_printf(&msg, " %dxx=%lld,", i, sv->counters.p.http.rsp[i]);
1990
1991 chunk_printf(&msg, " other=%lld\"", sv->counters.p.http.rsp[0]);
1992 }
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001993
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001994 chunk_printf(&msg,
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001995 /* sessions: total, lbtot */
Willy Tarreaue0454092010-02-26 12:29:07 +01001996 ">%s%s%s</td><td>%s</td>",
1997 (px->mode == PR_MODE_HTTP)?"<u>":"",
1998 U2H0(sv->counters.cum_sess),
1999 (px->mode == PR_MODE_HTTP)?"</u>":"",
2000 U2H1(sv->counters.cum_lbconn));
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002001
2002 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02002003 /* bytes : in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002004 "<td>%s</td><td>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002005 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002006 "<td></td><td>%s</td>"
Willy Tarreauae526782010-03-04 20:34:23 +01002007 /* errors : request, connect */
2008 "<td></td><td>%s</td>"
2009 /* errors : response */
Willy Tarreau6a8573e2010-03-05 18:15:23 +01002010 "<td title=\"Connection resets during transfers: %lld client, %lld server\"><u>%s</u></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002011 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002012 "<td>%lld</td><td>%lld</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002013 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002014 U2H0(sv->counters.bytes_in), U2H1(sv->counters.bytes_out),
2015 U2H2(sv->counters.failed_secu),
Willy Tarreauae526782010-03-04 20:34:23 +01002016 U2H3(sv->counters.failed_conns),
Willy Tarreau6a8573e2010-03-05 18:15:23 +01002017 sv->counters.cli_aborts,
2018 sv->counters.srv_aborts,
Willy Tarreauae526782010-03-04 20:34:23 +01002019 U2H6(sv->counters.failed_resp),
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002020 sv->counters.retries, sv->counters.redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002021
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002022 /* status, lest check */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002023 chunk_printf(&msg, "<td class=ac>");
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002024
Cyril Bontécd19e512010-01-31 22:34:03 +01002025 if (sv->state & SRV_MAINTAIN) {
2026 chunk_printf(&msg, "%s ",
2027 human_time(now.tv_sec - sv->last_change, 1));
2028 chunk_printf(&msg, "MAINT");
2029 }
Cyril Bonté0dae5852010-02-03 00:26:28 +01002030 else if (svs != sv && svs->state & SRV_MAINTAIN) {
2031 chunk_printf(&msg, "%s ",
2032 human_time(now.tv_sec - svs->last_change, 1));
2033 chunk_printf(&msg, "MAINT(via)");
2034 }
Cyril Bontécd19e512010-01-31 22:34:03 +01002035 else if (svs->state & SRV_CHECKED) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002036 chunk_printf(&msg, "%s ",
Cyril Bonté0dae5852010-02-03 00:26:28 +01002037 human_time(now.tv_sec - svs->last_change, 1));
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002038
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002039 chunk_printf(&msg,
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002040 srv_hlt_st[sv_state],
2041 (svs->state & SRV_RUNNING) ? (svs->health - svs->rise + 1) : (svs->health),
2042 (svs->state & SRV_RUNNING) ? (svs->fall) : (svs->rise));
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002043 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02002044
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002045 if (sv->state & SRV_CHECKED) {
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002046 chunk_printf(&msg, "</td><td class=ac title=\"%s",
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02002047 get_check_status_description(sv->check_status));
2048
2049 if (*sv->check_desc) {
2050 struct chunk src;
2051
2052 chunk_printf(&msg, ": ");
2053
2054 chunk_initlen(&src, sv->check_desc, 0, strlen(sv->check_desc));
2055 chunk_htmlencode(&msg, &src);
2056 }
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002057
Willy Tarreaue0454092010-02-26 12:29:07 +01002058 chunk_printf(&msg, "\"><u> %s%s",
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002059 tv_iszero(&sv->check_start)?"":"* ",
2060 get_check_status_info(sv->check_status));
2061
2062 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002063 chunk_printf(&msg, "/%d", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002064
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002065 if (sv->check_status >= HCHK_STATUS_CHECKED && sv->check_duration >= 0)
Willy Tarreaue0454092010-02-26 12:29:07 +01002066 chunk_printf(&msg, " in %lums</u>", sv->check_duration);
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002067 } else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002068 chunk_printf(&msg, "</td><td>");
Willy Tarreau91861262007-10-17 17:06:05 +02002069
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002070 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02002071 /* weight */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002072 "</td><td class=ac>%d</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002073 /* act, bck */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002074 "<td class=ac>%s</td><td class=ac>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002075 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01002076 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau91861262007-10-17 17:06:05 +02002077 (sv->state & SRV_BACKUP) ? "-" : "Y",
2078 (sv->state & SRV_BACKUP) ? "Y" : "-");
2079
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002080 /* check failures: unique, fatal, down time */
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01002081 if (sv->state & SRV_CHECKED) {
Willy Tarreaue0454092010-02-26 12:29:07 +01002082 chunk_printf(&msg, "<td title=\"Failed Health Checks%s\"><u>%lld",
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01002083 svs->observe?"/Health Analyses":"", svs->counters.failed_checks);
2084
2085 if (svs->observe)
2086 chunk_printf(&msg, "/%lld", svs->counters.failed_hana);
2087
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002088 chunk_printf(&msg,
Willy Tarreaue0454092010-02-26 12:29:07 +01002089 "</u></td>"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002090 "<td>%lld</td><td>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002091 "",
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002092 svs->counters.down_trans, human_time(srv_downtime(sv), 1));
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01002093 } else if (sv != svs)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002094 chunk_printf(&msg,
Krzysztof Piotr Oledzki88a14af2010-01-05 18:33:01 +01002095 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s<a></td>",
2096 svs->proxy->id, svs->id, svs->proxy->id, svs->id);
Willy Tarreau55bb8452007-10-17 18:44:57 +02002097 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002098 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002099 "<td colspan=3></td>");
2100
2101 /* throttle */
2102 if ((sv->state & SRV_WARMINGUP) &&
2103 now.tv_sec < sv->last_change + sv->slowstart &&
2104 now.tv_sec >= sv->last_change) {
2105 unsigned int ratio;
2106 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002107 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002108 "<td class=ac>%d %%</td></tr>\n", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002109 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002110 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002111 "<td class=ac>-</td></tr>\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002112 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02002113 } else {
Willy Tarreau2ea81932007-11-30 12:04:38 +01002114 static char *srv_hlt_st[7] = { "DOWN,", "DOWN %d/%d,",
2115 "UP %d/%d,", "UP,",
2116 "NOLB %d/%d,", "NOLB,",
2117 "no check," };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002118 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002119 /* pxid, name */
2120 "%s,%s,"
2121 /* queue : current, max */
2122 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002123 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002124 "%d,%d,%s,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002125 /* bytes : in, out */
2126 "%lld,%lld,"
2127 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002128 ",%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002129 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002130 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002131 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002132 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002133 "",
2134 px->id, sv->id,
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002135 sv->nbpend, sv->counters.nbpend_max,
2136 sv->cur_sess, sv->counters.cur_sess_max, LIM2A0(sv->maxconn, ""), sv->counters.cum_sess,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002137 sv->counters.bytes_in, sv->counters.bytes_out,
2138 sv->counters.failed_secu,
2139 sv->counters.failed_conns, sv->counters.failed_resp,
2140 sv->counters.retries, sv->counters.redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002141
Willy Tarreau55bb8452007-10-17 18:44:57 +02002142 /* status */
Cyril Bontécd19e512010-01-31 22:34:03 +01002143 if (sv->state & SRV_MAINTAIN) {
2144 chunk_printf(&msg, "MAINT,");
Cyril Bonté0dae5852010-02-03 00:26:28 +01002145 }
2146 else if (svs != sv && svs->state & SRV_MAINTAIN) {
2147 chunk_printf(&msg, "MAINT(via),");
2148 }
2149 else {
Cyril Bontécd19e512010-01-31 22:34:03 +01002150 chunk_printf(&msg,
2151 srv_hlt_st[sv_state],
2152 (svs->state & SRV_RUNNING) ? (svs->health - svs->rise + 1) : (svs->health),
2153 (svs->state & SRV_RUNNING) ? (svs->fall) : (svs->rise));
2154 }
Willy Tarreau91861262007-10-17 17:06:05 +02002155
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002156 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002157 /* weight, active, backup */
2158 "%d,%d,%d,"
2159 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01002160 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002161 (sv->state & SRV_BACKUP) ? 0 : 1,
2162 (sv->state & SRV_BACKUP) ? 1 : 0);
2163
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002164 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreau55bb8452007-10-17 18:44:57 +02002165 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002166 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02002167 "%lld,%lld,%d,%d,",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002168 sv->counters.failed_checks, sv->counters.down_trans,
Willy Tarreau1772ece2009-04-03 14:49:12 +02002169 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
Willy Tarreau55bb8452007-10-17 18:44:57 +02002170 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002171 chunk_printf(&msg,
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02002172 ",,,,");
2173
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002174 /* queue limit, pid, iid, sid, */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002175 chunk_printf(&msg,
Willy Tarreaudcd47712007-11-04 23:35:08 +01002176 "%s,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002177 "%d,%d,%d,",
Willy Tarreaudcd47712007-11-04 23:35:08 +01002178 LIM2A0(sv->maxqueue, ""),
2179 relative_pid, px->uuid, sv->puid);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002180
2181 /* throttle */
2182 if ((sv->state & SRV_WARMINGUP) &&
2183 now.tv_sec < sv->last_change + sv->slowstart &&
2184 now.tv_sec >= sv->last_change) {
2185 unsigned int ratio;
2186 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002187 chunk_printf(&msg, "%d", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002188 }
2189
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002190 /* sessions: lbtot */
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002191 chunk_printf(&msg, ",%lld,", sv->counters.cum_lbconn);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002192
2193 /* tracked */
2194 if (sv->tracked)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002195 chunk_printf(&msg, "%s/%s,",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002196 sv->tracked->proxy->id, sv->tracked->id);
2197 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002198 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002199
Willy Tarreau7f062c42009-03-05 18:43:00 +01002200 /* type */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002201 chunk_printf(&msg, "%d,", STATS_TYPE_SV);
Willy Tarreau7f062c42009-03-05 18:43:00 +01002202
2203 /* rate */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002204 chunk_printf(&msg, "%u,,%u,",
Willy Tarreau8f208ec2009-05-10 19:01:49 +02002205 read_freq_ctr(&sv->sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002206 sv->counters.sps_max);
Willy Tarreau7f062c42009-03-05 18:43:00 +01002207
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002208 if (sv->state & SRV_CHECKED) {
2209 /* check_status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002210 chunk_printf(&msg, "%s,", get_check_status_info(sv->check_status));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002211
2212 /* check_code */
2213 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002214 chunk_printf(&msg, "%u,", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002215 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002216 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002217
2218 /* check_duration */
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002219 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002220 chunk_printf(&msg, "%lu,", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002221 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002222 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002223
2224 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002225 chunk_printf(&msg, ",,,");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002226 }
2227
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002228 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2229 if (px->mode == PR_MODE_HTTP) {
2230 int i;
2231
2232 for (i=1; i<6; i++)
2233 chunk_printf(&msg, "%lld,", sv->counters.p.http.rsp[i]);
2234
2235 chunk_printf(&msg, "%lld,", sv->counters.p.http.rsp[0]);
2236 } else {
2237 chunk_printf(&msg, ",,,,,,");
2238 }
2239
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002240 /* failed health analyses */
2241 chunk_printf(&msg, "%lld,", sv->counters.failed_hana);
2242
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002243 /* requests : req_rate, req_rate_max, req_tot, */
2244 chunk_printf(&msg, ",,,");
2245
Willy Tarreauae526782010-03-04 20:34:23 +01002246 /* errors: cli_aborts, srv_aborts */
2247 chunk_printf(&msg, "%lld,%lld,",
2248 sv->counters.cli_aborts, sv->counters.srv_aborts);
2249
Willy Tarreau7f062c42009-03-05 18:43:00 +01002250 /* finish with EOL */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002251 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002252 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002253 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02002254 return 0;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002255 } /* for sv */
Willy Tarreau91861262007-10-17 17:06:05 +02002256
2257 s->data_ctx.stats.px_st = DATA_ST_PX_BE;
2258 /* fall through */
2259
2260 case DATA_ST_PX_BE:
2261 /* print the backend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01002262 if ((px->cap & PR_CAP_BE) &&
2263 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_BE)))) {
2264 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002265 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02002266 /* name */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002267 "<tr class=\"backend\"><td class=ac");
2268
2269 if (uri->flags&ST_SHLGNDS) {
2270 /* balancing */
Krzysztof Piotr Oledzkic0f0c862010-01-06 15:03:18 +01002271 chunk_printf(&msg, " title=\"balancing: %s",
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002272 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
Krzysztof Piotr Oledzkic0f0c862010-01-06 15:03:18 +01002273
2274 /* cookie */
2275 if (px->cookie_name) {
2276 struct chunk src;
2277
2278 chunk_printf(&msg, ", cookie: '");
2279
2280 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
2281 chunk_htmlencode(&msg, &src);
2282
2283 chunk_printf(&msg, "'");
2284 }
2285
2286 chunk_printf(&msg, "\"");
2287
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002288 }
2289
2290 chunk_printf(&msg,
Willy Tarreaue0454092010-02-26 12:29:07 +01002291 ">%s<a name=\"%s/Backend\"></a>"
2292 "<a class=lfsb href=\"#%s/Backend\">Backend</a>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002293 /* queue : current, max */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002294 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02002295 /* sessions rate : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002296 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02002297 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01002298 (uri->flags & ST_SHLGNDS)?"<u>":"",
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02002299 px->id, px->id,
Willy Tarreaue0454092010-02-26 12:29:07 +01002300 (uri->flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002301 U2H0(px->nbpend) /* or px->totpend ? */, U2H1(px->counters.nbpend_max),
2302 U2H2(read_freq_ctr(&px->be_sess_per_sec)), U2H3(px->counters.be_sps_max));
Willy Tarreaua3e49422009-05-10 19:19:41 +02002303
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002304 chunk_printf(&msg,
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002305 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002306 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002307 "<td"
2308 "",
2309 U2H2(px->beconn), U2H3(px->counters.beconn_max), U2H4(px->fullconn));
2310
2311 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
2312 if (px->mode == PR_MODE_HTTP) {
2313 int i;
2314
2315 chunk_printf(&msg, " title=\"rsp codes:");
2316
2317 for (i = 1; i < 6; i++)
Willy Tarreau24657792010-02-26 10:30:28 +01002318 chunk_printf(&msg, " %dxx=%lld", i, px->counters.be.http.rsp[i]);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002319
Willy Tarreau24657792010-02-26 10:30:28 +01002320 chunk_printf(&msg, " other=%lld\"", px->counters.be.http.rsp[0]);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002321 }
2322
2323 chunk_printf(&msg,
2324 /* sessions: total, lbtot */
Willy Tarreaue0454092010-02-26 12:29:07 +01002325 ">%s%s%s</td><td>%s</td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002326 /* bytes: in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002327 "<td>%s</td><td>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02002328 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01002329 (px->mode == PR_MODE_HTTP)?"<u>":"",
2330 U2H6(px->counters.cum_beconn),
2331 (px->mode == PR_MODE_HTTP)?"</u>":"",
2332 U2H7(px->counters.cum_lbconn),
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002333 U2H8(px->counters.bytes_in), U2H9(px->counters.bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02002334
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002335 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02002336 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002337 "<td>%s</td><td>%s</td>"
Willy Tarreauae526782010-03-04 20:34:23 +01002338 /* errors : request, connect */
2339 "<td></td><td>%s</td>"
2340 /* errors : response */
Willy Tarreau6a8573e2010-03-05 18:15:23 +01002341 "<td title=\"Connection resets during transfers: %lld client, %lld server\"><u>%s</u></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002342 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002343 "<td>%lld</td><td>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002344 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau91861262007-10-17 17:06:05 +02002345 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002346 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau91861262007-10-17 17:06:05 +02002347 * active and backups. */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002348 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
2349 "<td class=ac>%d</td><td class=ac>%d</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02002350 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002351 U2H0(px->counters.denied_req), U2H1(px->counters.denied_resp),
Willy Tarreauae526782010-03-04 20:34:23 +01002352 U2H2(px->counters.failed_conns),
Willy Tarreau6a8573e2010-03-05 18:15:23 +01002353 px->counters.cli_aborts,
2354 px->counters.srv_aborts,
Willy Tarreauae526782010-03-04 20:34:23 +01002355 U2H5(px->counters.failed_resp),
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002356 px->counters.retries, px->counters.redispatches,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002357 human_time(now.tv_sec - px->last_change, 1),
Willy Tarreau2ea81932007-11-30 12:04:38 +01002358 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
2359 "<font color=\"red\"><b>DOWN</b></font>",
Willy Tarreau5542af62007-12-03 02:04:00 +01002360 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01002361 px->srv_act, px->srv_bck);
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002362
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002363 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002364 /* rest of backend: nothing, down transitions, total downtime, throttle */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002365 "<td class=ac>&nbsp;</td><td>%d</td>"
2366 "<td>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002367 "<td></td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002368 "</tr>",
2369 px->down_trans,
2370 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002371 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002372 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002373 /* pxid, name */
2374 "%s,BACKEND,"
2375 /* queue : current, max */
2376 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002377 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002378 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002379 /* bytes : in, out */
2380 "%lld,%lld,"
2381 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002382 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002383 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002384 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002385 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002386 "%lld,%lld,"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002387 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau55bb8452007-10-17 18:44:57 +02002388 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002389 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau55bb8452007-10-17 18:44:57 +02002390 * active and backups. */
2391 "%s,"
2392 "%d,%d,%d,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002393 /* rest of backend: nothing, down transitions, last change, total downtime */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02002394 ",%d,%d,%d,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002395 /* pid, iid, sid, throttle, lbtot, tracked, type */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002396 "%d,%d,0,,%lld,,%d,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +02002397 /* rate, rate_lim, rate_max, */
2398 "%u,,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002399 /* check_status, check_code, check_duration */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002400 ",,,",
Willy Tarreau55bb8452007-10-17 18:44:57 +02002401 px->id,
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002402 px->nbpend /* or px->totpend ? */, px->counters.nbpend_max,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002403 px->beconn, px->counters.beconn_max, px->fullconn, px->counters.cum_beconn,
2404 px->counters.bytes_in, px->counters.bytes_out,
2405 px->counters.denied_req, px->counters.denied_resp,
2406 px->counters.failed_conns, px->counters.failed_resp,
2407 px->counters.retries, px->counters.redispatches,
Willy Tarreau20697042007-11-15 23:26:18 +01002408 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
Willy Tarreau5542af62007-12-03 02:04:00 +01002409 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01002410 px->srv_act, px->srv_bck,
Willy Tarreau1772ece2009-04-03 14:49:12 +02002411 px->down_trans, (int)(now.tv_sec - px->last_change),
Willy Tarreau20697042007-11-15 23:26:18 +01002412 px->srv?be_downtime(px):0,
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002413 relative_pid, px->uuid,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002414 px->counters.cum_lbconn, STATS_TYPE_BE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02002415 read_freq_ctr(&px->be_sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002416 px->counters.be_sps_max);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002417
2418 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2419 if (px->mode == PR_MODE_HTTP) {
2420 int i;
2421
2422 for (i=1; i<6; i++)
Willy Tarreau24657792010-02-26 10:30:28 +01002423 chunk_printf(&msg, "%lld,", px->counters.be.http.rsp[i]);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002424
Willy Tarreau24657792010-02-26 10:30:28 +01002425 chunk_printf(&msg, "%lld,", px->counters.be.http.rsp[0]);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002426 } else {
2427 chunk_printf(&msg, ",,,,,,");
2428 }
2429
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002430 /* failed health analyses */
2431 chunk_printf(&msg, ",");
2432
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002433 /* requests : req_rate, req_rate_max, req_tot, */
2434 chunk_printf(&msg, ",,,");
2435
Willy Tarreauae526782010-03-04 20:34:23 +01002436 /* errors: cli_aborts, srv_aborts */
2437 chunk_printf(&msg, "%lld,%lld,",
2438 px->counters.cli_aborts, px->counters.srv_aborts);
2439
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002440 /* finish with EOL */
2441 chunk_printf(&msg, "\n");
2442
Willy Tarreau55bb8452007-10-17 18:44:57 +02002443 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002444 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02002445 return 0;
2446 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002447
Willy Tarreau91861262007-10-17 17:06:05 +02002448 s->data_ctx.stats.px_st = DATA_ST_PX_END;
2449 /* fall through */
2450
2451 case DATA_ST_PX_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01002452 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002453 chunk_printf(&msg, "</table><p>\n");
Willy Tarreau91861262007-10-17 17:06:05 +02002454
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002455 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02002456 return 0;
2457 }
Willy Tarreau91861262007-10-17 17:06:05 +02002458
2459 s->data_ctx.stats.px_st = DATA_ST_PX_FIN;
2460 /* fall through */
2461
2462 case DATA_ST_PX_FIN:
2463 return 1;
2464
2465 default:
2466 /* unknown state, we should put an abort() here ! */
2467 return 1;
2468 }
2469}
2470
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002471/* This function is called to send output to the response buffer. It dumps a
2472 * complete session state onto the output buffer <rep>. The session has to be
2473 * set in data_ctx.sess.target. It returns 0 if the output buffer is full and
2474 * it needs to be called again, otherwise non-zero. It is designed to be called
2475 * from stats_dump_sess_to_buffer() below.
2476 */
2477
2478/* returns 1 if dump is not complete */
2479int stats_dump_full_sess_to_buffer(struct session *s, struct buffer *rep)
2480{
2481 struct tm tm;
2482 struct chunk msg;
2483 struct session *sess;
2484 extern const char *monthname[12];
2485 char pn[INET6_ADDRSTRLEN];
2486
2487 chunk_init(&msg, trash, sizeof(trash));
2488 sess = s->data_ctx.sess.target;
2489
2490 if (s->data_ctx.sess.section > 0 && s->data_ctx.sess.uid != sess->uniq_id) {
2491 /* session changed, no need to go any further */
2492 chunk_printf(&msg, " *** session terminated while we were watching it ***\n");
2493 if (buffer_feed_chunk(rep, &msg) >= 0)
2494 return 0;
2495 s->data_ctx.sess.target = NULL;
2496 s->data_ctx.sess.uid = 0;
2497 return 1;
2498 }
2499
2500 switch (s->data_ctx.sess.section) {
2501 case 0: /* main status of the session */
2502 s->data_ctx.sess.uid = sess->uniq_id;
2503 s->data_ctx.sess.section = 1;
2504 /* fall through */
2505
2506 case 1:
2507 chunk_printf(&msg,
2508 "%p: id=%u, proto=%s",
2509 sess,
2510 sess->uniq_id,
2511 sess->listener->proto->name);
2512
2513 switch (sess->listener->proto->sock_family) {
2514 case AF_INET:
2515 inet_ntop(AF_INET,
2516 (const void *)&((struct sockaddr_in *)&sess->cli_addr)->sin_addr,
2517 pn, sizeof(pn));
2518
2519 chunk_printf(&msg,
2520 " source=%s:%d\n",
2521 pn,
2522 ntohs(((struct sockaddr_in *)&sess->cli_addr)->sin_port));
2523 break;
2524 case AF_INET6:
2525 inet_ntop(AF_INET6,
2526 (const void *)&((struct sockaddr_in6 *)(&sess->cli_addr))->sin6_addr,
2527 pn, sizeof(pn));
2528
2529 chunk_printf(&msg,
2530 " source=%s:%d\n",
2531 pn,
2532 ntohs(((struct sockaddr_in6 *)&sess->cli_addr)->sin6_port));
2533 break;
2534 case AF_UNIX:
2535 default:
2536 /* no more information to print right now */
2537 chunk_printf(&msg, "\n");
2538 break;
2539 }
2540
2541 chunk_printf(&msg,
2542 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02002543 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002544
2545 chunk_printf(&msg,
2546 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)\n",
2547 sess->fe->id, sess->fe->uuid, sess->fe->mode ? "http" : "tcp",
2548 sess->listener ? sess->listener->name ? sess->listener->name : "?" : "?",
2549 sess->listener ? sess->listener->luid : 0);
2550
2551 chunk_printf(&msg,
2552 " backend=%s (id=%u mode=%s) server=%s (id=%u)\n",
2553 sess->be->id, sess->be->uuid, sess->be->mode ? "http" : "tcp",
2554 sess->srv ? sess->srv->id : "<none>",
2555 sess->srv ? sess->srv->puid : 0);
2556
2557 chunk_printf(&msg,
2558 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s)\n",
2559 sess->task,
2560 sess->task->state,
2561 sess->task->nice, sess->task->calls,
2562 sess->task->expire ?
2563 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
2564 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
2565 TICKS_TO_MS(1000)) : "<NEVER>",
2566 task_in_rq(sess->task) ? ", running" : "");
2567
2568 get_localtime(sess->logs.accept_date.tv_sec, &tm);
2569 chunk_printf(&msg,
2570 " task created [%02d/%s/%04d:%02d:%02d:%02d.%06d] (age=%s)\n",
2571 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2572 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
2573 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
2574
2575 chunk_printf(&msg,
2576 " si[0]=%p (state=%d flags=0x%02x fd=%d exp=%s, et=0x%03x)\n",
2577 &sess->si[0],
2578 sess->si[0].state,
2579 sess->si[0].flags,
2580 sess->si[0].fd,
2581 sess->si[0].exp ?
2582 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
2583 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
2584 TICKS_TO_MS(1000)) : "<NEVER>",
2585 sess->si[0].err_type);
2586
2587 chunk_printf(&msg,
2588 " si[1]=%p (state=%d flags=0x%02x fd=%d exp=%s, et=0x%03x)\n",
2589 &sess->si[1],
2590 sess->si[1].state,
2591 sess->si[1].flags,
2592 sess->si[1].fd,
2593 sess->si[1].exp ?
2594 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
2595 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
2596 TICKS_TO_MS(1000)) : "<NEVER>",
2597 sess->si[1].err_type);
2598
2599 chunk_printf(&msg,
2600 " txn=%p (flags=0x%x meth=%d status=%d req.st=%d rsp.st=%d)\n",
2601 &sess->txn, sess->txn.flags, sess->txn.meth, sess->txn.status,
2602 sess->txn.req.msg_state, sess->txn.rsp.msg_state);
2603
2604
2605 chunk_printf(&msg,
2606 " req=%p (f=0x%06x an=0x%x l=%d sndmx=%d pipe=%d fwd=%ld)\n"
2607 " an_exp=%s",
2608 sess->req,
2609 sess->req->flags, sess->req->analysers,
2610 sess->req->l, sess->req->send_max,
2611 sess->req->pipe ? sess->req->pipe->data : 0,
2612 sess->req->to_forward,
2613 sess->req->analyse_exp ?
2614 human_time(TICKS_TO_MS(sess->req->analyse_exp - now_ms),
2615 TICKS_TO_MS(1000)) : "<NEVER>");
2616
2617 chunk_printf(&msg,
2618 " rex=%s",
2619 sess->req->rex ?
2620 human_time(TICKS_TO_MS(sess->req->rex - now_ms),
2621 TICKS_TO_MS(1000)) : "<NEVER>");
2622
2623 chunk_printf(&msg,
2624 " wex=%s\n"
2625 " data=%p r=%d w=%d lr=%d total=%lld\n",
2626 sess->req->wex ?
2627 human_time(TICKS_TO_MS(sess->req->wex - now_ms),
2628 TICKS_TO_MS(1000)) : "<NEVER>",
2629 sess->req->data,
Willy Tarreau4e1554c2010-03-21 23:21:00 +01002630 (int)(sess->req->r - sess->req->data),
2631 (int)(sess->req->w - sess->req->data),
2632 (int)(sess->req->lr - sess->req->data),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002633 sess->req->total);
2634
2635 chunk_printf(&msg,
2636 " res=%p (f=0x%06x an=0x%x l=%d sndmx=%d pipe=%d fwd=%ld)\n"
2637 " an_exp=%s",
2638 sess->rep,
2639 sess->rep->flags, sess->rep->analysers,
2640 sess->rep->l, sess->rep->send_max,
2641 sess->rep->pipe ? sess->rep->pipe->data : 0,
2642 sess->rep->to_forward,
2643 sess->rep->analyse_exp ?
2644 human_time(TICKS_TO_MS(sess->rep->analyse_exp - now_ms),
2645 TICKS_TO_MS(1000)) : "<NEVER>");
2646
2647 chunk_printf(&msg,
2648 " rex=%s",
2649 sess->rep->rex ?
2650 human_time(TICKS_TO_MS(sess->rep->rex - now_ms),
2651 TICKS_TO_MS(1000)) : "<NEVER>");
2652
2653 chunk_printf(&msg,
2654 " wex=%s\n"
2655 " data=%p r=%d w=%d lr=%d total=%lld\n",
2656 sess->rep->wex ?
2657 human_time(TICKS_TO_MS(sess->rep->wex - now_ms),
2658 TICKS_TO_MS(1000)) : "<NEVER>",
2659 sess->rep->data,
Willy Tarreau4e1554c2010-03-21 23:21:00 +01002660 (int)(sess->rep->r - sess->rep->data),
2661 (int)(sess->rep->w - sess->rep->data),
2662 (int)(sess->rep->lr - sess->rep->data),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002663 sess->rep->total);
2664
2665 if (buffer_feed_chunk(rep, &msg) >= 0)
2666 return 0;
2667
2668 /* use other states to dump the contents */
2669 }
2670 /* end of dump */
2671 s->data_ctx.sess.uid = 0;
2672 return 1;
2673}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002674
2675/* This function is called to send output to the response buffer.
2676 * It dumps the sessions states onto the output buffer <rep>.
2677 * Expects to be called with client socket shut down on input.
2678 * s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002679 * It returns 0 as long as it does not complete, non-zero upon completion.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002680 */
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002681int stats_dump_sess_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002682{
2683 struct chunk msg;
2684
2685 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
2686 /* If we're forced to shut down, we might have to remove our
2687 * reference to the last session being dumped.
2688 */
2689 if (s->data_state == DATA_ST_LIST) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002690 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002691 LIST_DEL(&s->data_ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002692 LIST_INIT(&s->data_ctx.sess.bref.users);
2693 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002694 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002695 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002696 }
2697
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002698 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002699
2700 switch (s->data_state) {
2701 case DATA_ST_INIT:
2702 /* the function had not been called yet, let's prepare the
2703 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002704 * pointer to the first in the global list. When a target
2705 * session is being destroyed, it is responsible for updating
2706 * this pointer. We know we have reached the end when this
2707 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002708 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002709 LIST_INIT(&s->data_ctx.sess.bref.users);
2710 s->data_ctx.sess.bref.ref = sessions.n;
2711 s->data_state = DATA_ST_LIST;
2712 /* fall through */
2713
2714 case DATA_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002715 /* first, let's detach the back-ref from a possible previous session */
2716 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
2717 LIST_DEL(&s->data_ctx.sess.bref.users);
2718 LIST_INIT(&s->data_ctx.sess.bref.users);
2719 }
2720
2721 /* and start from where we stopped */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002722 while (s->data_ctx.sess.bref.ref != &sessions) {
2723 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
2724 struct session *curr_sess;
2725
2726 curr_sess = LIST_ELEM(s->data_ctx.sess.bref.ref, struct session *, list);
2727
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002728 if (s->data_ctx.sess.target) {
2729 if (s->data_ctx.sess.target != curr_sess)
2730 goto next_sess;
2731
2732 LIST_ADDQ(&curr_sess->back_refs, &s->data_ctx.sess.bref.users);
2733 /* call the proper dump() function and return if we're missing space */
2734 if (!stats_dump_full_sess_to_buffer(s, rep))
2735 return 0;
2736
2737 /* session dump complete */
2738 LIST_DEL(&s->data_ctx.sess.bref.users);
2739 LIST_INIT(&s->data_ctx.sess.bref.users);
2740 s->data_ctx.sess.target = NULL;
2741 break;
2742 }
2743
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002744 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002745 "%p: proto=%s",
2746 curr_sess,
2747 curr_sess->listener->proto->name);
2748
2749 switch (curr_sess->listener->proto->sock_family) {
2750 case AF_INET:
2751 inet_ntop(AF_INET,
2752 (const void *)&((struct sockaddr_in *)&curr_sess->cli_addr)->sin_addr,
2753 pn, sizeof(pn));
2754
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002755 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002756 " src=%s:%d fe=%s be=%s srv=%s",
2757 pn,
2758 ntohs(((struct sockaddr_in *)&curr_sess->cli_addr)->sin_port),
2759 curr_sess->fe->id,
2760 curr_sess->be->id,
2761 curr_sess->srv ? curr_sess->srv->id : "<none>"
2762 );
2763 break;
2764 case AF_INET6:
2765 inet_ntop(AF_INET6,
2766 (const void *)&((struct sockaddr_in6 *)(&curr_sess->cli_addr))->sin6_addr,
2767 pn, sizeof(pn));
2768
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002769 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002770 " src=%s:%d fe=%s be=%s srv=%s",
2771 pn,
2772 ntohs(((struct sockaddr_in6 *)&curr_sess->cli_addr)->sin6_port),
2773 curr_sess->fe->id,
2774 curr_sess->be->id,
2775 curr_sess->srv ? curr_sess->srv->id : "<none>"
2776 );
2777
2778 break;
2779 case AF_UNIX:
2780 /* no more information to print right now */
2781 break;
2782 }
2783
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002784 chunk_printf(&msg,
Willy Tarreau65671ab2009-10-04 14:24:59 +02002785 " ts=%02x age=%s calls=%d",
2786 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01002787 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
2788 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002789
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002790 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002791 " rq[f=%06xh,l=%d,an=%02xh,rx=%s",
2792 curr_sess->req->flags,
2793 curr_sess->req->l,
2794 curr_sess->req->analysers,
2795 curr_sess->req->rex ?
2796 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
2797 TICKS_TO_MS(1000)) : "");
2798
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002799 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002800 ",wx=%s",
2801 curr_sess->req->wex ?
2802 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
2803 TICKS_TO_MS(1000)) : "");
2804
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002805 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002806 ",ax=%s]",
2807 curr_sess->req->analyse_exp ?
2808 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
2809 TICKS_TO_MS(1000)) : "");
2810
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002811 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002812 " rp[f=%06xh,l=%d,an=%02xh,rx=%s",
2813 curr_sess->rep->flags,
2814 curr_sess->rep->l,
2815 curr_sess->rep->analysers,
2816 curr_sess->rep->rex ?
2817 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
2818 TICKS_TO_MS(1000)) : "");
2819
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002820 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002821 ",wx=%s",
2822 curr_sess->rep->wex ?
2823 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
2824 TICKS_TO_MS(1000)) : "");
2825
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002826 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002827 ",ax=%s]",
2828 curr_sess->rep->analyse_exp ?
2829 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
2830 TICKS_TO_MS(1000)) : "");
2831
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002832 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002833 " s0=[%d,%1xh,fd=%d,ex=%s]",
2834 curr_sess->si[0].state,
2835 curr_sess->si[0].flags,
2836 curr_sess->si[0].fd,
2837 curr_sess->si[0].exp ?
2838 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
2839 TICKS_TO_MS(1000)) : "");
2840
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002841 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002842 " s1=[%d,%1xh,fd=%d,ex=%s]",
2843 curr_sess->si[1].state,
2844 curr_sess->si[1].flags,
2845 curr_sess->si[1].fd,
2846 curr_sess->si[1].exp ?
2847 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
2848 TICKS_TO_MS(1000)) : "");
2849
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002850 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002851 " exp=%s",
2852 curr_sess->task->expire ?
2853 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
2854 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01002855 if (task_in_rq(curr_sess->task))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002856 chunk_printf(&msg, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002857
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002858 chunk_printf(&msg, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002859
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002860 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002861 /* let's try again later from this session. We add ourselves into
2862 * this session's users so that it can remove us upon termination.
2863 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002864 LIST_ADDQ(&curr_sess->back_refs, &s->data_ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002865 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002866 }
2867
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002868 next_sess:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002869 s->data_ctx.sess.bref.ref = curr_sess->list.n;
2870 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002871
2872 if (s->data_ctx.sess.target) {
2873 /* specified session not found */
2874 if (s->data_ctx.sess.section > 0)
2875 chunk_printf(&msg, " *** session terminated while we were watching it ***\n");
2876 else
2877 chunk_printf(&msg, "Session not found.\n");
2878
2879 if (buffer_feed_chunk(rep, &msg) >= 0)
2880 return 0;
2881
2882 s->data_ctx.sess.target = NULL;
2883 s->data_ctx.sess.uid = 0;
2884 return 1;
2885 }
2886
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002887 s->data_state = DATA_ST_FIN;
2888 /* fall through */
2889
2890 default:
2891 s->data_state = DATA_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002892 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002893 }
2894}
2895
Willy Tarreaud426a182010-03-05 14:58:26 +01002896/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01002897 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
2898 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
2899 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
2900 * lines are respected within the limit of 70 output chars. Lines that are
2901 * continuation of a previous truncated line begin with "+" instead of " "
2902 * after the offset. The new pointer is returned.
2903 */
Willy Tarreaud426a182010-03-05 14:58:26 +01002904static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
2905 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01002906{
2907 int end;
2908 unsigned char c;
2909
2910 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002911 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01002912 return ptr;
2913
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002914 chunk_printf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01002915
Willy Tarreaud426a182010-03-05 14:58:26 +01002916 while (ptr < len && ptr < bsize) {
2917 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01002918 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002919 if (out->len > end - 2)
2920 break;
2921 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01002922 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002923 if (out->len > end - 3)
2924 break;
2925 out->str[out->len++] = '\\';
2926 switch (c) {
2927 case '\t': c = 't'; break;
2928 case '\n': c = 'n'; break;
2929 case '\r': c = 'r'; break;
2930 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01002931 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002932 }
2933 out->str[out->len++] = c;
2934 } else {
2935 if (out->len > end - 5)
2936 break;
2937 out->str[out->len++] = '\\';
2938 out->str[out->len++] = 'x';
2939 out->str[out->len++] = hextab[(c >> 4) & 0xF];
2940 out->str[out->len++] = hextab[c & 0xF];
2941 }
Willy Tarreaud426a182010-03-05 14:58:26 +01002942 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002943 /* we had a line break, let's return now */
2944 out->str[out->len++] = '\n';
2945 *line = ptr;
2946 return ptr;
2947 }
2948 }
2949 /* we have an incomplete line, we return it as-is */
2950 out->str[out->len++] = '\n';
2951 return ptr;
2952}
2953
2954/* This function is called to send output to the response buffer.
2955 * It dumps the errors logged in proxies onto the output buffer <rep>.
2956 * Expects to be called with client socket shut down on input.
2957 * s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau61b34732009-10-03 23:49:35 +02002958 * It returns 0 as long as it does not complete, non-zero upon completion.
Willy Tarreau74808cb2009-03-04 15:53:18 +01002959 */
Willy Tarreau61b34732009-10-03 23:49:35 +02002960int stats_dump_errors_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau74808cb2009-03-04 15:53:18 +01002961{
2962 extern const char *monthname[12];
2963 struct chunk msg;
2964
Willy Tarreau61b34732009-10-03 23:49:35 +02002965 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW)))
2966 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002967
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002968 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau74808cb2009-03-04 15:53:18 +01002969
2970 if (!s->data_ctx.errors.px) {
2971 /* the function had not been called yet, let's prepare the
2972 * buffer for a response.
2973 */
Willy Tarreau74808cb2009-03-04 15:53:18 +01002974 s->data_ctx.errors.px = proxy;
2975 s->data_ctx.errors.buf = 0;
2976 s->data_ctx.errors.bol = 0;
2977 s->data_ctx.errors.ptr = -1;
2978 }
2979
2980 /* we have two inner loops here, one for the proxy, the other one for
2981 * the buffer.
2982 */
2983 while (s->data_ctx.errors.px) {
2984 struct error_snapshot *es;
2985
2986 if (s->data_ctx.errors.buf == 0)
2987 es = &s->data_ctx.errors.px->invalid_req;
2988 else
2989 es = &s->data_ctx.errors.px->invalid_rep;
2990
2991 if (!es->when.tv_sec)
2992 goto next;
2993
2994 if (s->data_ctx.errors.iid >= 0 &&
2995 s->data_ctx.errors.px->uuid != s->data_ctx.errors.iid &&
2996 es->oe->uuid != s->data_ctx.errors.iid)
2997 goto next;
2998
2999 if (s->data_ctx.errors.ptr < 0) {
3000 /* just print headers now */
3001
3002 char pn[INET6_ADDRSTRLEN];
3003 struct tm tm;
3004
3005 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau8811f8e2010-03-05 17:42:58 +01003006 chunk_printf(&msg, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01003007 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02003008 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01003009
3010
3011 if (es->src.ss_family == AF_INET)
3012 inet_ntop(AF_INET,
3013 (const void *)&((struct sockaddr_in *)&es->src)->sin_addr,
3014 pn, sizeof(pn));
3015 else
3016 inet_ntop(AF_INET6,
3017 (const void *)&((struct sockaddr_in6 *)(&es->src))->sin6_addr,
3018 pn, sizeof(pn));
3019
3020 switch (s->data_ctx.errors.buf) {
3021 case 0:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003022 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01003023 " frontend %s (#%d): invalid request\n"
3024 " src %s, session #%d, backend %s (#%d), server %s (#%d)\n"
Willy Tarreau8811f8e2010-03-05 17:42:58 +01003025 " request length %d bytes, error at position %d:\n \n",
Willy Tarreau74808cb2009-03-04 15:53:18 +01003026 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
Willy Tarreau3fd6cec2010-03-25 06:45:07 +01003027 pn, es->sid, (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
3028 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1,
Willy Tarreau74808cb2009-03-04 15:53:18 +01003029 es->srv ? es->srv->id : "<NONE>",
3030 es->srv ? es->srv->puid : -1,
3031 es->len, es->pos);
3032 break;
3033 case 1:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003034 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01003035 " backend %s (#%d) : invalid response\n"
3036 " src %s, session #%d, frontend %s (#%d), server %s (#%d)\n"
Willy Tarreau8811f8e2010-03-05 17:42:58 +01003037 " response length %d bytes, error at position %d:\n \n",
Willy Tarreau74808cb2009-03-04 15:53:18 +01003038 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
3039 pn, es->sid, es->oe->id, es->oe->uuid,
3040 es->srv ? es->srv->id : "<NONE>",
3041 es->srv ? es->srv->puid : -1,
3042 es->len, es->pos);
3043 break;
3044 }
3045
Willy Tarreau61b34732009-10-03 23:49:35 +02003046 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003047 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02003048 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003049 }
3050 s->data_ctx.errors.ptr = 0;
3051 s->data_ctx.errors.sid = es->sid;
3052 }
3053
3054 if (s->data_ctx.errors.sid != es->sid) {
3055 /* the snapshot changed while we were dumping it */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003056 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01003057 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau61b34732009-10-03 23:49:35 +02003058 if (buffer_feed_chunk(rep, &msg) >= 0)
3059 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003060 goto next;
3061 }
3062
3063 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau61b34732009-10-03 23:49:35 +02003064 while (s->data_ctx.errors.ptr < es->len && s->data_ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003065 int newptr;
3066 int newline;
3067
3068 newline = s->data_ctx.errors.bol;
Willy Tarreaud426a182010-03-05 14:58:26 +01003069 newptr = dump_text_line(&msg, es->buf, sizeof(es->buf), es->len, &newline, s->data_ctx.errors.ptr);
Willy Tarreau74808cb2009-03-04 15:53:18 +01003070 if (newptr == s->data_ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02003071 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003072
Willy Tarreau61b34732009-10-03 23:49:35 +02003073 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003074 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02003075 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003076 }
3077 s->data_ctx.errors.ptr = newptr;
3078 s->data_ctx.errors.bol = newline;
3079 };
3080 next:
3081 s->data_ctx.errors.bol = 0;
3082 s->data_ctx.errors.ptr = -1;
3083 s->data_ctx.errors.buf++;
3084 if (s->data_ctx.errors.buf > 1) {
3085 s->data_ctx.errors.buf = 0;
3086 s->data_ctx.errors.px = s->data_ctx.errors.px->next;
3087 }
3088 }
3089
3090 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02003091 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003092}
3093
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003094
Willy Tarreau10522fd2008-07-09 20:12:41 +02003095static struct cfg_kw_list cfg_kws = {{ },{
3096 { CFG_GLOBAL, "stats", stats_parse_global },
3097 { 0, NULL, NULL },
3098}};
3099
3100__attribute__((constructor))
3101static void __dumpstats_module_init(void)
3102{
3103 cfg_register_keywords(&cfg_kws);
3104}
3105
Willy Tarreau91861262007-10-17 17:06:05 +02003106/*
3107 * Local variables:
3108 * c-indent-level: 8
3109 * c-basic-offset: 8
3110 * End:
3111 */