blob: f9d8785b4df05b5d6d3382b2c0e3e6ea1bc77768 [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 Tarreau9a42c0d2009-09-22 19:31:03 +0200366 /* ensure we have a full line */
367 if (trash[reql-1] != '\n') {
368 s->ana_state = STATS_ST_CLOSE;
369 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200370 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200371
372 len = reql - 1;
373 trash[len] = '\0';
374
375 si->st0 = 1; // default to prompt
376 if (len) {
377 if (strcmp(trash, "quit") == 0) {
378 s->ana_state = STATS_ST_CLOSE;
379 continue;
380 }
381 else if (strcmp(trash, "prompt") == 0)
382 si->st1 = !si->st1;
383 else if (strcmp(trash, "help") == 0 ||
384 !stats_sock_parse_request(si, trash))
385 si->st0 = 2; // help
386 }
387 else if (!si->st1) {
388 /* if prompt is disabled, print help on empty lines,
389 * so that the user at least knows how to enable
390 * prompt and find help.
391 */
392 si->st0 = 2;
393 }
394
395 /* re-adjust req buffer */
396 buffer_skip(si->ob, reql);
397
398 s->ana_state = STATS_ST_REP;
399 req->flags |= BF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200400 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200401 else if (s->ana_state == STATS_ST_REP) {
402 if (res->flags & (BF_SHUTR_NOW|BF_SHUTR)) {
403 s->ana_state = STATS_ST_CLOSE;
404 continue;
405 }
406
407 switch (si->st0) {
408 case 2: /* help */
409 if (buffer_feed(si->ib, stats_sock_usage.str, stats_sock_usage.len) < 0)
410 /* message sent or too large for buffer (!) */
411 si->st0 = 1; // send prompt
412 break;
413 case 3: /* stats/info dump, should be split later ? */
414 stats_dump_raw_to_buffer(s, res);
415 si->ib->flags |= BF_READ_PARTIAL; /* remove this once we use buffer_feed */
416 if (s->ana_state == STATS_ST_CLOSE)
417 si->st0 = 1; // end of command, send prompt
418 break;
419 case 4: /* sessions dump */
420 stats_dump_sess_to_buffer(s, res);
421 si->ib->flags |= BF_READ_PARTIAL; /* remove this once we use buffer_feed */
422 if (s->ana_state == STATS_ST_CLOSE)
423 si->st0 = 1; // end of command, send prompt
424 break;
425 case 5: /* errors dump */
426 stats_dump_errors_to_buffer(s, res);
427 si->ib->flags |= BF_READ_PARTIAL; /* remove this once we use buffer_feed */
428 if (s->ana_state == STATS_ST_CLOSE)
429 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) {
470 /* let's close for real now. Note that we may as well
471 * call shutw+shutr, but this is enough since the shut
472 * conditions below will complete.
473 */
474 buffer_shutw(si->ob);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200475 s->ana_state = 0;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200476 break;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200477 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200478 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200479
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200480 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST) && (s->ana_state != STATS_ST_REQ)) {
481 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
482 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
483 /* Other size has closed, let's abort if we have no more processing to do
484 * and nothing more to consume. This is comparable to a broken pipe, so
485 * we forward the close to the request side so that it flows upstream to
486 * the client.
487 */
488 si->shutw(si);
489 }
490
491 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && (s->ana_state != STATS_ST_REP)) {
492 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
493 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
494 /* We have no more processing to do, and nothing more to send, and
495 * the client side has closed. So we'll forward this state downstream
496 * on the response buffer.
497 */
498 si->shutr(si);
499 res->flags |= BF_READ_NULL;
500 }
501
502 /* update all other flags and resync with the other side */
503 si->update(si);
504
505 /* we don't want to expire timeouts while we're processing requests */
506 si->ib->rex = TICK_ETERNITY;
507 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200508
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200509 out:
510 DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rql=%d, rqs=%d, rl=%d, rs=%d\n",
511 __FUNCTION__, __LINE__,
512 si->state, req->flags, res->flags, req->l, req->send_max, res->l, res->send_max);
513
514 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
515 /* check that we have released everything then unregister */
516 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200517 s->ana_state = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200518 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200519}
520
Willy Tarreau91861262007-10-17 17:06:05 +0200521/*
522 * Produces statistics data for the session <s>. Expects to be called with
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200523 * client socket shut down on input. It *may* make use of informations from
524 * <uri>. s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau3e76e722007-10-17 18:57:38 +0200525 * It returns 0 if it had to stop writing data and an I/O is needed, 1 if the
526 * dump is finished and the session must be closed, or -1 in case of any error.
Willy Tarreau0a464892008-12-07 18:30:00 +0100527 * It automatically clears the HIJACK bit from the response buffer.
Willy Tarreau3e76e722007-10-17 18:57:38 +0200528 */
Willy Tarreau0a464892008-12-07 18:30:00 +0100529int stats_dump_raw(struct session *s, struct buffer *rep, struct uri_auth *uri)
Willy Tarreau3e76e722007-10-17 18:57:38 +0200530{
Willy Tarreau3e76e722007-10-17 18:57:38 +0200531 struct proxy *px;
532 struct chunk msg;
Willy Tarreaua8efd362008-01-03 10:19:15 +0100533 unsigned int up;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200534
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200535 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3e76e722007-10-17 18:57:38 +0200536
537 switch (s->data_state) {
538 case DATA_ST_INIT:
539 /* the function had not been called yet, let's prepare the
540 * buffer for a response.
541 */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200542 s->data_state = DATA_ST_HEAD;
543 /* fall through */
544
545 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100546 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200547 print_csv_header(&msg);
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200548 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100549 return 0;
550 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200551
552 s->data_state = DATA_ST_INFO;
553 /* fall through */
554
555 case DATA_ST_INFO:
Willy Tarreaua8efd362008-01-03 10:19:15 +0100556 up = (now.tv_sec - start_date.tv_sec);
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100557 if (s->data_ctx.stats.flags & STAT_SHOW_INFO) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200558 chunk_printf(&msg,
Willy Tarreaua8efd362008-01-03 10:19:15 +0100559 "Name: " PRODUCT_NAME "\n"
560 "Version: " HAPROXY_VERSION "\n"
561 "Release_date: " HAPROXY_DATE "\n"
562 "Nbproc: %d\n"
563 "Process_num: %d\n"
564 "Pid: %d\n"
565 "Uptime: %dd %dh%02dm%02ds\n"
566 "Uptime_sec: %d\n"
567 "Memmax_MB: %d\n"
568 "Ulimit-n: %d\n"
569 "Maxsock: %d\n"
570 "Maxconn: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +0100571 "Maxpipes: %d\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100572 "CurrConns: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +0100573 "PipesUsed: %d\n"
574 "PipesFree: %d\n"
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100575 "Tasks: %d\n"
576 "Run_queue: %d\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200577 "node: %s\n"
578 "description: %s\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100579 "",
580 global.nbproc,
581 relative_pid,
582 pid,
583 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
584 up,
585 global.rlimit_memmax,
586 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +0100587 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100588 actconn, pipes_used, pipes_free,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200589 nb_tasks_cur, run_queue_cur,
590 global.node, global.desc?global.desc:""
Willy Tarreaua8efd362008-01-03 10:19:15 +0100591 );
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200592 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100593 return 0;
594 }
595
Willy Tarreau3e76e722007-10-17 18:57:38 +0200596 s->data_ctx.stats.px = proxy;
597 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +0100598
599 s->data_ctx.stats.sv = NULL;
600 s->data_ctx.stats.sv_st = 0;
601
Willy Tarreau3e76e722007-10-17 18:57:38 +0200602 s->data_state = DATA_ST_LIST;
603 /* fall through */
604
605 case DATA_ST_LIST:
606 /* dump proxies */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100607 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Willy Tarreaua8efd362008-01-03 10:19:15 +0100608 while (s->data_ctx.stats.px) {
609 px = s->data_ctx.stats.px;
610 /* skip the disabled proxies and non-networked ones */
611 if (px->state != PR_STSTOPPED &&
612 (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100613 if (stats_dump_proxy(s, px, NULL) == 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100614 return 0;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200615
Willy Tarreaua8efd362008-01-03 10:19:15 +0100616 s->data_ctx.stats.px = px->next;
617 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
618 }
619 /* here, we just have reached the last proxy */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200620 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200621
622 s->data_state = DATA_ST_END;
623 /* fall through */
624
625 case DATA_ST_END:
626 s->data_state = DATA_ST_FIN;
Willy Tarreau0a464892008-12-07 18:30:00 +0100627 /* fall through */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200628
629 case DATA_ST_FIN:
Willy Tarreau0a464892008-12-07 18:30:00 +0100630 buffer_stop_hijack(rep);
Willy Tarreau3e76e722007-10-17 18:57:38 +0200631 return 1;
632
633 default:
634 /* unknown state ! */
Willy Tarreau0a464892008-12-07 18:30:00 +0100635 buffer_stop_hijack(rep);
Willy Tarreau3e76e722007-10-17 18:57:38 +0200636 return -1;
637 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100638}
639
640
641/* This function is called to send output to the response buffer. It simply
642 * calls stats_dump_raw(), and releases the buffer's hijack bit when the dump
Willy Tarreau01bf8672008-12-07 18:03:29 +0100643 * is finished.
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100644 */
Willy Tarreau0a464892008-12-07 18:30:00 +0100645void stats_dump_raw_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100646{
647 if (s->ana_state != STATS_ST_REP)
Willy Tarreau01bf8672008-12-07 18:03:29 +0100648 return;
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100649
Willy Tarreau0a464892008-12-07 18:30:00 +0100650 if (stats_dump_raw(s, rep, NULL) != 0)
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100651 s->ana_state = STATS_ST_CLOSE;
Willy Tarreau01bf8672008-12-07 18:03:29 +0100652 return;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200653}
654
655
656/*
657 * Produces statistics data for the session <s>. Expects to be called with
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200658 * client socket shut down on input. It stops by itself by unsetting the
Willy Tarreau72b179a2008-08-28 16:01:32 +0200659 * BF_HIJACK flag from the buffer, which it uses to keep on being called
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200660 * when there is free space in the buffer, of simply by letting an empty buffer
661 * upon return.s->data_ctx must have been zeroed before the first call, and the
662 * flags set. It returns 0 if it had to stop writing data and an I/O is needed,
663 * 1 if the dump is finished and the session must be closed, or -1 in case of
664 * any error.
Willy Tarreau91861262007-10-17 17:06:05 +0200665 */
Willy Tarreau0a464892008-12-07 18:30:00 +0100666int stats_dump_http(struct session *s, struct buffer *rep, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +0200667{
Willy Tarreau91861262007-10-17 17:06:05 +0200668 struct proxy *px;
669 struct chunk msg;
670 unsigned int up;
671
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200672 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +0200673
674 switch (s->data_state) {
675 case DATA_ST_INIT:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200676 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200677 "HTTP/1.0 200 OK\r\n"
678 "Cache-Control: no-cache\r\n"
679 "Connection: close\r\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +0200680 "Content-Type: %s\r\n",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100681 (s->data_ctx.stats.flags & STAT_FMT_CSV) ? "text/plain" : "text/html");
Willy Tarreau91861262007-10-17 17:06:05 +0200682
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100683 if (uri->refresh > 0 && !(s->data_ctx.stats.flags & STAT_NO_REFRESH))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200684 chunk_printf(&msg, "Refresh: %d\r\n",
Willy Tarreau91861262007-10-17 17:06:05 +0200685 uri->refresh);
686
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200687 chunk_printf(&msg, "\r\n");
Willy Tarreau91861262007-10-17 17:06:05 +0200688
689 s->txn.status = 200;
Willy Tarreau56a560a2009-09-22 19:27:35 +0200690 if (buffer_write_chunk(rep, &msg) >= 0)
691 return 0;
692
Willy Tarreau91861262007-10-17 17:06:05 +0200693 msg.len = 0;
694
695 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
696 s->flags |= SN_ERR_PRXCOND; // to mark that it comes from the proxy
697 if (!(s->flags & SN_FINST_MASK))
698 s->flags |= SN_FINST_R;
699
700 if (s->txn.meth == HTTP_METH_HEAD) {
701 /* that's all we return in case of HEAD request */
702 s->data_state = DATA_ST_FIN;
Willy Tarreau72b179a2008-08-28 16:01:32 +0200703 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200704 return 1;
705 }
706
707 s->data_state = DATA_ST_HEAD; /* let's start producing data */
708 /* fall through */
709
710 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100711 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +0200712 /* WARNING! This must fit in the first buffer !!! */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200713 chunk_printf(&msg,
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200714 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200715 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
716 "<style type=\"text/css\"><!--\n"
717 "body {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +0200718 " font-family: arial, helvetica, sans-serif;"
Willy Tarreau91861262007-10-17 17:06:05 +0200719 " font-size: 12px;"
720 " font-weight: normal;"
721 " color: black;"
722 " background: white;"
723 "}\n"
724 "th,td {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +0200725 " font-size: 10px;"
Willy Tarreau91861262007-10-17 17:06:05 +0200726 " align: center;"
727 "}\n"
728 "h1 {"
Willy Tarreauda6721b2009-07-15 10:07:05 +0200729 " font-size: x-large;"
Willy Tarreau91861262007-10-17 17:06:05 +0200730 " margin-bottom: 0.5em;"
731 "}\n"
732 "h2 {"
733 " font-family: helvetica, arial;"
734 " font-size: x-large;"
735 " font-weight: bold;"
736 " font-style: italic;"
737 " color: #6020a0;"
738 " margin-top: 0em;"
739 " margin-bottom: 0em;"
740 "}\n"
741 "h3 {"
742 " font-family: helvetica, arial;"
743 " font-size: 16px;"
744 " font-weight: bold;"
745 " color: #b00040;"
746 " background: #e8e8d0;"
747 " margin-top: 0em;"
748 " margin-bottom: 0em;"
749 "}\n"
750 "li {"
751 " margin-top: 0.25em;"
752 " margin-right: 2em;"
753 "}\n"
754 ".hr {margin-top: 0.25em;"
755 " border-color: black;"
756 " border-bottom-style: solid;"
757 "}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200758 ".titre {background: #20D0D0;color: #000000; font-weight: bold;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200759 ".total {background: #20D0D0;color: #ffff80;}\n"
760 ".frontend {background: #e8e8d0;}\n"
761 ".backend {background: #e8e8d0;}\n"
762 ".active0 {background: #ff9090;}\n"
763 ".active1 {background: #ffd020;}\n"
764 ".active2 {background: #ffffa0;}\n"
765 ".active3 {background: #c0ffc0;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100766 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
767 ".active5 {background: #a0e0a0;}\n" /* NOLB state shows darker than up */
768 ".active6 {background: #e0e0e0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200769 ".backup0 {background: #ff9090;}\n"
770 ".backup1 {background: #ff80ff;}\n"
771 ".backup2 {background: #c060ff;}\n"
772 ".backup3 {background: #b0d0ff;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100773 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
774 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
775 ".backup6 {background: #e0e0e0;}\n"
Willy Tarreauda6721b2009-07-15 10:07:05 +0200776 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
Willy Tarreau91861262007-10-17 17:06:05 +0200777 "table.tbl { border-collapse: collapse; border-style: none;}\n"
778 "table.tbl td { border-width: 1px 1px 1px 1px; border-style: solid solid solid solid; padding: 2px 3px; border-color: gray;}\n"
779 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
Krzysztof Piotr Oledzki619caca2009-10-03 15:46:08 +0200780 "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 +0200781 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200782 "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 +0200783 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
784 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
785 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
786 "-->\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200787 "</style></head>\n",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200788 (uri->flags&ST_SHNODE) ? " on " : "",
789 (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200790 );
Willy Tarreau55bb8452007-10-17 18:44:57 +0200791 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200792 print_csv_header(&msg);
Willy Tarreau55bb8452007-10-17 18:44:57 +0200793 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200794 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +0200795 return 0;
796
797 s->data_state = DATA_ST_INFO;
798 /* fall through */
799
800 case DATA_ST_INFO:
801 up = (now.tv_sec - start_date.tv_sec);
802
803 /* WARNING! this has to fit the first packet too.
804 * We are around 3.5 kB, add adding entries will
805 * become tricky if we want to support 4kB buffers !
806 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100807 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200808 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200809 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
810 PRODUCT_NAME "%s</a></h1>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200811 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200812 "<hr width=\"100%%\" class=\"hr\">\n"
813 "<h3>&gt; General process information</h3>\n"
814 "<table border=0 cols=4><tr><td align=\"left\" nowrap width=\"1%%\">\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100815 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200816 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200817 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
818 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
819 "current conns = %d; current pipes = %d/%d<br>\n"
820 "Running tasks: %d/%d<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200821 "</td><td align=\"center\" nowrap>\n"
822 "<table class=\"lgd\"><tr>\n"
823 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
824 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
825 "</tr><tr>\n"
826 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
827 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
828 "</tr><tr>\n"
829 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
830 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
831 "</tr><tr>\n"
832 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100833 "<td class=\"active6\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreau91861262007-10-17 17:06:05 +0200834 "</tr></table>\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100835 "Note: UP with load-balancing disabled is reported as \"NOLB\"."
Willy Tarreau91861262007-10-17 17:06:05 +0200836 "</td>"
837 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
838 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
839 "",
840 (uri->flags&ST_HIDEVER)?"":(STATS_VERSION_STRING),
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200841 pid, (uri->flags&ST_SHNODE) ? " on " : "", (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
842 (uri->flags&ST_SHDESC)? ": " : "", (uri->flags&ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
843 pid, relative_pid, global.nbproc,
Willy Tarreau91861262007-10-17 17:06:05 +0200844 up / 86400, (up % 86400) / 3600,
845 (up % 3600) / 60, (up % 60),
846 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
847 global.rlimit_memmax ? " MB" : "",
848 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +0100849 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100850 actconn, pipes_used, pipes_used+pipes_free,
851 run_queue_cur, nb_tasks_cur
Willy Tarreau91861262007-10-17 17:06:05 +0200852 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100853
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100854 if (s->data_ctx.stats.flags & STAT_HIDE_DOWN)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200855 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200856 "<li><a href=\"%s%s%s\">Show all servers</a><br>\n",
857 uri->uri_prefix,
858 "",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100859 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200860 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200861 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200862 "<li><a href=\"%s%s%s\">Hide 'DOWN' servers</a><br>\n",
863 uri->uri_prefix,
864 ";up",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100865 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +0200866
Willy Tarreau55bb8452007-10-17 18:44:57 +0200867 if (uri->refresh > 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100868 if (s->data_ctx.stats.flags & STAT_NO_REFRESH)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200869 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200870 "<li><a href=\"%s%s%s\">Enable refresh</a><br>\n",
871 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100872 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +0200873 "");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200874 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200875 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200876 "<li><a href=\"%s%s%s\">Disable refresh</a><br>\n",
877 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100878 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +0200879 ";norefresh");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200880 }
Willy Tarreau91861262007-10-17 17:06:05 +0200881
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200882 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200883 "<li><a href=\"%s%s%s\">Refresh now</a><br>\n",
884 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100885 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
886 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +0200887
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200888 chunk_printf(&msg,
Willy Tarreau5031e6a2007-10-18 11:05:48 +0200889 "<li><a href=\"%s;csv%s\">CSV export</a><br>\n",
890 uri->uri_prefix,
891 (uri->refresh > 0) ? ";norefresh" : "");
892
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200893 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200894 "</td>"
895 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
896 "<b>External ressources:</b><ul style=\"margin-top: 0.25em;\">\n"
897 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
898 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
899 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
900 "</ul>"
901 "</td>"
902 "</tr></table>\n"
903 ""
904 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100905
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200906 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +0200907 return 0;
908 }
Willy Tarreau91861262007-10-17 17:06:05 +0200909
Willy Tarreau91861262007-10-17 17:06:05 +0200910 s->data_ctx.stats.px = proxy;
911 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
912 s->data_state = DATA_ST_LIST;
913 /* fall through */
914
915 case DATA_ST_LIST:
916 /* dump proxies */
917 while (s->data_ctx.stats.px) {
918 px = s->data_ctx.stats.px;
919 /* skip the disabled proxies and non-networked ones */
920 if (px->state != PR_STSTOPPED && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100921 if (stats_dump_proxy(s, px, uri) == 0)
Willy Tarreau91861262007-10-17 17:06:05 +0200922 return 0;
923
924 s->data_ctx.stats.px = px->next;
925 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
926 }
927 /* here, we just have reached the last proxy */
928
929 s->data_state = DATA_ST_END;
930 /* fall through */
931
932 case DATA_ST_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100933 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200934 chunk_printf(&msg, "</body></html>\n");
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200935 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +0200936 return 0;
937 }
Willy Tarreau91861262007-10-17 17:06:05 +0200938
939 s->data_state = DATA_ST_FIN;
940 /* fall through */
941
942 case DATA_ST_FIN:
Willy Tarreau72b179a2008-08-28 16:01:32 +0200943 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200944 return 1;
945
946 default:
947 /* unknown state ! */
Willy Tarreau72b179a2008-08-28 16:01:32 +0200948 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200949 return -1;
950 }
951}
952
953
954/*
955 * Dumps statistics for a proxy.
956 * Returns 0 if it had to stop dumping data because of lack of buffer space,
957 * ot non-zero if everything completed.
958 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100959int stats_dump_proxy(struct session *s, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +0200960{
961 struct buffer *rep = s->rep;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100962 struct server *sv, *svs; /* server and server-state, server-state=server or server->tracked */
Willy Tarreau91861262007-10-17 17:06:05 +0200963 struct chunk msg;
964
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200965 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +0200966
967 switch (s->data_ctx.stats.px_st) {
968 case DATA_ST_PX_INIT:
969 /* we are on a new proxy */
970
971 if (uri && uri->scope) {
972 /* we have a limited scope, we have to check the proxy name */
973 struct stat_scope *scope;
974 int len;
975
976 len = strlen(px->id);
977 scope = uri->scope;
978
979 while (scope) {
980 /* match exact proxy name */
981 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
982 break;
983
984 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +0200985 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +0200986 break;
987 scope = scope->next;
988 }
989
990 /* proxy name not found : don't dump anything */
991 if (scope == NULL)
992 return 1;
993 }
994
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100995 if ((s->data_ctx.stats.flags & STAT_BOUND) && (s->data_ctx.stats.iid != -1) &&
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +0100996 (px->uuid != s->data_ctx.stats.iid))
997 return 1;
998
Willy Tarreau91861262007-10-17 17:06:05 +0200999 s->data_ctx.stats.px_st = DATA_ST_PX_TH;
1000 /* fall through */
1001
1002 case DATA_ST_PX_TH:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001003 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02001004 /* print a new table */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001005 chunk_printf(&msg,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001006 "<table class=\"tbl\" width=\"100%%\">\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001007 "<tr align=\"center\" class=\"titre\">"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001008 "<th class=\"pxname\" width=\"10%%\">%s</th>"
1009 "<th class=\"%s\" width=\"90%%\">%s</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001010 "</tr>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001011 "</table>\n"
1012 "<table cols=\"29\" class=\"tbl\" width=\"100%%\">\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001013 "<tr align=\"center\" class=\"titre\">"
1014 "<th rowspan=2></th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001015 "<th colspan=3>Queue</th>"
1016 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001017 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001018 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001019 "<th colspan=9>Server</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001020 "</tr>\n"
1021 "<tr align=\"center\" class=\"titre\">"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001022 "<th>Cur</th><th>Max</th><th>Limit</th>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001023 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001024 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001025 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001026 "<th>Resp</th><th>Retr</th><th>Redis</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001027 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001028 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
1029 "<th>Thrtle</th>\n"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001030 "</tr>",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001031 px->id,
1032 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001033
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001034 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001035 return 0;
1036 }
Willy Tarreau91861262007-10-17 17:06:05 +02001037
1038 s->data_ctx.stats.px_st = DATA_ST_PX_FE;
1039 /* fall through */
1040
1041 case DATA_ST_PX_FE:
1042 /* print the frontend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001043 if ((px->cap & PR_CAP_FE) &&
1044 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_FE)))) {
1045 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001046 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001047 /* name, queue */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001048 "<tr align=center class=\"frontend\"><td>Frontend</td><td colspan=3></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001049 /* sessions rate : current, max, limit */
1050 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
1051 /* sessions : current, max, limit, total, lbtot */
1052 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001053 "<td align=right>%s</td><td align=right></td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001054 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001055 "<td align=right>%s</td><td align=right>%s</td>"
1056 "",
Willy Tarreaua3e49422009-05-10 19:19:41 +02001057 U2H0(read_freq_ctr(&px->fe_sess_per_sec)),
1058 U2H1(px->fe_sps_max), LIM2A2(px->fe_sps_lim, "-"),
1059 U2H3(px->feconn), U2H4(px->feconn_max), U2H5(px->maxconn),
1060 U2H6(px->cum_feconn), U2H7(px->bytes_in), U2H8(px->bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001061
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001062 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001063 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001064 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001065 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001066 "<td align=right>%s</td><td align=right></td><td align=right></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001067 /* warnings: retries, redispatches */
1068 "<td align=right></td><td align=right></td>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001069 /* server status : reflect frontend status */
Willy Tarreau91861262007-10-17 17:06:05 +02001070 "<td align=center>%s</td>"
1071 /* rest of server: nothing */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001072 "<td align=center colspan=8></td></tr>"
Willy Tarreau91861262007-10-17 17:06:05 +02001073 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001074 U2H0(px->denied_req), U2H1(px->denied_resp),
1075 U2H2(px->failed_req),
Willy Tarreau91861262007-10-17 17:06:05 +02001076 px->state == PR_STRUN ? "OPEN" :
1077 px->state == PR_STIDLE ? "FULL" : "STOP");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001078 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001079 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001080 /* pxid, name, queue cur, queue max, */
1081 "%s,FRONTEND,,,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001082 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001083 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001084 /* bytes : in, out */
1085 "%lld,%lld,"
1086 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001087 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001088 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001089 "%lld,,,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001090 /* warnings: retries, redispatches */
1091 ",,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001092 /* server status : reflect frontend status */
1093 "%s,"
1094 /* rest of server: nothing */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001095 ",,,,,,,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001096 /* pid, iid, sid, throttle, lbtot, tracked, type */
1097 "%d,%d,0,,,,%d,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001098 /* rate, rate_lim, rate_max */
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001099 "%u,%u,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001100 /* check_status, check_code, check_duration */
1101 ",,,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001102 "\n",
1103 px->id,
1104 px->feconn, px->feconn_max, px->maxconn, px->cum_feconn,
1105 px->bytes_in, px->bytes_out,
1106 px->denied_req, px->denied_resp,
1107 px->failed_req,
1108 px->state == PR_STRUN ? "OPEN" :
Willy Tarreaudcd47712007-11-04 23:35:08 +01001109 px->state == PR_STIDLE ? "FULL" : "STOP",
Willy Tarreau7f062c42009-03-05 18:43:00 +01001110 relative_pid, px->uuid, STATS_TYPE_FE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001111 read_freq_ctr(&px->fe_sess_per_sec),
1112 px->fe_sps_lim, px->fe_sps_max);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001113 }
Willy Tarreau91861262007-10-17 17:06:05 +02001114
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001115 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001116 return 0;
1117 }
1118
1119 s->data_ctx.stats.sv = px->srv; /* may be NULL */
1120 s->data_ctx.stats.px_st = DATA_ST_PX_SV;
1121 /* fall through */
1122
1123 case DATA_ST_PX_SV:
1124 /* stats.sv has been initialized above */
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001125 for (; s->data_ctx.stats.sv != NULL; s->data_ctx.stats.sv = sv->next) {
1126
Willy Tarreau2ea81932007-11-30 12:04:38 +01001127 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 +02001128
1129 sv = s->data_ctx.stats.sv;
1130
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001131 if (s->data_ctx.stats.flags & STAT_BOUND) {
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001132 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SV)))
1133 break;
1134
1135 if (s->data_ctx.stats.sid != -1 && sv->puid != s->data_ctx.stats.sid)
1136 continue;
1137 }
1138
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001139 if (sv->tracked)
1140 svs = sv->tracked;
1141 else
1142 svs = sv;
1143
Willy Tarreau91861262007-10-17 17:06:05 +02001144 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001145 if (!(svs->state & SRV_CHECKED))
Willy Tarreau2ea81932007-11-30 12:04:38 +01001146 sv_state = 6;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001147 else if (svs->state & SRV_RUNNING) {
1148 if (svs->health == svs->rise + svs->fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02001149 sv_state = 3; /* UP */
1150 else
1151 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01001152
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001153 if (svs->state & SRV_GOINGDOWN)
Willy Tarreau2ea81932007-11-30 12:04:38 +01001154 sv_state += 2;
1155 }
Willy Tarreau91861262007-10-17 17:06:05 +02001156 else
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001157 if (svs->health)
Willy Tarreau91861262007-10-17 17:06:05 +02001158 sv_state = 1; /* going up */
1159 else
1160 sv_state = 0; /* DOWN */
1161
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001162 if ((sv_state == 0) && (s->data_ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02001163 /* do not report servers which are DOWN */
1164 s->data_ctx.stats.sv = sv->next;
1165 continue;
1166 }
1167
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001168 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001169 static char *srv_hlt_st[7] = { "DOWN", "DN %d/%d &uarr;",
1170 "UP %d/%d &darr;", "UP",
1171 "NOLB %d/%d &darr;", "NOLB",
1172 "<i>no check</i>" };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001173 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001174 /* name */
1175 "<tr align=\"center\" class=\"%s%d\"><td>%s</td>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001176 /* queue : current, max, limit */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001177 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001178 /* sessions rate : current, max, limit */
1179 "<td align=right>%s</td><td align=right>%s</td><td align=right></td>"
1180 /* sessions : current, max, limit, total, lbtot */
1181 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001182 "<td align=right>%s</td><td align=right>%s</td>"
1183 "",
1184 (sv->state & SRV_BACKUP) ? "backup" : "active",
1185 sv_state, sv->id,
1186 U2H0(sv->nbpend), U2H1(sv->nbpend_max), LIM2A2(sv->maxqueue, "-"),
Willy Tarreaua3e49422009-05-10 19:19:41 +02001187 U2H3(read_freq_ctr(&sv->sess_per_sec)), U2H4(sv->sps_max),
1188 U2H5(sv->cur_sess), U2H6(sv->cur_sess_max), LIM2A7(sv->maxconn, "-"),
1189 U2H8(sv->cum_sess), U2H9(sv->cum_lbconn));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001190
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001191 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001192 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001193 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001194 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001195 "<td align=right></td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001196 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001197 "<td align=right></td><td align=right>%s</td><td align=right>%s</td>\n"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001198 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001199 "<td align=right>%lld</td><td align=right>%lld</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001200 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001201 U2H0(sv->bytes_in), U2H1(sv->bytes_out),
1202 U2H2(sv->failed_secu),
1203 U2H3(sv->failed_conns), U2H4(sv->failed_resp),
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001204 sv->retries, sv->redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001205
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001206 /* status, lest check */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001207 chunk_printf(&msg, "<td nowrap>");
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001208
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001209 if (sv->state & SRV_CHECKED) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001210 chunk_printf(&msg, "%s ",
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001211 human_time(now.tv_sec - sv->last_change, 1));
1212
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001213 chunk_printf(&msg,
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001214 srv_hlt_st[sv_state],
1215 (svs->state & SRV_RUNNING) ? (svs->health - svs->rise + 1) : (svs->health),
1216 (svs->state & SRV_RUNNING) ? (svs->fall) : (svs->rise));
1217
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001218 chunk_printf(&msg, "</td><td title=\"%s\" nowrap> %s%s",
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001219 get_check_status_description(sv->check_status),
1220 tv_iszero(&sv->check_start)?"":"* ",
1221 get_check_status_info(sv->check_status));
1222
1223 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001224 chunk_printf(&msg, "/%d", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001225
1226 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001227 chunk_printf(&msg, " in %lums", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001228 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001229 chunk_printf(&msg, "</td><td>");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001230 }
Willy Tarreau91861262007-10-17 17:06:05 +02001231
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001232 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001233 /* weight */
1234 "</td><td>%d</td>"
1235 /* act, bck */
1236 "<td>%s</td><td>%s</td>"
1237 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01001238 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau91861262007-10-17 17:06:05 +02001239 (sv->state & SRV_BACKUP) ? "-" : "Y",
1240 (sv->state & SRV_BACKUP) ? "Y" : "-");
1241
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001242 /* check failures: unique, fatal, down time */
Willy Tarreau55bb8452007-10-17 18:44:57 +02001243 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001244 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02001245 "<td align=right>%lld</td><td align=right>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001246 "<td nowrap align=right>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001247 "",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001248 svs->failed_checks, svs->down_trans,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001249 human_time(srv_downtime(sv), 1));
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001250 else if (sv != svs)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001251 chunk_printf(&msg,
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001252 "<td nowrap colspan=3>via %s/%s</td>", svs->proxy->id, svs->id);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001253 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001254 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001255 "<td colspan=3></td>");
1256
1257 /* throttle */
1258 if ((sv->state & SRV_WARMINGUP) &&
1259 now.tv_sec < sv->last_change + sv->slowstart &&
1260 now.tv_sec >= sv->last_change) {
1261 unsigned int ratio;
1262 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001263 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001264 "<td>%d %%</td></tr>\n", ratio);
1265 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001266 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001267 "<td>-</td></tr>\n");
1268 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02001269 } else {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001270 static char *srv_hlt_st[7] = { "DOWN,", "DOWN %d/%d,",
1271 "UP %d/%d,", "UP,",
1272 "NOLB %d/%d,", "NOLB,",
1273 "no check," };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001274 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001275 /* pxid, name */
1276 "%s,%s,"
1277 /* queue : current, max */
1278 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001279 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001280 "%d,%d,%s,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001281 /* bytes : in, out */
1282 "%lld,%lld,"
1283 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001284 ",%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001285 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001286 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001287 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001288 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001289 "",
1290 px->id, sv->id,
1291 sv->nbpend, sv->nbpend_max,
Willy Tarreaudcd47712007-11-04 23:35:08 +01001292 sv->cur_sess, sv->cur_sess_max, LIM2A0(sv->maxconn, ""), sv->cum_sess,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001293 sv->bytes_in, sv->bytes_out,
1294 sv->failed_secu,
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001295 sv->failed_conns, sv->failed_resp,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001296 sv->retries, sv->redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001297
Willy Tarreau55bb8452007-10-17 18:44:57 +02001298 /* status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001299 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001300 srv_hlt_st[sv_state],
1301 (sv->state & SRV_RUNNING) ? (sv->health - sv->rise + 1) : (sv->health),
1302 (sv->state & SRV_RUNNING) ? (sv->fall) : (sv->rise));
Willy Tarreau91861262007-10-17 17:06:05 +02001303
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001304 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001305 /* weight, active, backup */
1306 "%d,%d,%d,"
1307 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01001308 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001309 (sv->state & SRV_BACKUP) ? 0 : 1,
1310 (sv->state & SRV_BACKUP) ? 1 : 0);
1311
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001312 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreau55bb8452007-10-17 18:44:57 +02001313 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001314 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02001315 "%lld,%lld,%d,%d,",
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001316 sv->failed_checks, sv->down_trans,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001317 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
Willy Tarreau55bb8452007-10-17 18:44:57 +02001318 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001319 chunk_printf(&msg,
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001320 ",,,,");
1321
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001322 /* queue limit, pid, iid, sid, */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001323 chunk_printf(&msg,
Willy Tarreaudcd47712007-11-04 23:35:08 +01001324 "%s,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001325 "%d,%d,%d,",
Willy Tarreaudcd47712007-11-04 23:35:08 +01001326 LIM2A0(sv->maxqueue, ""),
1327 relative_pid, px->uuid, sv->puid);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001328
1329 /* throttle */
1330 if ((sv->state & SRV_WARMINGUP) &&
1331 now.tv_sec < sv->last_change + sv->slowstart &&
1332 now.tv_sec >= sv->last_change) {
1333 unsigned int ratio;
1334 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001335 chunk_printf(&msg, "%d", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001336 }
1337
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001338 /* sessions: lbtot */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001339 chunk_printf(&msg, ",%lld,", sv->cum_lbconn);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001340
1341 /* tracked */
1342 if (sv->tracked)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001343 chunk_printf(&msg, "%s/%s,",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001344 sv->tracked->proxy->id, sv->tracked->id);
1345 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001346 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001347
Willy Tarreau7f062c42009-03-05 18:43:00 +01001348 /* type */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001349 chunk_printf(&msg, "%d,", STATS_TYPE_SV);
Willy Tarreau7f062c42009-03-05 18:43:00 +01001350
1351 /* rate */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001352 chunk_printf(&msg, "%u,,%u,",
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001353 read_freq_ctr(&sv->sess_per_sec),
1354 sv->sps_max);
Willy Tarreau7f062c42009-03-05 18:43:00 +01001355
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001356 if (sv->state & SRV_CHECKED) {
1357 /* check_status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001358 chunk_printf(&msg, "%s,", get_check_status_info(sv->check_status));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001359
1360 /* check_code */
1361 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001362 chunk_printf(&msg, "%u,", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001363 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001364 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001365
1366 /* check_duration */
1367 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001368 chunk_printf(&msg, "%lu,", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001369 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001370 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001371
1372 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001373 chunk_printf(&msg, ",,,");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001374 }
1375
Willy Tarreau7f062c42009-03-05 18:43:00 +01001376 /* finish with EOL */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001377 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001378 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001379 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001380 return 0;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001381 } /* for sv */
Willy Tarreau91861262007-10-17 17:06:05 +02001382
1383 s->data_ctx.stats.px_st = DATA_ST_PX_BE;
1384 /* fall through */
1385
1386 case DATA_ST_PX_BE:
1387 /* print the backend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001388 if ((px->cap & PR_CAP_BE) &&
1389 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_BE)))) {
1390 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001391 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001392 /* name */
1393 "<tr align=center class=\"backend\"><td>Backend</td>"
1394 /* queue : current, max */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001395 "<td align=right>%s</td><td align=right>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001396 /* sessions rate : current, max, limit */
1397 "<td align=right>%s</td><td align=right>%s</td><td align=right></td>"
1398 "",
1399 U2H0(px->nbpend) /* or px->totpend ? */, U2H1(px->nbpend_max),
1400 U2H2(read_freq_ctr(&px->be_sess_per_sec)), U2H3(px->be_sps_max));
1401
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001402 chunk_printf(&msg,
Willy Tarreaua3e49422009-05-10 19:19:41 +02001403 /* sessions : current, max, limit, total, lbtot */
1404 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001405 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001406 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001407 "<td align=right>%s</td><td align=right>%s</td>"
1408 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001409 U2H2(px->beconn), U2H3(px->beconn_max), U2H4(px->fullconn),
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001410 U2H6(px->cum_beconn), U2H7(px->cum_lbconn),
1411 U2H8(px->bytes_in), U2H9(px->bytes_out));
1412
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001413 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001414 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001415 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001416 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001417 "<td align=right></td><td align=right>%s</td><td align=right>%s</td>\n"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001418 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001419 "<td align=right>%lld</td><td align=right>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001420 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau91861262007-10-17 17:06:05 +02001421 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001422 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau91861262007-10-17 17:06:05 +02001423 * active and backups. */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001424 "<td align=center nowrap>%s %s</td><td align=center>&nbsp;</td><td align=center>%d</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001425 "<td align=center>%d</td><td align=center>%d</td>"
1426 "",
1427 U2H0(px->denied_req), U2H1(px->denied_resp),
1428 U2H2(px->failed_conns), U2H3(px->failed_resp),
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001429 px->retries, px->redispatches,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001430 human_time(now.tv_sec - px->last_change, 1),
Willy Tarreau2ea81932007-11-30 12:04:38 +01001431 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
1432 "<font color=\"red\"><b>DOWN</b></font>",
Willy Tarreau5542af62007-12-03 02:04:00 +01001433 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01001434 px->srv_act, px->srv_bck);
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001435
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001436 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001437 /* rest of backend: nothing, down transitions, total downtime, throttle */
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001438 "<td align=center>&nbsp;</td><td align=\"right\">%d</td>"
1439 "<td align=\"right\" nowrap>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001440 "<td></td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001441 "</tr>",
1442 px->down_trans,
1443 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001444 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001445 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001446 /* pxid, name */
1447 "%s,BACKEND,"
1448 /* queue : current, max */
1449 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001450 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001451 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001452 /* bytes : in, out */
1453 "%lld,%lld,"
1454 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001455 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001456 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001457 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001458 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001459 "%lld,%lld,"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001460 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau55bb8452007-10-17 18:44:57 +02001461 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001462 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau55bb8452007-10-17 18:44:57 +02001463 * active and backups. */
1464 "%s,"
1465 "%d,%d,%d,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001466 /* rest of backend: nothing, down transitions, last change, total downtime */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001467 ",%d,%d,%d,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001468 /* pid, iid, sid, throttle, lbtot, tracked, type */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001469 "%d,%d,0,,%lld,,%d,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001470 /* rate, rate_lim, rate_max, */
1471 "%u,,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001472 /* check_status, check_code, check_duration */
1473 ",,,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001474 "\n",
1475 px->id,
1476 px->nbpend /* or px->totpend ? */, px->nbpend_max,
1477 px->beconn, px->beconn_max, px->fullconn, px->cum_beconn,
1478 px->bytes_in, px->bytes_out,
1479 px->denied_req, px->denied_resp,
1480 px->failed_conns, px->failed_resp,
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001481 px->retries, px->redispatches,
Willy Tarreau20697042007-11-15 23:26:18 +01001482 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
Willy Tarreau5542af62007-12-03 02:04:00 +01001483 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01001484 px->srv_act, px->srv_bck,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001485 px->down_trans, (int)(now.tv_sec - px->last_change),
Willy Tarreau20697042007-11-15 23:26:18 +01001486 px->srv?be_downtime(px):0,
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001487 relative_pid, px->uuid,
Willy Tarreau7f062c42009-03-05 18:43:00 +01001488 px->cum_lbconn, STATS_TYPE_BE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001489 read_freq_ctr(&px->be_sess_per_sec),
1490 px->be_sps_max);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001491 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001492 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001493 return 0;
1494 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001495
Willy Tarreau91861262007-10-17 17:06:05 +02001496 s->data_ctx.stats.px_st = DATA_ST_PX_END;
1497 /* fall through */
1498
1499 case DATA_ST_PX_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001500 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001501 chunk_printf(&msg, "</table><p>\n");
Willy Tarreau91861262007-10-17 17:06:05 +02001502
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001503 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001504 return 0;
1505 }
Willy Tarreau91861262007-10-17 17:06:05 +02001506
1507 s->data_ctx.stats.px_st = DATA_ST_PX_FIN;
1508 /* fall through */
1509
1510 case DATA_ST_PX_FIN:
1511 return 1;
1512
1513 default:
1514 /* unknown state, we should put an abort() here ! */
1515 return 1;
1516 }
1517}
1518
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001519
1520/* This function is called to send output to the response buffer.
1521 * It dumps the sessions states onto the output buffer <rep>.
1522 * Expects to be called with client socket shut down on input.
1523 * s->data_ctx must have been zeroed first, and the flags properly set.
1524 * It automatically clears the HIJACK bit from the response buffer.
1525 */
1526void stats_dump_sess_to_buffer(struct session *s, struct buffer *rep)
1527{
1528 struct chunk msg;
1529
1530 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
1531 /* If we're forced to shut down, we might have to remove our
1532 * reference to the last session being dumped.
1533 */
1534 if (s->data_state == DATA_ST_LIST) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001535 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001536 LIST_DEL(&s->data_ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001537 LIST_INIT(&s->data_ctx.sess.bref.users);
1538 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001539 }
1540 s->data_state = DATA_ST_FIN;
1541 buffer_stop_hijack(rep);
1542 s->ana_state = STATS_ST_CLOSE;
1543 return;
1544 }
1545
1546 if (s->ana_state != STATS_ST_REP)
1547 return;
1548
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001549 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001550
1551 switch (s->data_state) {
1552 case DATA_ST_INIT:
1553 /* the function had not been called yet, let's prepare the
1554 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001555 * pointer to the first in the global list. When a target
1556 * session is being destroyed, it is responsible for updating
1557 * this pointer. We know we have reached the end when this
1558 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001559 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001560 LIST_INIT(&s->data_ctx.sess.bref.users);
1561 s->data_ctx.sess.bref.ref = sessions.n;
1562 s->data_state = DATA_ST_LIST;
1563 /* fall through */
1564
1565 case DATA_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001566 /* first, let's detach the back-ref from a possible previous session */
1567 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
1568 LIST_DEL(&s->data_ctx.sess.bref.users);
1569 LIST_INIT(&s->data_ctx.sess.bref.users);
1570 }
1571
1572 /* and start from where we stopped */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001573 while (s->data_ctx.sess.bref.ref != &sessions) {
1574 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
1575 struct session *curr_sess;
1576
1577 curr_sess = LIST_ELEM(s->data_ctx.sess.bref.ref, struct session *, list);
1578
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001579 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001580 "%p: proto=%s",
1581 curr_sess,
1582 curr_sess->listener->proto->name);
1583
1584 switch (curr_sess->listener->proto->sock_family) {
1585 case AF_INET:
1586 inet_ntop(AF_INET,
1587 (const void *)&((struct sockaddr_in *)&curr_sess->cli_addr)->sin_addr,
1588 pn, sizeof(pn));
1589
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001590 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001591 " src=%s:%d fe=%s be=%s srv=%s",
1592 pn,
1593 ntohs(((struct sockaddr_in *)&curr_sess->cli_addr)->sin_port),
1594 curr_sess->fe->id,
1595 curr_sess->be->id,
1596 curr_sess->srv ? curr_sess->srv->id : "<none>"
1597 );
1598 break;
1599 case AF_INET6:
1600 inet_ntop(AF_INET6,
1601 (const void *)&((struct sockaddr_in6 *)(&curr_sess->cli_addr))->sin6_addr,
1602 pn, sizeof(pn));
1603
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001604 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001605 " src=%s:%d fe=%s be=%s srv=%s",
1606 pn,
1607 ntohs(((struct sockaddr_in6 *)&curr_sess->cli_addr)->sin6_port),
1608 curr_sess->fe->id,
1609 curr_sess->be->id,
1610 curr_sess->srv ? curr_sess->srv->id : "<none>"
1611 );
1612
1613 break;
1614 case AF_UNIX:
1615 /* no more information to print right now */
1616 break;
1617 }
1618
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001619 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001620 " as=%d ts=%02x age=%s calls=%d",
Willy Tarreau8a5c6262008-12-08 00:16:21 +01001621 curr_sess->ana_state, curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01001622 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
1623 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001624
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001625 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001626 " rq[f=%06xh,l=%d,an=%02xh,rx=%s",
1627 curr_sess->req->flags,
1628 curr_sess->req->l,
1629 curr_sess->req->analysers,
1630 curr_sess->req->rex ?
1631 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
1632 TICKS_TO_MS(1000)) : "");
1633
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001634 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001635 ",wx=%s",
1636 curr_sess->req->wex ?
1637 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
1638 TICKS_TO_MS(1000)) : "");
1639
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001640 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001641 ",ax=%s]",
1642 curr_sess->req->analyse_exp ?
1643 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
1644 TICKS_TO_MS(1000)) : "");
1645
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001646 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001647 " rp[f=%06xh,l=%d,an=%02xh,rx=%s",
1648 curr_sess->rep->flags,
1649 curr_sess->rep->l,
1650 curr_sess->rep->analysers,
1651 curr_sess->rep->rex ?
1652 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
1653 TICKS_TO_MS(1000)) : "");
1654
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001655 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001656 ",wx=%s",
1657 curr_sess->rep->wex ?
1658 human_time(TICKS_TO_MS(curr_sess->rep->wex - 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 ",ax=%s]",
1663 curr_sess->rep->analyse_exp ?
1664 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
1665 TICKS_TO_MS(1000)) : "");
1666
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001667 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001668 " s0=[%d,%1xh,fd=%d,ex=%s]",
1669 curr_sess->si[0].state,
1670 curr_sess->si[0].flags,
1671 curr_sess->si[0].fd,
1672 curr_sess->si[0].exp ?
1673 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
1674 TICKS_TO_MS(1000)) : "");
1675
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001676 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001677 " s1=[%d,%1xh,fd=%d,ex=%s]",
1678 curr_sess->si[1].state,
1679 curr_sess->si[1].flags,
1680 curr_sess->si[1].fd,
1681 curr_sess->si[1].exp ?
1682 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
1683 TICKS_TO_MS(1000)) : "");
1684
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001685 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001686 " exp=%s",
1687 curr_sess->task->expire ?
1688 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
1689 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01001690 if (task_in_rq(curr_sess->task))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001691 chunk_printf(&msg, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001692
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001693 chunk_printf(&msg, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001694
1695 if (buffer_write_chunk(rep, &msg) >= 0) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001696 /* let's try again later from this session. We add ourselves into
1697 * this session's users so that it can remove us upon termination.
1698 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001699 LIST_ADDQ(&curr_sess->back_refs, &s->data_ctx.sess.bref.users);
1700 return;
1701 }
1702
1703 s->data_ctx.sess.bref.ref = curr_sess->list.n;
1704 }
1705 s->data_state = DATA_ST_FIN;
1706 /* fall through */
1707
1708 default:
1709 s->data_state = DATA_ST_FIN;
1710 buffer_stop_hijack(rep);
1711 s->ana_state = STATS_ST_CLOSE;
1712 return;
1713 }
1714}
1715
Willy Tarreau74808cb2009-03-04 15:53:18 +01001716/* print a line of error buffer (limited to 70 bytes) to <out>. The format is :
1717 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
1718 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
1719 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
1720 * lines are respected within the limit of 70 output chars. Lines that are
1721 * continuation of a previous truncated line begin with "+" instead of " "
1722 * after the offset. The new pointer is returned.
1723 */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001724static int dump_error_line(struct chunk *out, struct error_snapshot *err,
1725 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01001726{
1727 int end;
1728 unsigned char c;
1729
1730 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001731 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01001732 return ptr;
1733
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001734 chunk_printf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01001735
1736 while (ptr < err->len) {
1737 c = err->buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01001738 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001739 if (out->len > end - 2)
1740 break;
1741 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01001742 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001743 if (out->len > end - 3)
1744 break;
1745 out->str[out->len++] = '\\';
1746 switch (c) {
1747 case '\t': c = 't'; break;
1748 case '\n': c = 'n'; break;
1749 case '\r': c = 'r'; break;
1750 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01001751 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001752 }
1753 out->str[out->len++] = c;
1754 } else {
1755 if (out->len > end - 5)
1756 break;
1757 out->str[out->len++] = '\\';
1758 out->str[out->len++] = 'x';
1759 out->str[out->len++] = hextab[(c >> 4) & 0xF];
1760 out->str[out->len++] = hextab[c & 0xF];
1761 }
1762 if (err->buf[ptr++] == '\n') {
1763 /* we had a line break, let's return now */
1764 out->str[out->len++] = '\n';
1765 *line = ptr;
1766 return ptr;
1767 }
1768 }
1769 /* we have an incomplete line, we return it as-is */
1770 out->str[out->len++] = '\n';
1771 return ptr;
1772}
1773
1774/* This function is called to send output to the response buffer.
1775 * It dumps the errors logged in proxies onto the output buffer <rep>.
1776 * Expects to be called with client socket shut down on input.
1777 * s->data_ctx must have been zeroed first, and the flags properly set.
1778 * It automatically clears the HIJACK bit from the response buffer.
1779 */
1780void stats_dump_errors_to_buffer(struct session *s, struct buffer *rep)
1781{
1782 extern const char *monthname[12];
1783 struct chunk msg;
1784
1785 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
1786 s->data_state = DATA_ST_FIN;
1787 buffer_stop_hijack(rep);
1788 s->ana_state = STATS_ST_CLOSE;
1789 return;
1790 }
1791
1792 if (s->ana_state != STATS_ST_REP)
1793 return;
1794
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001795 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau74808cb2009-03-04 15:53:18 +01001796
1797 if (!s->data_ctx.errors.px) {
1798 /* the function had not been called yet, let's prepare the
1799 * buffer for a response.
1800 */
Willy Tarreau74808cb2009-03-04 15:53:18 +01001801 s->data_ctx.errors.px = proxy;
1802 s->data_ctx.errors.buf = 0;
1803 s->data_ctx.errors.bol = 0;
1804 s->data_ctx.errors.ptr = -1;
1805 }
1806
1807 /* we have two inner loops here, one for the proxy, the other one for
1808 * the buffer.
1809 */
1810 while (s->data_ctx.errors.px) {
1811 struct error_snapshot *es;
1812
1813 if (s->data_ctx.errors.buf == 0)
1814 es = &s->data_ctx.errors.px->invalid_req;
1815 else
1816 es = &s->data_ctx.errors.px->invalid_rep;
1817
1818 if (!es->when.tv_sec)
1819 goto next;
1820
1821 if (s->data_ctx.errors.iid >= 0 &&
1822 s->data_ctx.errors.px->uuid != s->data_ctx.errors.iid &&
1823 es->oe->uuid != s->data_ctx.errors.iid)
1824 goto next;
1825
1826 if (s->data_ctx.errors.ptr < 0) {
1827 /* just print headers now */
1828
1829 char pn[INET6_ADDRSTRLEN];
1830 struct tm tm;
1831
1832 get_localtime(es->when.tv_sec, &tm);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001833 chunk_printf(&msg, "\n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01001834 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001835 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01001836
1837
1838 if (es->src.ss_family == AF_INET)
1839 inet_ntop(AF_INET,
1840 (const void *)&((struct sockaddr_in *)&es->src)->sin_addr,
1841 pn, sizeof(pn));
1842 else
1843 inet_ntop(AF_INET6,
1844 (const void *)&((struct sockaddr_in6 *)(&es->src))->sin6_addr,
1845 pn, sizeof(pn));
1846
1847 switch (s->data_ctx.errors.buf) {
1848 case 0:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001849 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001850 " frontend %s (#%d): invalid request\n"
1851 " src %s, session #%d, backend %s (#%d), server %s (#%d)\n"
1852 " request length %d bytes, error at position %d:\n\n",
1853 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
1854 pn, es->sid, es->oe->id, es->oe->uuid,
1855 es->srv ? es->srv->id : "<NONE>",
1856 es->srv ? es->srv->puid : -1,
1857 es->len, es->pos);
1858 break;
1859 case 1:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001860 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001861 " backend %s (#%d) : invalid response\n"
1862 " src %s, session #%d, frontend %s (#%d), server %s (#%d)\n"
1863 " response length %d bytes, error at position %d:\n\n",
1864 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
1865 pn, es->sid, es->oe->id, es->oe->uuid,
1866 es->srv ? es->srv->id : "<NONE>",
1867 es->srv ? es->srv->puid : -1,
1868 es->len, es->pos);
1869 break;
1870 }
1871
1872 if (buffer_write_chunk(rep, &msg) >= 0) {
1873 /* Socket buffer full. Let's try again later from the same point */
1874 return;
1875 }
1876 s->data_ctx.errors.ptr = 0;
1877 s->data_ctx.errors.sid = es->sid;
1878 }
1879
1880 if (s->data_ctx.errors.sid != es->sid) {
1881 /* the snapshot changed while we were dumping it */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001882 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001883 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
1884 if (buffer_write_chunk(rep, &msg) >= 0)
1885 return;
1886 goto next;
1887 }
1888
1889 /* OK, ptr >= 0, so we have to dump the current line */
1890 while (s->data_ctx.errors.ptr < es->len) {
1891 int newptr;
1892 int newline;
1893
1894 newline = s->data_ctx.errors.bol;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001895 newptr = dump_error_line(&msg, es, &newline, s->data_ctx.errors.ptr);
Willy Tarreau74808cb2009-03-04 15:53:18 +01001896 if (newptr == s->data_ctx.errors.ptr)
1897 return;
1898
1899 if (buffer_write_chunk(rep, &msg) >= 0) {
1900 /* Socket buffer full. Let's try again later from the same point */
1901 return;
1902 }
1903 s->data_ctx.errors.ptr = newptr;
1904 s->data_ctx.errors.bol = newline;
1905 };
1906 next:
1907 s->data_ctx.errors.bol = 0;
1908 s->data_ctx.errors.ptr = -1;
1909 s->data_ctx.errors.buf++;
1910 if (s->data_ctx.errors.buf > 1) {
1911 s->data_ctx.errors.buf = 0;
1912 s->data_ctx.errors.px = s->data_ctx.errors.px->next;
1913 }
1914 }
1915
1916 /* dump complete */
1917 buffer_stop_hijack(rep);
1918 s->ana_state = STATS_ST_CLOSE;
1919}
1920
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001921
Willy Tarreau10522fd2008-07-09 20:12:41 +02001922static struct cfg_kw_list cfg_kws = {{ },{
1923 { CFG_GLOBAL, "stats", stats_parse_global },
1924 { 0, NULL, NULL },
1925}};
1926
1927__attribute__((constructor))
1928static void __dumpstats_module_init(void)
1929{
1930 cfg_register_keywords(&cfg_kws);
1931}
1932
Willy Tarreau91861262007-10-17 17:06:05 +02001933/*
1934 * Local variables:
1935 * c-indent-level: 8
1936 * c-basic-offset: 8
1937 * End:
1938 */