blob: 25a0bcab01e951c628f75a41ca0026b629ce54b5 [file] [log] [blame]
Willy Tarreau91861262007-10-17 17:06:05 +02001/*
2 * Functions dedicated to statistics output
3 *
Willy Tarreaua206fa92009-01-25 14:02:00 +01004 * Copyright 2000-2009 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 Tarreaua206fa92009-01-25 14:02:00 +010047#include <proto/pipe.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020048#include <proto/proto_uxst.h>
Willy Tarreau89a63132009-08-16 17:41:45 +020049#include <proto/proxy.h>
Willy Tarreau91861262007-10-17 17:06:05 +020050#include <proto/session.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020051#include <proto/server.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010052#include <proto/stream_interface.h>
Willy Tarreau4726f532009-03-07 17:25:21 +010053#include <proto/task.h>
Willy Tarreau91861262007-10-17 17:06:05 +020054
Willy Tarreau5ca791d2009-08-16 19:06:42 +020055const char stats_sock_usage_msg[] =
56 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020057 " help : this message\n"
58 " prompt : toggle interactive mode with prompt\n"
59 " quit : disconnect\n"
Willy Tarreau5ca791d2009-08-16 19:06:42 +020060 " show info : report information about the running process\n"
61 " show stat : report counters for each proxy and server\n"
62 " show errors : report last request and response errors for each proxy\n"
63 " show sess : report the list of current sessions\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020064 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +020065
66const struct chunk stats_sock_usage = {
67 .str = (char *)&stats_sock_usage_msg,
68 .len = sizeof(stats_sock_usage_msg)-1
69};
70
Willy Tarreaufbee7132007-10-18 13:53:22 +020071/* This function parses a "stats" statement in the "global" section. It returns
72 * -1 if there is any error, otherwise zero. If it returns -1, it may write an
73 * error message into ther <err> buffer, for at most <errlen> bytes, trailing
74 * zero included. The trailing '\n' must not be written. The function must be
75 * called with <args> pointing to the first word after "stats".
76 */
Willy Tarreau10522fd2008-07-09 20:12:41 +020077static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
78 struct proxy *defpx, char *err, int errlen)
Willy Tarreaufbee7132007-10-18 13:53:22 +020079{
Willy Tarreau10522fd2008-07-09 20:12:41 +020080 args++;
Willy Tarreaufbee7132007-10-18 13:53:22 +020081 if (!strcmp(args[0], "socket")) {
82 struct sockaddr_un su;
83 int cur_arg;
84
85 if (*args[1] == 0) {
86 snprintf(err, errlen, "'stats socket' in global section expects a path to a UNIX socket");
87 return -1;
88 }
89
90 if (global.stats_sock.state != LI_NEW) {
91 snprintf(err, errlen, "'stats socket' already specified in global section");
92 return -1;
93 }
94
95 su.sun_family = AF_UNIX;
96 strncpy(su.sun_path, args[1], sizeof(su.sun_path));
97 su.sun_path[sizeof(su.sun_path) - 1] = 0;
98 memcpy(&global.stats_sock.addr, &su, sizeof(su)); // guaranteed to fit
99
Willy Tarreau89a63132009-08-16 17:41:45 +0200100 if (!global.stats_fe) {
101 if ((global.stats_fe = (struct proxy *)calloc(1, sizeof(struct proxy))) == NULL) {
102 snprintf(err, errlen, "out of memory");
103 return -1;
104 }
105
106 LIST_INIT(&global.stats_fe->pendconns);
107 LIST_INIT(&global.stats_fe->acl);
108 LIST_INIT(&global.stats_fe->block_cond);
109 LIST_INIT(&global.stats_fe->redirect_rules);
110 LIST_INIT(&global.stats_fe->mon_fail_cond);
111 LIST_INIT(&global.stats_fe->switching_rules);
112 LIST_INIT(&global.stats_fe->tcp_req.inspect_rules);
113
114 /* Timeouts are defined as -1, so we cannot use the zeroed area
115 * as a default value.
116 */
117 proxy_reset_timeouts(global.stats_fe);
118
119 global.stats_fe->last_change = now.tv_sec;
120 global.stats_fe->id = strdup("GLOBAL");
121 global.stats_fe->cap = PR_CAP_FE;
122 }
123
Willy Tarreaufbee7132007-10-18 13:53:22 +0200124 global.stats_sock.state = LI_INIT;
Willy Tarreau6fb42e02007-10-28 17:02:33 +0100125 global.stats_sock.options = LI_O_NONE;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200126 global.stats_sock.accept = uxst_event_accept;
Willy Tarreau104eb362009-08-16 18:51:29 +0200127 global.stats_sock.handler = process_session;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200128 global.stats_sock.analysers = 0;
Willy Tarreau2c9f5b12009-08-16 19:12:36 +0200129 global.stats_sock.nice = -64; /* we want to boost priority for local stats */
Willy Tarreau89a63132009-08-16 17:41:45 +0200130 global.stats_sock.private = global.stats_fe; /* must point to the frontend */
131
132 global.stats_fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
133 global.stats_sock.timeout = &global.stats_fe->timeout.client;
134
135 global.stats_sock.next = global.stats_fe->listen;
136 global.stats_fe->listen = &global.stats_sock;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200137
138 cur_arg = 2;
139 while (*args[cur_arg]) {
140 if (!strcmp(args[cur_arg], "uid")) {
141 global.stats_sock.perm.ux.uid = atol(args[cur_arg + 1]);
142 cur_arg += 2;
143 }
144 else if (!strcmp(args[cur_arg], "gid")) {
145 global.stats_sock.perm.ux.gid = atol(args[cur_arg + 1]);
146 cur_arg += 2;
147 }
148 else if (!strcmp(args[cur_arg], "mode")) {
149 global.stats_sock.perm.ux.mode = strtol(args[cur_arg + 1], NULL, 8);
150 cur_arg += 2;
151 }
152 else if (!strcmp(args[cur_arg], "user")) {
153 struct passwd *user;
154 user = getpwnam(args[cur_arg + 1]);
155 if (!user) {
156 snprintf(err, errlen, "unknown user '%s' in 'global' section ('stats user')",
157 args[cur_arg + 1]);
158 return -1;
159 }
160 global.stats_sock.perm.ux.uid = user->pw_uid;
161 cur_arg += 2;
162 }
163 else if (!strcmp(args[cur_arg], "group")) {
164 struct group *group;
165 group = getgrnam(args[cur_arg + 1]);
166 if (!group) {
167 snprintf(err, errlen, "unknown group '%s' in 'global' section ('stats group')",
168 args[cur_arg + 1]);
169 return -1;
170 }
171 global.stats_sock.perm.ux.gid = group->gr_gid;
172 cur_arg += 2;
173 }
174 else {
175 snprintf(err, errlen, "'stats socket' only supports 'user', 'uid', 'group', 'gid', and 'mode'");
176 return -1;
177 }
178 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100179
Willy Tarreaufbee7132007-10-18 13:53:22 +0200180 uxst_add_listener(&global.stats_sock);
181 global.maxsock++;
182 }
183 else if (!strcmp(args[0], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100184 unsigned timeout;
185 const char *res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
186
187 if (res) {
188 snprintf(err, errlen, "unexpected character '%c' in 'stats timeout' in 'global' section", *res);
189 return -1;
190 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200191
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100192 if (!timeout) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200193 snprintf(err, errlen, "a positive value is expected for 'stats timeout' in 'global section'");
194 return -1;
195 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200196 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200197 }
198 else if (!strcmp(args[0], "maxconn")) {
199 int maxconn = atol(args[1]);
200
201 if (maxconn <= 0) {
202 snprintf(err, errlen, "a positive value is expected for 'stats maxconn' in 'global section'");
203 return -1;
204 }
205 global.maxsock -= global.stats_sock.maxconn;
206 global.stats_sock.maxconn = maxconn;
207 global.maxsock += global.stats_sock.maxconn;
208 }
209 else {
210 snprintf(err, errlen, "'stats' only supports 'socket', 'maxconn' and 'timeout' in 'global' section");
211 return -1;
212 }
213 return 0;
214}
215
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200216int print_csv_header(struct chunk *msg)
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100217{
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200218 return chunk_printf(msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100219 "# pxname,svname,"
220 "qcur,qmax,"
221 "scur,smax,slim,stot,"
222 "bin,bout,"
223 "dreq,dresp,"
224 "ereq,econ,eresp,"
225 "wretr,wredis,"
226 "status,weight,act,bck,"
227 "chkfail,chkdown,lastchg,downtime,qlimit,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +0200228 "pid,iid,sid,throttle,lbtot,tracked,type,"
229 "rate,rate_lim,rate_max,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200230 "check_status,check_code,check_duration,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100231 "\n");
232}
233
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200234/* Processes the stats interpreter on the statistics socket. This function is
235 * called from an applet running in a stream interface. Right now we still
236 * support older functions which used to emulate servers and to set
237 * STATS_ST_CLOSE upon completion, but we also support a new interactive mode.
238 * The function returns 1 if the request was understood, otherwise zero.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200239 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200240int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200241{
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200242 struct session *s = si->private;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200243 char *args[MAX_STATS_ARGS + 1];
244 int arg;
245
246 while (isspace((unsigned char)*line))
247 line++;
248
249 arg = 0;
250 args[arg] = line;
251
252 while (*line && arg < MAX_STATS_ARGS) {
253 if (isspace((unsigned char)*line)) {
254 *line++ = '\0';
255
256 while (isspace((unsigned char)*line))
257 line++;
258
259 args[++arg] = line;
260 continue;
261 }
262
263 line++;
264 }
265
266 while (++arg <= MAX_STATS_ARGS)
267 args[arg] = line;
268
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200269 si->st0 = 0;
270 s->data_ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200271 if (strcmp(args[0], "show") == 0) {
272 if (strcmp(args[1], "stat") == 0) {
273 if (*args[2] && *args[3] && *args[4]) {
274 s->data_ctx.stats.flags |= STAT_BOUND;
275 s->data_ctx.stats.iid = atoi(args[2]);
276 s->data_ctx.stats.type = atoi(args[3]);
277 s->data_ctx.stats.sid = atoi(args[4]);
278 }
279
280 s->data_ctx.stats.flags |= STAT_SHOW_STAT;
281 s->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200282 s->data_state = DATA_ST_INIT;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200283 s->ana_state = STATS_ST_REP;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200284 si->st0 = 3; // stats_dump_raw_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200285 }
286 else if (strcmp(args[1], "info") == 0) {
287 s->data_ctx.stats.flags |= STAT_SHOW_INFO;
288 s->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200289 s->data_state = DATA_ST_INIT;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200290 s->ana_state = STATS_ST_REP;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200291 si->st0 = 3; // stats_dump_raw_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200292 }
293 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200294 s->data_state = DATA_ST_INIT;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200295 s->ana_state = STATS_ST_REP;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200296 si->st0 = 4; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200297 }
298 else if (strcmp(args[1], "errors") == 0) {
299 if (*args[2])
300 s->data_ctx.errors.iid = atoi(args[2]);
301 else
302 s->data_ctx.errors.iid = -1;
303 s->data_ctx.errors.px = NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200304 s->data_state = DATA_ST_INIT;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200305 s->ana_state = STATS_ST_REP;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200306 si->st0 = 5; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200307 }
308 else { /* neither "stat" nor "info" nor "sess" */
309 return 0;
310 }
311 }
312 else { /* not "show" */
313 return 0;
314 }
315 return 1;
316}
317
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200318/* This I/O handler runs as an applet embedded in a stream interface. It is
319 * used to processes I/O from/to the stats unix socket. Right now we still
320 * support older functions which used to emulate servers and to set
321 * STATS_ST_CLOSE upon completion, but we also support a new interactive mode.
322 * The system relies on a request/response flip-flop state machine. We read
323 * a request, then we process it and send the response. Then we can read again.
324 * This could be enhanced a lot but we're still bound to support older output
325 * functions which were designed to work as hijackers.
326 * At the moment, we use si->st0 as the output type, and si->st1 to indicate
327 * whether we're in prompt mode or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200328 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200329void stats_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200330{
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200331 struct session *s = si->private;
332 struct buffer *req = si->ob;
333 struct buffer *res = si->ib;
334 int reql;
335 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200336
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200337 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
338 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200339
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200340 while (1) {
341 if (s->ana_state == STATS_ST_INIT) {
342 /* Stats output not initialized yet */
343 memset(&s->data_ctx.stats, 0, sizeof(s->data_ctx.stats));
344 s->data_source = DATA_SRC_STATS;
345 s->ana_state = STATS_ST_REQ;
346 }
347 else if (s->ana_state == STATS_ST_REQ) {
348 reql = buffer_si_peekline(si->ob, trash, sizeof(trash));
349 if (reql <= 0) { /* closed or EOL not found */
350 if (reql == 0)
351 break;
352 s->ana_state = STATS_ST_CLOSE;
353 continue;
354 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200355
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200356 /* seek for a possible semi-colon. If we find one, we
357 * replace it with an LF and skip only this part.
358 */
359 for (len = 0; len < reql; len++)
360 if (trash[len] == ';') {
361 trash[len] = '\n';
362 reql = len + 1;
363 break;
364 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200365
Willy Tarreau816fc222009-10-04 07:36:58 +0200366 /* now it is time to check that we have a full line,
367 * remove the trailing \n and possibly \r, then cut the
368 * line.
369 */
370 len = reql - 1;
371 if (trash[len] != '\n') {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200372 s->ana_state = STATS_ST_CLOSE;
373 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200374 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200375
Willy Tarreau816fc222009-10-04 07:36:58 +0200376 if (len && trash[len-1] == '\r')
377 len--;
378
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200379 trash[len] = '\0';
380
381 si->st0 = 1; // default to prompt
382 if (len) {
383 if (strcmp(trash, "quit") == 0) {
384 s->ana_state = STATS_ST_CLOSE;
385 continue;
386 }
387 else if (strcmp(trash, "prompt") == 0)
388 si->st1 = !si->st1;
389 else if (strcmp(trash, "help") == 0 ||
390 !stats_sock_parse_request(si, trash))
391 si->st0 = 2; // help
392 }
393 else if (!si->st1) {
394 /* if prompt is disabled, print help on empty lines,
395 * so that the user at least knows how to enable
396 * prompt and find help.
397 */
398 si->st0 = 2;
399 }
400
401 /* re-adjust req buffer */
402 buffer_skip(si->ob, reql);
403
404 s->ana_state = STATS_ST_REP;
405 req->flags |= BF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200406 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200407 else if (s->ana_state == STATS_ST_REP) {
408 if (res->flags & (BF_SHUTR_NOW|BF_SHUTR)) {
409 s->ana_state = STATS_ST_CLOSE;
410 continue;
411 }
412
413 switch (si->st0) {
414 case 2: /* help */
415 if (buffer_feed(si->ib, stats_sock_usage.str, stats_sock_usage.len) < 0)
416 /* message sent or too large for buffer (!) */
417 si->st0 = 1; // send prompt
418 break;
419 case 3: /* stats/info dump, should be split later ? */
Willy Tarreau24955a12009-10-04 11:54:04 +0200420 if (stats_dump_raw_to_buffer(s, res))
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200421 si->st0 = 1; // end of command, send prompt
422 break;
423 case 4: /* sessions dump */
Willy Tarreau7e72a8f2009-10-03 23:55:14 +0200424 if (stats_dump_sess_to_buffer(s, res))
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200425 si->st0 = 1; // end of command, send prompt
426 break;
427 case 5: /* errors dump */
Willy Tarreau61b34732009-10-03 23:49:35 +0200428 if (stats_dump_errors_to_buffer(s, res))
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200429 si->st0 = 1; // end of command, send prompt
430 break;
431 default: /* abnormal state or lack of space for prompt */
432 si->st0 = 1; // return to prompt
433 break;
434 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200435
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200436 if (si->st0 == 1) { /* post-command prompt (LF or LF + '> ') */
437 if (!si->st1) { /* non-interactive mode */
438 if (buffer_feed(si->ib, "\n", 1) < 0)
439 si->st0 = 0; // end of output
440 }
441 else { /* interactive mode */
442 if (buffer_feed(si->ib, "\n> ", 3) < 0)
443 si->st0 = 0; // end of output
444 }
445 }
446
447 /* If the output functions are still there, it means
448 * they require more room.
449 */
450 if (si->st0 > 0) {
451 s->ana_state = STATS_ST_REP; /* some old applets still force CLOSE */
452 si->flags |= SI_FL_WAIT_ROOM;
453 break;
454 }
455
456 /* Now we close the output if one of the writers did so,
457 * or if we're not in interactive mode and the request
458 * buffer is empty. This still allows pipelined requests
459 * to be sent in non-interactive mode.
460 */
461 if ((res->flags & (BF_SHUTW|BF_SHUTW_NOW)) || (!si->st1 && !req->send_max)) {
462 s->ana_state = STATS_ST_CLOSE;
463 continue;
464 }
465
466 /* switch state back to ST_REQ to read next requests */
467 s->ana_state = STATS_ST_REQ;
468 }
469 else if (s->ana_state == STATS_ST_CLOSE) {
Willy Tarreau33b230b2009-10-04 09:16:41 +0200470 /* Let's close for real now. We just close the request
471 * side, the conditions below will complete if needed.
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200472 */
Willy Tarreau33b230b2009-10-04 09:16:41 +0200473 si->shutw(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200474 s->ana_state = 0;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200475 break;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200476 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200477 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200478
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200479 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST) && (s->ana_state != STATS_ST_REQ)) {
480 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
481 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
482 /* Other size has closed, let's abort if we have no more processing to do
483 * and nothing more to consume. This is comparable to a broken pipe, so
484 * we forward the close to the request side so that it flows upstream to
485 * the client.
486 */
487 si->shutw(si);
488 }
489
490 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && (s->ana_state != STATS_ST_REP)) {
491 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
492 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
493 /* We have no more processing to do, and nothing more to send, and
494 * the client side has closed. So we'll forward this state downstream
495 * on the response buffer.
496 */
497 si->shutr(si);
498 res->flags |= BF_READ_NULL;
499 }
500
501 /* update all other flags and resync with the other side */
502 si->update(si);
503
504 /* we don't want to expire timeouts while we're processing requests */
505 si->ib->rex = TICK_ETERNITY;
506 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200507
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200508 out:
509 DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rql=%d, rqs=%d, rl=%d, rs=%d\n",
510 __FUNCTION__, __LINE__,
511 si->state, req->flags, res->flags, req->l, req->send_max, res->l, res->send_max);
512
513 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
514 /* check that we have released everything then unregister */
515 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200516 s->ana_state = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200517 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200518}
519
Willy Tarreau24955a12009-10-04 11:54:04 +0200520/* This function is called to send output to the response buffer.
521 * It dumps statistics onto the output buffer <rep> owned by session <s>.
522 * s->data_ctx must have been zeroed first, and the flags properly set.
523 * It returns 0 as long as it does not complete, non-zero upon completion.
524 * Some states are not used but it makes the code more similar to other
525 * functions which handle stats too.
Willy Tarreau3e76e722007-10-17 18:57:38 +0200526 */
Willy Tarreau24955a12009-10-04 11:54:04 +0200527int stats_dump_raw_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau3e76e722007-10-17 18:57:38 +0200528{
Willy Tarreau3e76e722007-10-17 18:57:38 +0200529 struct proxy *px;
530 struct chunk msg;
Willy Tarreaua8efd362008-01-03 10:19:15 +0100531 unsigned int up;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200532
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200533 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3e76e722007-10-17 18:57:38 +0200534
535 switch (s->data_state) {
536 case DATA_ST_INIT:
Willy Tarreau24955a12009-10-04 11:54:04 +0200537 /* the function had not been called yet */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200538 s->data_state = DATA_ST_HEAD;
539 /* fall through */
540
541 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100542 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200543 print_csv_header(&msg);
Willy Tarreau24955a12009-10-04 11:54:04 +0200544 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100545 return 0;
546 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200547
548 s->data_state = DATA_ST_INFO;
549 /* fall through */
550
551 case DATA_ST_INFO:
Willy Tarreaua8efd362008-01-03 10:19:15 +0100552 up = (now.tv_sec - start_date.tv_sec);
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100553 if (s->data_ctx.stats.flags & STAT_SHOW_INFO) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200554 chunk_printf(&msg,
Willy Tarreaua8efd362008-01-03 10:19:15 +0100555 "Name: " PRODUCT_NAME "\n"
556 "Version: " HAPROXY_VERSION "\n"
557 "Release_date: " HAPROXY_DATE "\n"
558 "Nbproc: %d\n"
559 "Process_num: %d\n"
560 "Pid: %d\n"
561 "Uptime: %dd %dh%02dm%02ds\n"
562 "Uptime_sec: %d\n"
563 "Memmax_MB: %d\n"
564 "Ulimit-n: %d\n"
565 "Maxsock: %d\n"
566 "Maxconn: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +0100567 "Maxpipes: %d\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100568 "CurrConns: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +0100569 "PipesUsed: %d\n"
570 "PipesFree: %d\n"
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100571 "Tasks: %d\n"
572 "Run_queue: %d\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200573 "node: %s\n"
574 "description: %s\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100575 "",
576 global.nbproc,
577 relative_pid,
578 pid,
579 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
580 up,
581 global.rlimit_memmax,
582 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +0100583 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100584 actconn, pipes_used, pipes_free,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200585 nb_tasks_cur, run_queue_cur,
586 global.node, global.desc?global.desc:""
Willy Tarreaua8efd362008-01-03 10:19:15 +0100587 );
Willy Tarreau24955a12009-10-04 11:54:04 +0200588 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100589 return 0;
590 }
591
Willy Tarreau3e76e722007-10-17 18:57:38 +0200592 s->data_ctx.stats.px = proxy;
593 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +0100594
595 s->data_ctx.stats.sv = NULL;
596 s->data_ctx.stats.sv_st = 0;
597
Willy Tarreau3e76e722007-10-17 18:57:38 +0200598 s->data_state = DATA_ST_LIST;
599 /* fall through */
600
601 case DATA_ST_LIST:
602 /* dump proxies */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100603 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Willy Tarreaua8efd362008-01-03 10:19:15 +0100604 while (s->data_ctx.stats.px) {
605 px = s->data_ctx.stats.px;
606 /* skip the disabled proxies and non-networked ones */
607 if (px->state != PR_STSTOPPED &&
Willy Tarreau24955a12009-10-04 11:54:04 +0200608 (px->cap & (PR_CAP_FE | PR_CAP_BE))) {
609 rep->flags |= BF_READ_PARTIAL; /* remove this once stats_dump_proxy uses buffer_feed */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100610 if (stats_dump_proxy(s, px, NULL) == 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100611 return 0;
Willy Tarreau24955a12009-10-04 11:54:04 +0200612 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200613
Willy Tarreaua8efd362008-01-03 10:19:15 +0100614 s->data_ctx.stats.px = px->next;
615 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
616 }
617 /* here, we just have reached the last proxy */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200618 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200619
620 s->data_state = DATA_ST_END;
621 /* fall through */
622
623 case DATA_ST_END:
624 s->data_state = DATA_ST_FIN;
Willy Tarreau0a464892008-12-07 18:30:00 +0100625 /* fall through */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200626
627 case DATA_ST_FIN:
628 return 1;
629
630 default:
631 /* unknown state ! */
Willy Tarreau24955a12009-10-04 11:54:04 +0200632 s->data_state = DATA_ST_FIN;
633 return 1;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200634 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100635}
636
637
Willy Tarreau3e76e722007-10-17 18:57:38 +0200638/*
639 * Produces statistics data for the session <s>. Expects to be called with
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200640 * client socket shut down on input. It stops by itself by unsetting the
Willy Tarreau72b179a2008-08-28 16:01:32 +0200641 * BF_HIJACK flag from the buffer, which it uses to keep on being called
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200642 * when there is free space in the buffer, of simply by letting an empty buffer
643 * upon return.s->data_ctx must have been zeroed before the first call, and the
644 * flags set. It returns 0 if it had to stop writing data and an I/O is needed,
645 * 1 if the dump is finished and the session must be closed, or -1 in case of
646 * any error.
Willy Tarreau91861262007-10-17 17:06:05 +0200647 */
Willy Tarreau0a464892008-12-07 18:30:00 +0100648int stats_dump_http(struct session *s, struct buffer *rep, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +0200649{
Willy Tarreau91861262007-10-17 17:06:05 +0200650 struct proxy *px;
651 struct chunk msg;
652 unsigned int up;
653
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200654 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +0200655
656 switch (s->data_state) {
657 case DATA_ST_INIT:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200658 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200659 "HTTP/1.0 200 OK\r\n"
660 "Cache-Control: no-cache\r\n"
661 "Connection: close\r\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +0200662 "Content-Type: %s\r\n",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100663 (s->data_ctx.stats.flags & STAT_FMT_CSV) ? "text/plain" : "text/html");
Willy Tarreau91861262007-10-17 17:06:05 +0200664
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100665 if (uri->refresh > 0 && !(s->data_ctx.stats.flags & STAT_NO_REFRESH))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200666 chunk_printf(&msg, "Refresh: %d\r\n",
Willy Tarreau91861262007-10-17 17:06:05 +0200667 uri->refresh);
668
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200669 chunk_printf(&msg, "\r\n");
Willy Tarreau91861262007-10-17 17:06:05 +0200670
671 s->txn.status = 200;
Willy Tarreau56a560a2009-09-22 19:27:35 +0200672 if (buffer_write_chunk(rep, &msg) >= 0)
673 return 0;
674
Willy Tarreau91861262007-10-17 17:06:05 +0200675 msg.len = 0;
676
677 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
678 s->flags |= SN_ERR_PRXCOND; // to mark that it comes from the proxy
679 if (!(s->flags & SN_FINST_MASK))
680 s->flags |= SN_FINST_R;
681
682 if (s->txn.meth == HTTP_METH_HEAD) {
683 /* that's all we return in case of HEAD request */
684 s->data_state = DATA_ST_FIN;
Willy Tarreau72b179a2008-08-28 16:01:32 +0200685 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200686 return 1;
687 }
688
689 s->data_state = DATA_ST_HEAD; /* let's start producing data */
690 /* fall through */
691
692 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100693 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +0200694 /* WARNING! This must fit in the first buffer !!! */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200695 chunk_printf(&msg,
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200696 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200697 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
698 "<style type=\"text/css\"><!--\n"
699 "body {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +0200700 " font-family: arial, helvetica, sans-serif;"
Willy Tarreau91861262007-10-17 17:06:05 +0200701 " font-size: 12px;"
702 " font-weight: normal;"
703 " color: black;"
704 " background: white;"
705 "}\n"
706 "th,td {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +0200707 " font-size: 10px;"
Willy Tarreau91861262007-10-17 17:06:05 +0200708 " align: center;"
709 "}\n"
710 "h1 {"
Willy Tarreauda6721b2009-07-15 10:07:05 +0200711 " font-size: x-large;"
Willy Tarreau91861262007-10-17 17:06:05 +0200712 " margin-bottom: 0.5em;"
713 "}\n"
714 "h2 {"
715 " font-family: helvetica, arial;"
716 " font-size: x-large;"
717 " font-weight: bold;"
718 " font-style: italic;"
719 " color: #6020a0;"
720 " margin-top: 0em;"
721 " margin-bottom: 0em;"
722 "}\n"
723 "h3 {"
724 " font-family: helvetica, arial;"
725 " font-size: 16px;"
726 " font-weight: bold;"
727 " color: #b00040;"
728 " background: #e8e8d0;"
729 " margin-top: 0em;"
730 " margin-bottom: 0em;"
731 "}\n"
732 "li {"
733 " margin-top: 0.25em;"
734 " margin-right: 2em;"
735 "}\n"
736 ".hr {margin-top: 0.25em;"
737 " border-color: black;"
738 " border-bottom-style: solid;"
739 "}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200740 ".titre {background: #20D0D0;color: #000000; font-weight: bold;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200741 ".total {background: #20D0D0;color: #ffff80;}\n"
742 ".frontend {background: #e8e8d0;}\n"
743 ".backend {background: #e8e8d0;}\n"
744 ".active0 {background: #ff9090;}\n"
745 ".active1 {background: #ffd020;}\n"
746 ".active2 {background: #ffffa0;}\n"
747 ".active3 {background: #c0ffc0;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100748 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
749 ".active5 {background: #a0e0a0;}\n" /* NOLB state shows darker than up */
750 ".active6 {background: #e0e0e0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200751 ".backup0 {background: #ff9090;}\n"
752 ".backup1 {background: #ff80ff;}\n"
753 ".backup2 {background: #c060ff;}\n"
754 ".backup3 {background: #b0d0ff;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100755 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
756 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
757 ".backup6 {background: #e0e0e0;}\n"
Willy Tarreauda6721b2009-07-15 10:07:05 +0200758 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
Willy Tarreau91861262007-10-17 17:06:05 +0200759 "table.tbl { border-collapse: collapse; border-style: none;}\n"
760 "table.tbl td { border-width: 1px 1px 1px 1px; border-style: solid solid solid solid; padding: 2px 3px; border-color: gray;}\n"
761 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
Krzysztof Piotr Oledzki619caca2009-10-03 15:46:08 +0200762 "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 +0200763 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200764 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200765 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
766 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
767 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
768 "-->\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200769 "</style></head>\n",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200770 (uri->flags&ST_SHNODE) ? " on " : "",
771 (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200772 );
Willy Tarreau55bb8452007-10-17 18:44:57 +0200773 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200774 print_csv_header(&msg);
Willy Tarreau55bb8452007-10-17 18:44:57 +0200775 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200776 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +0200777 return 0;
778
779 s->data_state = DATA_ST_INFO;
780 /* fall through */
781
782 case DATA_ST_INFO:
783 up = (now.tv_sec - start_date.tv_sec);
784
785 /* WARNING! this has to fit the first packet too.
786 * We are around 3.5 kB, add adding entries will
787 * become tricky if we want to support 4kB buffers !
788 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100789 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200790 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200791 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
792 PRODUCT_NAME "%s</a></h1>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200793 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200794 "<hr width=\"100%%\" class=\"hr\">\n"
795 "<h3>&gt; General process information</h3>\n"
796 "<table border=0 cols=4><tr><td align=\"left\" nowrap width=\"1%%\">\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100797 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200798 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200799 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
800 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
801 "current conns = %d; current pipes = %d/%d<br>\n"
802 "Running tasks: %d/%d<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200803 "</td><td align=\"center\" nowrap>\n"
804 "<table class=\"lgd\"><tr>\n"
805 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
806 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
807 "</tr><tr>\n"
808 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
809 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
810 "</tr><tr>\n"
811 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
812 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
813 "</tr><tr>\n"
814 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100815 "<td class=\"active6\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreau91861262007-10-17 17:06:05 +0200816 "</tr></table>\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100817 "Note: UP with load-balancing disabled is reported as \"NOLB\"."
Willy Tarreau91861262007-10-17 17:06:05 +0200818 "</td>"
819 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
820 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
821 "",
822 (uri->flags&ST_HIDEVER)?"":(STATS_VERSION_STRING),
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200823 pid, (uri->flags&ST_SHNODE) ? " on " : "", (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
824 (uri->flags&ST_SHDESC)? ": " : "", (uri->flags&ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
825 pid, relative_pid, global.nbproc,
Willy Tarreau91861262007-10-17 17:06:05 +0200826 up / 86400, (up % 86400) / 3600,
827 (up % 3600) / 60, (up % 60),
828 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
829 global.rlimit_memmax ? " MB" : "",
830 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +0100831 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100832 actconn, pipes_used, pipes_used+pipes_free,
833 run_queue_cur, nb_tasks_cur
Willy Tarreau91861262007-10-17 17:06:05 +0200834 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100835
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100836 if (s->data_ctx.stats.flags & STAT_HIDE_DOWN)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200837 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200838 "<li><a href=\"%s%s%s\">Show all servers</a><br>\n",
839 uri->uri_prefix,
840 "",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100841 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200842 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200843 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200844 "<li><a href=\"%s%s%s\">Hide 'DOWN' servers</a><br>\n",
845 uri->uri_prefix,
846 ";up",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100847 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +0200848
Willy Tarreau55bb8452007-10-17 18:44:57 +0200849 if (uri->refresh > 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100850 if (s->data_ctx.stats.flags & STAT_NO_REFRESH)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200851 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200852 "<li><a href=\"%s%s%s\">Enable refresh</a><br>\n",
853 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100854 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +0200855 "");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200856 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200857 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200858 "<li><a href=\"%s%s%s\">Disable refresh</a><br>\n",
859 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100860 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +0200861 ";norefresh");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200862 }
Willy Tarreau91861262007-10-17 17:06:05 +0200863
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200864 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200865 "<li><a href=\"%s%s%s\">Refresh now</a><br>\n",
866 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100867 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
868 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +0200869
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200870 chunk_printf(&msg,
Willy Tarreau5031e6a2007-10-18 11:05:48 +0200871 "<li><a href=\"%s;csv%s\">CSV export</a><br>\n",
872 uri->uri_prefix,
873 (uri->refresh > 0) ? ";norefresh" : "");
874
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200875 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200876 "</td>"
877 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
878 "<b>External ressources:</b><ul style=\"margin-top: 0.25em;\">\n"
879 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
880 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
881 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
882 "</ul>"
883 "</td>"
884 "</tr></table>\n"
885 ""
886 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100887
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200888 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +0200889 return 0;
890 }
Willy Tarreau91861262007-10-17 17:06:05 +0200891
Willy Tarreau91861262007-10-17 17:06:05 +0200892 s->data_ctx.stats.px = proxy;
893 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
894 s->data_state = DATA_ST_LIST;
895 /* fall through */
896
897 case DATA_ST_LIST:
898 /* dump proxies */
899 while (s->data_ctx.stats.px) {
900 px = s->data_ctx.stats.px;
901 /* skip the disabled proxies and non-networked ones */
902 if (px->state != PR_STSTOPPED && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100903 if (stats_dump_proxy(s, px, uri) == 0)
Willy Tarreau91861262007-10-17 17:06:05 +0200904 return 0;
905
906 s->data_ctx.stats.px = px->next;
907 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
908 }
909 /* here, we just have reached the last proxy */
910
911 s->data_state = DATA_ST_END;
912 /* fall through */
913
914 case DATA_ST_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100915 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200916 chunk_printf(&msg, "</body></html>\n");
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200917 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +0200918 return 0;
919 }
Willy Tarreau91861262007-10-17 17:06:05 +0200920
921 s->data_state = DATA_ST_FIN;
922 /* fall through */
923
924 case DATA_ST_FIN:
Willy Tarreau72b179a2008-08-28 16:01:32 +0200925 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200926 return 1;
927
928 default:
929 /* unknown state ! */
Willy Tarreau72b179a2008-08-28 16:01:32 +0200930 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200931 return -1;
932 }
933}
934
935
936/*
937 * Dumps statistics for a proxy.
938 * Returns 0 if it had to stop dumping data because of lack of buffer space,
939 * ot non-zero if everything completed.
940 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100941int stats_dump_proxy(struct session *s, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +0200942{
943 struct buffer *rep = s->rep;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100944 struct server *sv, *svs; /* server and server-state, server-state=server or server->tracked */
Willy Tarreau91861262007-10-17 17:06:05 +0200945 struct chunk msg;
946
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200947 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +0200948
949 switch (s->data_ctx.stats.px_st) {
950 case DATA_ST_PX_INIT:
951 /* we are on a new proxy */
952
953 if (uri && uri->scope) {
954 /* we have a limited scope, we have to check the proxy name */
955 struct stat_scope *scope;
956 int len;
957
958 len = strlen(px->id);
959 scope = uri->scope;
960
961 while (scope) {
962 /* match exact proxy name */
963 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
964 break;
965
966 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +0200967 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +0200968 break;
969 scope = scope->next;
970 }
971
972 /* proxy name not found : don't dump anything */
973 if (scope == NULL)
974 return 1;
975 }
976
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100977 if ((s->data_ctx.stats.flags & STAT_BOUND) && (s->data_ctx.stats.iid != -1) &&
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +0100978 (px->uuid != s->data_ctx.stats.iid))
979 return 1;
980
Willy Tarreau91861262007-10-17 17:06:05 +0200981 s->data_ctx.stats.px_st = DATA_ST_PX_TH;
982 /* fall through */
983
984 case DATA_ST_PX_TH:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100985 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +0200986 /* print a new table */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200987 chunk_printf(&msg,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200988 "<table class=\"tbl\" width=\"100%%\">\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +0200989 "<tr align=\"center\" class=\"titre\">"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200990 "<th class=\"pxname\" width=\"10%%\">%s</th>"
991 "<th class=\"%s\" width=\"90%%\">%s</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +0200992 "</tr>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200993 "</table>\n"
994 "<table cols=\"29\" class=\"tbl\" width=\"100%%\">\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +0200995 "<tr align=\"center\" class=\"titre\">"
996 "<th rowspan=2></th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +0200997 "<th colspan=3>Queue</th>"
998 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +0200999 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001000 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001001 "<th colspan=9>Server</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001002 "</tr>\n"
1003 "<tr align=\"center\" class=\"titre\">"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001004 "<th>Cur</th><th>Max</th><th>Limit</th>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001005 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001006 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001007 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001008 "<th>Resp</th><th>Retr</th><th>Redis</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001009 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001010 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
1011 "<th>Thrtle</th>\n"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001012 "</tr>",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001013 px->id,
1014 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001015
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001016 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001017 return 0;
1018 }
Willy Tarreau91861262007-10-17 17:06:05 +02001019
1020 s->data_ctx.stats.px_st = DATA_ST_PX_FE;
1021 /* fall through */
1022
1023 case DATA_ST_PX_FE:
1024 /* print the frontend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001025 if ((px->cap & PR_CAP_FE) &&
1026 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_FE)))) {
1027 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001028 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001029 /* name, queue */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001030 "<tr align=center class=\"frontend\"><td>Frontend</td><td colspan=3></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001031 /* sessions rate : current, max, limit */
1032 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
1033 /* sessions : current, max, limit, total, lbtot */
1034 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001035 "<td align=right>%s</td><td align=right></td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001036 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001037 "<td align=right>%s</td><td align=right>%s</td>"
1038 "",
Willy Tarreaua3e49422009-05-10 19:19:41 +02001039 U2H0(read_freq_ctr(&px->fe_sess_per_sec)),
1040 U2H1(px->fe_sps_max), LIM2A2(px->fe_sps_lim, "-"),
1041 U2H3(px->feconn), U2H4(px->feconn_max), U2H5(px->maxconn),
1042 U2H6(px->cum_feconn), U2H7(px->bytes_in), U2H8(px->bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001043
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001044 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001045 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001046 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001047 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001048 "<td align=right>%s</td><td align=right></td><td align=right></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001049 /* warnings: retries, redispatches */
1050 "<td align=right></td><td align=right></td>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001051 /* server status : reflect frontend status */
Willy Tarreau91861262007-10-17 17:06:05 +02001052 "<td align=center>%s</td>"
1053 /* rest of server: nothing */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001054 "<td align=center colspan=8></td></tr>"
Willy Tarreau91861262007-10-17 17:06:05 +02001055 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001056 U2H0(px->denied_req), U2H1(px->denied_resp),
1057 U2H2(px->failed_req),
Willy Tarreau91861262007-10-17 17:06:05 +02001058 px->state == PR_STRUN ? "OPEN" :
1059 px->state == PR_STIDLE ? "FULL" : "STOP");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001060 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001061 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001062 /* pxid, name, queue cur, queue max, */
1063 "%s,FRONTEND,,,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001064 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001065 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001066 /* bytes : in, out */
1067 "%lld,%lld,"
1068 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001069 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001070 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001071 "%lld,,,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001072 /* warnings: retries, redispatches */
1073 ",,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001074 /* server status : reflect frontend status */
1075 "%s,"
1076 /* rest of server: nothing */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001077 ",,,,,,,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001078 /* pid, iid, sid, throttle, lbtot, tracked, type */
1079 "%d,%d,0,,,,%d,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001080 /* rate, rate_lim, rate_max */
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001081 "%u,%u,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001082 /* check_status, check_code, check_duration */
1083 ",,,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001084 "\n",
1085 px->id,
1086 px->feconn, px->feconn_max, px->maxconn, px->cum_feconn,
1087 px->bytes_in, px->bytes_out,
1088 px->denied_req, px->denied_resp,
1089 px->failed_req,
1090 px->state == PR_STRUN ? "OPEN" :
Willy Tarreaudcd47712007-11-04 23:35:08 +01001091 px->state == PR_STIDLE ? "FULL" : "STOP",
Willy Tarreau7f062c42009-03-05 18:43:00 +01001092 relative_pid, px->uuid, STATS_TYPE_FE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001093 read_freq_ctr(&px->fe_sess_per_sec),
1094 px->fe_sps_lim, px->fe_sps_max);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001095 }
Willy Tarreau91861262007-10-17 17:06:05 +02001096
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001097 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001098 return 0;
1099 }
1100
1101 s->data_ctx.stats.sv = px->srv; /* may be NULL */
1102 s->data_ctx.stats.px_st = DATA_ST_PX_SV;
1103 /* fall through */
1104
1105 case DATA_ST_PX_SV:
1106 /* stats.sv has been initialized above */
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001107 for (; s->data_ctx.stats.sv != NULL; s->data_ctx.stats.sv = sv->next) {
1108
Willy Tarreau2ea81932007-11-30 12:04:38 +01001109 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 +02001110
1111 sv = s->data_ctx.stats.sv;
1112
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001113 if (s->data_ctx.stats.flags & STAT_BOUND) {
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001114 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SV)))
1115 break;
1116
1117 if (s->data_ctx.stats.sid != -1 && sv->puid != s->data_ctx.stats.sid)
1118 continue;
1119 }
1120
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001121 if (sv->tracked)
1122 svs = sv->tracked;
1123 else
1124 svs = sv;
1125
Willy Tarreau91861262007-10-17 17:06:05 +02001126 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001127 if (!(svs->state & SRV_CHECKED))
Willy Tarreau2ea81932007-11-30 12:04:38 +01001128 sv_state = 6;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001129 else if (svs->state & SRV_RUNNING) {
1130 if (svs->health == svs->rise + svs->fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02001131 sv_state = 3; /* UP */
1132 else
1133 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01001134
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001135 if (svs->state & SRV_GOINGDOWN)
Willy Tarreau2ea81932007-11-30 12:04:38 +01001136 sv_state += 2;
1137 }
Willy Tarreau91861262007-10-17 17:06:05 +02001138 else
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001139 if (svs->health)
Willy Tarreau91861262007-10-17 17:06:05 +02001140 sv_state = 1; /* going up */
1141 else
1142 sv_state = 0; /* DOWN */
1143
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001144 if ((sv_state == 0) && (s->data_ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02001145 /* do not report servers which are DOWN */
1146 s->data_ctx.stats.sv = sv->next;
1147 continue;
1148 }
1149
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001150 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001151 static char *srv_hlt_st[7] = { "DOWN", "DN %d/%d &uarr;",
1152 "UP %d/%d &darr;", "UP",
1153 "NOLB %d/%d &darr;", "NOLB",
1154 "<i>no check</i>" };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001155 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001156 /* name */
1157 "<tr align=\"center\" class=\"%s%d\"><td>%s</td>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001158 /* queue : current, max, limit */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001159 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001160 /* sessions rate : current, max, limit */
1161 "<td align=right>%s</td><td align=right>%s</td><td align=right></td>"
1162 /* sessions : current, max, limit, total, lbtot */
1163 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001164 "<td align=right>%s</td><td align=right>%s</td>"
1165 "",
1166 (sv->state & SRV_BACKUP) ? "backup" : "active",
1167 sv_state, sv->id,
1168 U2H0(sv->nbpend), U2H1(sv->nbpend_max), LIM2A2(sv->maxqueue, "-"),
Willy Tarreaua3e49422009-05-10 19:19:41 +02001169 U2H3(read_freq_ctr(&sv->sess_per_sec)), U2H4(sv->sps_max),
1170 U2H5(sv->cur_sess), U2H6(sv->cur_sess_max), LIM2A7(sv->maxconn, "-"),
1171 U2H8(sv->cum_sess), U2H9(sv->cum_lbconn));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001172
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001173 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001174 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001175 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001176 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001177 "<td align=right></td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001178 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001179 "<td align=right></td><td align=right>%s</td><td align=right>%s</td>\n"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001180 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001181 "<td align=right>%lld</td><td align=right>%lld</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001182 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001183 U2H0(sv->bytes_in), U2H1(sv->bytes_out),
1184 U2H2(sv->failed_secu),
1185 U2H3(sv->failed_conns), U2H4(sv->failed_resp),
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001186 sv->retries, sv->redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001187
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001188 /* status, lest check */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001189 chunk_printf(&msg, "<td nowrap>");
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001190
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001191 if (sv->state & SRV_CHECKED) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001192 chunk_printf(&msg, "%s ",
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001193 human_time(now.tv_sec - sv->last_change, 1));
1194
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001195 chunk_printf(&msg,
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001196 srv_hlt_st[sv_state],
1197 (svs->state & SRV_RUNNING) ? (svs->health - svs->rise + 1) : (svs->health),
1198 (svs->state & SRV_RUNNING) ? (svs->fall) : (svs->rise));
1199
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001200 chunk_printf(&msg, "</td><td title=\"%s\" nowrap> %s%s",
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001201 get_check_status_description(sv->check_status),
1202 tv_iszero(&sv->check_start)?"":"* ",
1203 get_check_status_info(sv->check_status));
1204
1205 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001206 chunk_printf(&msg, "/%d", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001207
1208 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001209 chunk_printf(&msg, " in %lums", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001210 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001211 chunk_printf(&msg, "</td><td>");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001212 }
Willy Tarreau91861262007-10-17 17:06:05 +02001213
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001214 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001215 /* weight */
1216 "</td><td>%d</td>"
1217 /* act, bck */
1218 "<td>%s</td><td>%s</td>"
1219 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01001220 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau91861262007-10-17 17:06:05 +02001221 (sv->state & SRV_BACKUP) ? "-" : "Y",
1222 (sv->state & SRV_BACKUP) ? "Y" : "-");
1223
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001224 /* check failures: unique, fatal, down time */
Willy Tarreau55bb8452007-10-17 18:44:57 +02001225 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001226 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02001227 "<td align=right>%lld</td><td align=right>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001228 "<td nowrap align=right>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001229 "",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001230 svs->failed_checks, svs->down_trans,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001231 human_time(srv_downtime(sv), 1));
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001232 else if (sv != svs)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001233 chunk_printf(&msg,
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001234 "<td nowrap colspan=3>via %s/%s</td>", svs->proxy->id, svs->id);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001235 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001236 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001237 "<td colspan=3></td>");
1238
1239 /* throttle */
1240 if ((sv->state & SRV_WARMINGUP) &&
1241 now.tv_sec < sv->last_change + sv->slowstart &&
1242 now.tv_sec >= sv->last_change) {
1243 unsigned int ratio;
1244 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001245 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001246 "<td>%d %%</td></tr>\n", ratio);
1247 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001248 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001249 "<td>-</td></tr>\n");
1250 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02001251 } else {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001252 static char *srv_hlt_st[7] = { "DOWN,", "DOWN %d/%d,",
1253 "UP %d/%d,", "UP,",
1254 "NOLB %d/%d,", "NOLB,",
1255 "no check," };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001256 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001257 /* pxid, name */
1258 "%s,%s,"
1259 /* queue : current, max */
1260 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001261 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001262 "%d,%d,%s,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001263 /* bytes : in, out */
1264 "%lld,%lld,"
1265 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001266 ",%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001267 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001268 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001269 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001270 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001271 "",
1272 px->id, sv->id,
1273 sv->nbpend, sv->nbpend_max,
Willy Tarreaudcd47712007-11-04 23:35:08 +01001274 sv->cur_sess, sv->cur_sess_max, LIM2A0(sv->maxconn, ""), sv->cum_sess,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001275 sv->bytes_in, sv->bytes_out,
1276 sv->failed_secu,
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001277 sv->failed_conns, sv->failed_resp,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001278 sv->retries, sv->redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001279
Willy Tarreau55bb8452007-10-17 18:44:57 +02001280 /* status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001281 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001282 srv_hlt_st[sv_state],
1283 (sv->state & SRV_RUNNING) ? (sv->health - sv->rise + 1) : (sv->health),
1284 (sv->state & SRV_RUNNING) ? (sv->fall) : (sv->rise));
Willy Tarreau91861262007-10-17 17:06:05 +02001285
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001286 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001287 /* weight, active, backup */
1288 "%d,%d,%d,"
1289 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01001290 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001291 (sv->state & SRV_BACKUP) ? 0 : 1,
1292 (sv->state & SRV_BACKUP) ? 1 : 0);
1293
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001294 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreau55bb8452007-10-17 18:44:57 +02001295 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001296 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02001297 "%lld,%lld,%d,%d,",
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001298 sv->failed_checks, sv->down_trans,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001299 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
Willy Tarreau55bb8452007-10-17 18:44:57 +02001300 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001301 chunk_printf(&msg,
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001302 ",,,,");
1303
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001304 /* queue limit, pid, iid, sid, */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001305 chunk_printf(&msg,
Willy Tarreaudcd47712007-11-04 23:35:08 +01001306 "%s,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001307 "%d,%d,%d,",
Willy Tarreaudcd47712007-11-04 23:35:08 +01001308 LIM2A0(sv->maxqueue, ""),
1309 relative_pid, px->uuid, sv->puid);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001310
1311 /* throttle */
1312 if ((sv->state & SRV_WARMINGUP) &&
1313 now.tv_sec < sv->last_change + sv->slowstart &&
1314 now.tv_sec >= sv->last_change) {
1315 unsigned int ratio;
1316 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001317 chunk_printf(&msg, "%d", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001318 }
1319
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001320 /* sessions: lbtot */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001321 chunk_printf(&msg, ",%lld,", sv->cum_lbconn);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001322
1323 /* tracked */
1324 if (sv->tracked)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001325 chunk_printf(&msg, "%s/%s,",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001326 sv->tracked->proxy->id, sv->tracked->id);
1327 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001328 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001329
Willy Tarreau7f062c42009-03-05 18:43:00 +01001330 /* type */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001331 chunk_printf(&msg, "%d,", STATS_TYPE_SV);
Willy Tarreau7f062c42009-03-05 18:43:00 +01001332
1333 /* rate */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001334 chunk_printf(&msg, "%u,,%u,",
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001335 read_freq_ctr(&sv->sess_per_sec),
1336 sv->sps_max);
Willy Tarreau7f062c42009-03-05 18:43:00 +01001337
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001338 if (sv->state & SRV_CHECKED) {
1339 /* check_status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001340 chunk_printf(&msg, "%s,", get_check_status_info(sv->check_status));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001341
1342 /* check_code */
1343 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001344 chunk_printf(&msg, "%u,", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001345 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001346 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001347
1348 /* check_duration */
1349 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001350 chunk_printf(&msg, "%lu,", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001351 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001352 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001353
1354 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001355 chunk_printf(&msg, ",,,");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001356 }
1357
Willy Tarreau7f062c42009-03-05 18:43:00 +01001358 /* finish with EOL */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001359 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001360 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001361 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001362 return 0;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001363 } /* for sv */
Willy Tarreau91861262007-10-17 17:06:05 +02001364
1365 s->data_ctx.stats.px_st = DATA_ST_PX_BE;
1366 /* fall through */
1367
1368 case DATA_ST_PX_BE:
1369 /* print the backend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001370 if ((px->cap & PR_CAP_BE) &&
1371 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_BE)))) {
1372 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001373 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001374 /* name */
1375 "<tr align=center class=\"backend\"><td>Backend</td>"
1376 /* queue : current, max */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001377 "<td align=right>%s</td><td align=right>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001378 /* sessions rate : current, max, limit */
1379 "<td align=right>%s</td><td align=right>%s</td><td align=right></td>"
1380 "",
1381 U2H0(px->nbpend) /* or px->totpend ? */, U2H1(px->nbpend_max),
1382 U2H2(read_freq_ctr(&px->be_sess_per_sec)), U2H3(px->be_sps_max));
1383
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001384 chunk_printf(&msg,
Willy Tarreaua3e49422009-05-10 19:19:41 +02001385 /* sessions : current, max, limit, total, lbtot */
1386 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001387 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001388 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001389 "<td align=right>%s</td><td align=right>%s</td>"
1390 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001391 U2H2(px->beconn), U2H3(px->beconn_max), U2H4(px->fullconn),
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001392 U2H6(px->cum_beconn), U2H7(px->cum_lbconn),
1393 U2H8(px->bytes_in), U2H9(px->bytes_out));
1394
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001395 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001396 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001397 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001398 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001399 "<td align=right></td><td align=right>%s</td><td align=right>%s</td>\n"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001400 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001401 "<td align=right>%lld</td><td align=right>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001402 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau91861262007-10-17 17:06:05 +02001403 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001404 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau91861262007-10-17 17:06:05 +02001405 * active and backups. */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001406 "<td align=center nowrap>%s %s</td><td align=center>&nbsp;</td><td align=center>%d</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001407 "<td align=center>%d</td><td align=center>%d</td>"
1408 "",
1409 U2H0(px->denied_req), U2H1(px->denied_resp),
1410 U2H2(px->failed_conns), U2H3(px->failed_resp),
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001411 px->retries, px->redispatches,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001412 human_time(now.tv_sec - px->last_change, 1),
Willy Tarreau2ea81932007-11-30 12:04:38 +01001413 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
1414 "<font color=\"red\"><b>DOWN</b></font>",
Willy Tarreau5542af62007-12-03 02:04:00 +01001415 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01001416 px->srv_act, px->srv_bck);
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001417
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001418 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001419 /* rest of backend: nothing, down transitions, total downtime, throttle */
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001420 "<td align=center>&nbsp;</td><td align=\"right\">%d</td>"
1421 "<td align=\"right\" nowrap>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001422 "<td></td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001423 "</tr>",
1424 px->down_trans,
1425 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001426 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001427 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001428 /* pxid, name */
1429 "%s,BACKEND,"
1430 /* queue : current, max */
1431 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001432 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001433 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001434 /* bytes : in, out */
1435 "%lld,%lld,"
1436 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001437 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001438 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001439 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001440 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001441 "%lld,%lld,"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001442 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau55bb8452007-10-17 18:44:57 +02001443 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001444 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau55bb8452007-10-17 18:44:57 +02001445 * active and backups. */
1446 "%s,"
1447 "%d,%d,%d,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001448 /* rest of backend: nothing, down transitions, last change, total downtime */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001449 ",%d,%d,%d,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001450 /* pid, iid, sid, throttle, lbtot, tracked, type */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001451 "%d,%d,0,,%lld,,%d,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001452 /* rate, rate_lim, rate_max, */
1453 "%u,,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001454 /* check_status, check_code, check_duration */
1455 ",,,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001456 "\n",
1457 px->id,
1458 px->nbpend /* or px->totpend ? */, px->nbpend_max,
1459 px->beconn, px->beconn_max, px->fullconn, px->cum_beconn,
1460 px->bytes_in, px->bytes_out,
1461 px->denied_req, px->denied_resp,
1462 px->failed_conns, px->failed_resp,
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001463 px->retries, px->redispatches,
Willy Tarreau20697042007-11-15 23:26:18 +01001464 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
Willy Tarreau5542af62007-12-03 02:04:00 +01001465 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01001466 px->srv_act, px->srv_bck,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001467 px->down_trans, (int)(now.tv_sec - px->last_change),
Willy Tarreau20697042007-11-15 23:26:18 +01001468 px->srv?be_downtime(px):0,
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001469 relative_pid, px->uuid,
Willy Tarreau7f062c42009-03-05 18:43:00 +01001470 px->cum_lbconn, STATS_TYPE_BE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001471 read_freq_ctr(&px->be_sess_per_sec),
1472 px->be_sps_max);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001473 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001474 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001475 return 0;
1476 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001477
Willy Tarreau91861262007-10-17 17:06:05 +02001478 s->data_ctx.stats.px_st = DATA_ST_PX_END;
1479 /* fall through */
1480
1481 case DATA_ST_PX_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001482 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001483 chunk_printf(&msg, "</table><p>\n");
Willy Tarreau91861262007-10-17 17:06:05 +02001484
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001485 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001486 return 0;
1487 }
Willy Tarreau91861262007-10-17 17:06:05 +02001488
1489 s->data_ctx.stats.px_st = DATA_ST_PX_FIN;
1490 /* fall through */
1491
1492 case DATA_ST_PX_FIN:
1493 return 1;
1494
1495 default:
1496 /* unknown state, we should put an abort() here ! */
1497 return 1;
1498 }
1499}
1500
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001501
1502/* This function is called to send output to the response buffer.
1503 * It dumps the sessions states onto the output buffer <rep>.
1504 * Expects to be called with client socket shut down on input.
1505 * s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02001506 * It returns 0 as long as it does not complete, non-zero upon completion.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001507 */
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02001508int stats_dump_sess_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001509{
1510 struct chunk msg;
1511
1512 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
1513 /* If we're forced to shut down, we might have to remove our
1514 * reference to the last session being dumped.
1515 */
1516 if (s->data_state == DATA_ST_LIST) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001517 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001518 LIST_DEL(&s->data_ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001519 LIST_INIT(&s->data_ctx.sess.bref.users);
1520 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001521 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02001522 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001523 }
1524
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001525 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001526
1527 switch (s->data_state) {
1528 case DATA_ST_INIT:
1529 /* the function had not been called yet, let's prepare the
1530 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001531 * pointer to the first in the global list. When a target
1532 * session is being destroyed, it is responsible for updating
1533 * this pointer. We know we have reached the end when this
1534 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001535 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001536 LIST_INIT(&s->data_ctx.sess.bref.users);
1537 s->data_ctx.sess.bref.ref = sessions.n;
1538 s->data_state = DATA_ST_LIST;
1539 /* fall through */
1540
1541 case DATA_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001542 /* first, let's detach the back-ref from a possible previous session */
1543 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
1544 LIST_DEL(&s->data_ctx.sess.bref.users);
1545 LIST_INIT(&s->data_ctx.sess.bref.users);
1546 }
1547
1548 /* and start from where we stopped */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001549 while (s->data_ctx.sess.bref.ref != &sessions) {
1550 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
1551 struct session *curr_sess;
1552
1553 curr_sess = LIST_ELEM(s->data_ctx.sess.bref.ref, struct session *, list);
1554
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001555 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001556 "%p: proto=%s",
1557 curr_sess,
1558 curr_sess->listener->proto->name);
1559
1560 switch (curr_sess->listener->proto->sock_family) {
1561 case AF_INET:
1562 inet_ntop(AF_INET,
1563 (const void *)&((struct sockaddr_in *)&curr_sess->cli_addr)->sin_addr,
1564 pn, sizeof(pn));
1565
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001566 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001567 " src=%s:%d fe=%s be=%s srv=%s",
1568 pn,
1569 ntohs(((struct sockaddr_in *)&curr_sess->cli_addr)->sin_port),
1570 curr_sess->fe->id,
1571 curr_sess->be->id,
1572 curr_sess->srv ? curr_sess->srv->id : "<none>"
1573 );
1574 break;
1575 case AF_INET6:
1576 inet_ntop(AF_INET6,
1577 (const void *)&((struct sockaddr_in6 *)(&curr_sess->cli_addr))->sin6_addr,
1578 pn, sizeof(pn));
1579
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001580 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001581 " src=%s:%d fe=%s be=%s srv=%s",
1582 pn,
1583 ntohs(((struct sockaddr_in6 *)&curr_sess->cli_addr)->sin6_port),
1584 curr_sess->fe->id,
1585 curr_sess->be->id,
1586 curr_sess->srv ? curr_sess->srv->id : "<none>"
1587 );
1588
1589 break;
1590 case AF_UNIX:
1591 /* no more information to print right now */
1592 break;
1593 }
1594
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001595 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001596 " as=%d ts=%02x age=%s calls=%d",
Willy Tarreau8a5c6262008-12-08 00:16:21 +01001597 curr_sess->ana_state, curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01001598 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
1599 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001600
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001601 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001602 " rq[f=%06xh,l=%d,an=%02xh,rx=%s",
1603 curr_sess->req->flags,
1604 curr_sess->req->l,
1605 curr_sess->req->analysers,
1606 curr_sess->req->rex ?
1607 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
1608 TICKS_TO_MS(1000)) : "");
1609
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001610 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001611 ",wx=%s",
1612 curr_sess->req->wex ?
1613 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
1614 TICKS_TO_MS(1000)) : "");
1615
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001616 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001617 ",ax=%s]",
1618 curr_sess->req->analyse_exp ?
1619 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
1620 TICKS_TO_MS(1000)) : "");
1621
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001622 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001623 " rp[f=%06xh,l=%d,an=%02xh,rx=%s",
1624 curr_sess->rep->flags,
1625 curr_sess->rep->l,
1626 curr_sess->rep->analysers,
1627 curr_sess->rep->rex ?
1628 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
1629 TICKS_TO_MS(1000)) : "");
1630
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001631 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001632 ",wx=%s",
1633 curr_sess->rep->wex ?
1634 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
1635 TICKS_TO_MS(1000)) : "");
1636
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001637 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001638 ",ax=%s]",
1639 curr_sess->rep->analyse_exp ?
1640 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
1641 TICKS_TO_MS(1000)) : "");
1642
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001643 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001644 " s0=[%d,%1xh,fd=%d,ex=%s]",
1645 curr_sess->si[0].state,
1646 curr_sess->si[0].flags,
1647 curr_sess->si[0].fd,
1648 curr_sess->si[0].exp ?
1649 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
1650 TICKS_TO_MS(1000)) : "");
1651
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001652 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001653 " s1=[%d,%1xh,fd=%d,ex=%s]",
1654 curr_sess->si[1].state,
1655 curr_sess->si[1].flags,
1656 curr_sess->si[1].fd,
1657 curr_sess->si[1].exp ?
1658 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
1659 TICKS_TO_MS(1000)) : "");
1660
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001661 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001662 " exp=%s",
1663 curr_sess->task->expire ?
1664 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
1665 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01001666 if (task_in_rq(curr_sess->task))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001667 chunk_printf(&msg, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001668
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001669 chunk_printf(&msg, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001670
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02001671 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001672 /* let's try again later from this session. We add ourselves into
1673 * this session's users so that it can remove us upon termination.
1674 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001675 LIST_ADDQ(&curr_sess->back_refs, &s->data_ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02001676 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001677 }
1678
1679 s->data_ctx.sess.bref.ref = curr_sess->list.n;
1680 }
1681 s->data_state = DATA_ST_FIN;
1682 /* fall through */
1683
1684 default:
1685 s->data_state = DATA_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02001686 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001687 }
1688}
1689
Willy Tarreau74808cb2009-03-04 15:53:18 +01001690/* print a line of error buffer (limited to 70 bytes) to <out>. The format is :
1691 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
1692 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
1693 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
1694 * lines are respected within the limit of 70 output chars. Lines that are
1695 * continuation of a previous truncated line begin with "+" instead of " "
1696 * after the offset. The new pointer is returned.
1697 */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001698static int dump_error_line(struct chunk *out, struct error_snapshot *err,
1699 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01001700{
1701 int end;
1702 unsigned char c;
1703
1704 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001705 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01001706 return ptr;
1707
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001708 chunk_printf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01001709
Willy Tarreau61b34732009-10-03 23:49:35 +02001710 while (ptr < err->len && ptr < sizeof(err->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001711 c = err->buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01001712 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001713 if (out->len > end - 2)
1714 break;
1715 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01001716 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001717 if (out->len > end - 3)
1718 break;
1719 out->str[out->len++] = '\\';
1720 switch (c) {
1721 case '\t': c = 't'; break;
1722 case '\n': c = 'n'; break;
1723 case '\r': c = 'r'; break;
1724 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01001725 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001726 }
1727 out->str[out->len++] = c;
1728 } else {
1729 if (out->len > end - 5)
1730 break;
1731 out->str[out->len++] = '\\';
1732 out->str[out->len++] = 'x';
1733 out->str[out->len++] = hextab[(c >> 4) & 0xF];
1734 out->str[out->len++] = hextab[c & 0xF];
1735 }
1736 if (err->buf[ptr++] == '\n') {
1737 /* we had a line break, let's return now */
1738 out->str[out->len++] = '\n';
1739 *line = ptr;
1740 return ptr;
1741 }
1742 }
1743 /* we have an incomplete line, we return it as-is */
1744 out->str[out->len++] = '\n';
1745 return ptr;
1746}
1747
1748/* This function is called to send output to the response buffer.
1749 * It dumps the errors logged in proxies onto the output buffer <rep>.
1750 * Expects to be called with client socket shut down on input.
1751 * s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau61b34732009-10-03 23:49:35 +02001752 * It returns 0 as long as it does not complete, non-zero upon completion.
Willy Tarreau74808cb2009-03-04 15:53:18 +01001753 */
Willy Tarreau61b34732009-10-03 23:49:35 +02001754int stats_dump_errors_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau74808cb2009-03-04 15:53:18 +01001755{
1756 extern const char *monthname[12];
1757 struct chunk msg;
1758
Willy Tarreau61b34732009-10-03 23:49:35 +02001759 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW)))
1760 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001761
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001762 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau74808cb2009-03-04 15:53:18 +01001763
1764 if (!s->data_ctx.errors.px) {
1765 /* the function had not been called yet, let's prepare the
1766 * buffer for a response.
1767 */
Willy Tarreau74808cb2009-03-04 15:53:18 +01001768 s->data_ctx.errors.px = proxy;
1769 s->data_ctx.errors.buf = 0;
1770 s->data_ctx.errors.bol = 0;
1771 s->data_ctx.errors.ptr = -1;
1772 }
1773
1774 /* we have two inner loops here, one for the proxy, the other one for
1775 * the buffer.
1776 */
1777 while (s->data_ctx.errors.px) {
1778 struct error_snapshot *es;
1779
1780 if (s->data_ctx.errors.buf == 0)
1781 es = &s->data_ctx.errors.px->invalid_req;
1782 else
1783 es = &s->data_ctx.errors.px->invalid_rep;
1784
1785 if (!es->when.tv_sec)
1786 goto next;
1787
1788 if (s->data_ctx.errors.iid >= 0 &&
1789 s->data_ctx.errors.px->uuid != s->data_ctx.errors.iid &&
1790 es->oe->uuid != s->data_ctx.errors.iid)
1791 goto next;
1792
1793 if (s->data_ctx.errors.ptr < 0) {
1794 /* just print headers now */
1795
1796 char pn[INET6_ADDRSTRLEN];
1797 struct tm tm;
1798
1799 get_localtime(es->when.tv_sec, &tm);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001800 chunk_printf(&msg, "\n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01001801 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001802 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01001803
1804
1805 if (es->src.ss_family == AF_INET)
1806 inet_ntop(AF_INET,
1807 (const void *)&((struct sockaddr_in *)&es->src)->sin_addr,
1808 pn, sizeof(pn));
1809 else
1810 inet_ntop(AF_INET6,
1811 (const void *)&((struct sockaddr_in6 *)(&es->src))->sin6_addr,
1812 pn, sizeof(pn));
1813
1814 switch (s->data_ctx.errors.buf) {
1815 case 0:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001816 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001817 " frontend %s (#%d): invalid request\n"
1818 " src %s, session #%d, backend %s (#%d), server %s (#%d)\n"
1819 " request length %d bytes, error at position %d:\n\n",
1820 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
1821 pn, es->sid, es->oe->id, es->oe->uuid,
1822 es->srv ? es->srv->id : "<NONE>",
1823 es->srv ? es->srv->puid : -1,
1824 es->len, es->pos);
1825 break;
1826 case 1:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001827 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001828 " backend %s (#%d) : invalid response\n"
1829 " src %s, session #%d, frontend %s (#%d), server %s (#%d)\n"
1830 " response length %d bytes, error at position %d:\n\n",
1831 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
1832 pn, es->sid, es->oe->id, es->oe->uuid,
1833 es->srv ? es->srv->id : "<NONE>",
1834 es->srv ? es->srv->puid : -1,
1835 es->len, es->pos);
1836 break;
1837 }
1838
Willy Tarreau61b34732009-10-03 23:49:35 +02001839 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001840 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02001841 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001842 }
1843 s->data_ctx.errors.ptr = 0;
1844 s->data_ctx.errors.sid = es->sid;
1845 }
1846
1847 if (s->data_ctx.errors.sid != es->sid) {
1848 /* the snapshot changed while we were dumping it */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001849 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001850 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau61b34732009-10-03 23:49:35 +02001851 if (buffer_feed_chunk(rep, &msg) >= 0)
1852 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001853 goto next;
1854 }
1855
1856 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau61b34732009-10-03 23:49:35 +02001857 while (s->data_ctx.errors.ptr < es->len && s->data_ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001858 int newptr;
1859 int newline;
1860
1861 newline = s->data_ctx.errors.bol;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001862 newptr = dump_error_line(&msg, es, &newline, s->data_ctx.errors.ptr);
Willy Tarreau74808cb2009-03-04 15:53:18 +01001863 if (newptr == s->data_ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02001864 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001865
Willy Tarreau61b34732009-10-03 23:49:35 +02001866 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001867 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02001868 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001869 }
1870 s->data_ctx.errors.ptr = newptr;
1871 s->data_ctx.errors.bol = newline;
1872 };
1873 next:
1874 s->data_ctx.errors.bol = 0;
1875 s->data_ctx.errors.ptr = -1;
1876 s->data_ctx.errors.buf++;
1877 if (s->data_ctx.errors.buf > 1) {
1878 s->data_ctx.errors.buf = 0;
1879 s->data_ctx.errors.px = s->data_ctx.errors.px->next;
1880 }
1881 }
1882
1883 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02001884 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001885}
1886
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001887
Willy Tarreau10522fd2008-07-09 20:12:41 +02001888static struct cfg_kw_list cfg_kws = {{ },{
1889 { CFG_GLOBAL, "stats", stats_parse_global },
1890 { 0, NULL, NULL },
1891}};
1892
1893__attribute__((constructor))
1894static void __dumpstats_module_init(void)
1895{
1896 cfg_register_keywords(&cfg_kws);
1897}
1898
Willy Tarreau91861262007-10-17 17:06:05 +02001899/*
1900 * Local variables:
1901 * c-indent-level: 8
1902 * c-basic-offset: 8
1903 * End:
1904 */