blob: b34b8499784335252203bc3dad6436a8c7c63e9b [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) {
Willy Tarreau33b230b2009-10-04 09:16:41 +0200470 /* Let's close for real now. We just close the request
471 * side, the conditions below will complete if needed.
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200472 */
Willy Tarreau33b230b2009-10-04 09:16:41 +0200473 si->shutw(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200474 s->ana_state = 0;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200475 break;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200476 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200477 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200478
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200479 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST) && (s->ana_state != STATS_ST_REQ)) {
480 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
481 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
482 /* Other size has closed, let's abort if we have no more processing to do
483 * and nothing more to consume. This is comparable to a broken pipe, so
484 * we forward the close to the request side so that it flows upstream to
485 * the client.
486 */
487 si->shutw(si);
488 }
489
490 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && (s->ana_state != STATS_ST_REP)) {
491 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
492 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
493 /* We have no more processing to do, and nothing more to send, and
494 * the client side has closed. So we'll forward this state downstream
495 * on the response buffer.
496 */
497 si->shutr(si);
498 res->flags |= BF_READ_NULL;
499 }
500
501 /* update all other flags and resync with the other side */
502 si->update(si);
503
504 /* we don't want to expire timeouts while we're processing requests */
505 si->ib->rex = TICK_ETERNITY;
506 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200507
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200508 out:
509 DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rql=%d, rqs=%d, rl=%d, rs=%d\n",
510 __FUNCTION__, __LINE__,
511 si->state, req->flags, res->flags, req->l, req->send_max, res->l, res->send_max);
512
513 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
514 /* check that we have released everything then unregister */
515 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200516 s->ana_state = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200517 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200518}
519
Willy Tarreau91861262007-10-17 17:06:05 +0200520/*
521 * Produces statistics data for the session <s>. Expects to be called with
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200522 * client socket shut down on input. It *may* make use of informations from
523 * <uri>. s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau3e76e722007-10-17 18:57:38 +0200524 * It returns 0 if it had to stop writing data and an I/O is needed, 1 if the
525 * dump is finished and the session must be closed, or -1 in case of any error.
Willy Tarreau0a464892008-12-07 18:30:00 +0100526 * It automatically clears the HIJACK bit from the response buffer.
Willy Tarreau3e76e722007-10-17 18:57:38 +0200527 */
Willy Tarreau0a464892008-12-07 18:30:00 +0100528int stats_dump_raw(struct session *s, struct buffer *rep, struct uri_auth *uri)
Willy Tarreau3e76e722007-10-17 18:57:38 +0200529{
Willy Tarreau3e76e722007-10-17 18:57:38 +0200530 struct proxy *px;
531 struct chunk msg;
Willy Tarreaua8efd362008-01-03 10:19:15 +0100532 unsigned int up;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200533
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200534 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3e76e722007-10-17 18:57:38 +0200535
536 switch (s->data_state) {
537 case DATA_ST_INIT:
538 /* the function had not been called yet, let's prepare the
539 * buffer for a response.
540 */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200541 s->data_state = DATA_ST_HEAD;
542 /* fall through */
543
544 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100545 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200546 print_csv_header(&msg);
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200547 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100548 return 0;
549 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200550
551 s->data_state = DATA_ST_INFO;
552 /* fall through */
553
554 case DATA_ST_INFO:
Willy Tarreaua8efd362008-01-03 10:19:15 +0100555 up = (now.tv_sec - start_date.tv_sec);
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100556 if (s->data_ctx.stats.flags & STAT_SHOW_INFO) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200557 chunk_printf(&msg,
Willy Tarreaua8efd362008-01-03 10:19:15 +0100558 "Name: " PRODUCT_NAME "\n"
559 "Version: " HAPROXY_VERSION "\n"
560 "Release_date: " HAPROXY_DATE "\n"
561 "Nbproc: %d\n"
562 "Process_num: %d\n"
563 "Pid: %d\n"
564 "Uptime: %dd %dh%02dm%02ds\n"
565 "Uptime_sec: %d\n"
566 "Memmax_MB: %d\n"
567 "Ulimit-n: %d\n"
568 "Maxsock: %d\n"
569 "Maxconn: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +0100570 "Maxpipes: %d\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100571 "CurrConns: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +0100572 "PipesUsed: %d\n"
573 "PipesFree: %d\n"
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100574 "Tasks: %d\n"
575 "Run_queue: %d\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200576 "node: %s\n"
577 "description: %s\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100578 "",
579 global.nbproc,
580 relative_pid,
581 pid,
582 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
583 up,
584 global.rlimit_memmax,
585 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +0100586 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100587 actconn, pipes_used, pipes_free,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200588 nb_tasks_cur, run_queue_cur,
589 global.node, global.desc?global.desc:""
Willy Tarreaua8efd362008-01-03 10:19:15 +0100590 );
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200591 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100592 return 0;
593 }
594
Willy Tarreau3e76e722007-10-17 18:57:38 +0200595 s->data_ctx.stats.px = proxy;
596 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +0100597
598 s->data_ctx.stats.sv = NULL;
599 s->data_ctx.stats.sv_st = 0;
600
Willy Tarreau3e76e722007-10-17 18:57:38 +0200601 s->data_state = DATA_ST_LIST;
602 /* fall through */
603
604 case DATA_ST_LIST:
605 /* dump proxies */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100606 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Willy Tarreaua8efd362008-01-03 10:19:15 +0100607 while (s->data_ctx.stats.px) {
608 px = s->data_ctx.stats.px;
609 /* skip the disabled proxies and non-networked ones */
610 if (px->state != PR_STSTOPPED &&
611 (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100612 if (stats_dump_proxy(s, px, NULL) == 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100613 return 0;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200614
Willy Tarreaua8efd362008-01-03 10:19:15 +0100615 s->data_ctx.stats.px = px->next;
616 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
617 }
618 /* here, we just have reached the last proxy */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200619 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200620
621 s->data_state = DATA_ST_END;
622 /* fall through */
623
624 case DATA_ST_END:
625 s->data_state = DATA_ST_FIN;
Willy Tarreau0a464892008-12-07 18:30:00 +0100626 /* fall through */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200627
628 case DATA_ST_FIN:
Willy Tarreau0a464892008-12-07 18:30:00 +0100629 buffer_stop_hijack(rep);
Willy Tarreau3e76e722007-10-17 18:57:38 +0200630 return 1;
631
632 default:
633 /* unknown state ! */
Willy Tarreau0a464892008-12-07 18:30:00 +0100634 buffer_stop_hijack(rep);
Willy Tarreau3e76e722007-10-17 18:57:38 +0200635 return -1;
636 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100637}
638
639
640/* This function is called to send output to the response buffer. It simply
641 * calls stats_dump_raw(), and releases the buffer's hijack bit when the dump
Willy Tarreau01bf8672008-12-07 18:03:29 +0100642 * is finished.
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100643 */
Willy Tarreau0a464892008-12-07 18:30:00 +0100644void stats_dump_raw_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100645{
646 if (s->ana_state != STATS_ST_REP)
Willy Tarreau01bf8672008-12-07 18:03:29 +0100647 return;
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100648
Willy Tarreau0a464892008-12-07 18:30:00 +0100649 if (stats_dump_raw(s, rep, NULL) != 0)
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100650 s->ana_state = STATS_ST_CLOSE;
Willy Tarreau01bf8672008-12-07 18:03:29 +0100651 return;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200652}
653
654
655/*
656 * Produces statistics data for the session <s>. Expects to be called with
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200657 * client socket shut down on input. It stops by itself by unsetting the
Willy Tarreau72b179a2008-08-28 16:01:32 +0200658 * BF_HIJACK flag from the buffer, which it uses to keep on being called
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200659 * when there is free space in the buffer, of simply by letting an empty buffer
660 * upon return.s->data_ctx must have been zeroed before the first call, and the
661 * flags set. It returns 0 if it had to stop writing data and an I/O is needed,
662 * 1 if the dump is finished and the session must be closed, or -1 in case of
663 * any error.
Willy Tarreau91861262007-10-17 17:06:05 +0200664 */
Willy Tarreau0a464892008-12-07 18:30:00 +0100665int stats_dump_http(struct session *s, struct buffer *rep, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +0200666{
Willy Tarreau91861262007-10-17 17:06:05 +0200667 struct proxy *px;
668 struct chunk msg;
669 unsigned int up;
670
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200671 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +0200672
673 switch (s->data_state) {
674 case DATA_ST_INIT:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200675 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200676 "HTTP/1.0 200 OK\r\n"
677 "Cache-Control: no-cache\r\n"
678 "Connection: close\r\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +0200679 "Content-Type: %s\r\n",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100680 (s->data_ctx.stats.flags & STAT_FMT_CSV) ? "text/plain" : "text/html");
Willy Tarreau91861262007-10-17 17:06:05 +0200681
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100682 if (uri->refresh > 0 && !(s->data_ctx.stats.flags & STAT_NO_REFRESH))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200683 chunk_printf(&msg, "Refresh: %d\r\n",
Willy Tarreau91861262007-10-17 17:06:05 +0200684 uri->refresh);
685
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200686 chunk_printf(&msg, "\r\n");
Willy Tarreau91861262007-10-17 17:06:05 +0200687
688 s->txn.status = 200;
Willy Tarreau56a560a2009-09-22 19:27:35 +0200689 if (buffer_write_chunk(rep, &msg) >= 0)
690 return 0;
691
Willy Tarreau91861262007-10-17 17:06:05 +0200692 msg.len = 0;
693
694 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
695 s->flags |= SN_ERR_PRXCOND; // to mark that it comes from the proxy
696 if (!(s->flags & SN_FINST_MASK))
697 s->flags |= SN_FINST_R;
698
699 if (s->txn.meth == HTTP_METH_HEAD) {
700 /* that's all we return in case of HEAD request */
701 s->data_state = DATA_ST_FIN;
Willy Tarreau72b179a2008-08-28 16:01:32 +0200702 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200703 return 1;
704 }
705
706 s->data_state = DATA_ST_HEAD; /* let's start producing data */
707 /* fall through */
708
709 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100710 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +0200711 /* WARNING! This must fit in the first buffer !!! */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200712 chunk_printf(&msg,
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200713 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200714 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
715 "<style type=\"text/css\"><!--\n"
716 "body {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +0200717 " font-family: arial, helvetica, sans-serif;"
Willy Tarreau91861262007-10-17 17:06:05 +0200718 " font-size: 12px;"
719 " font-weight: normal;"
720 " color: black;"
721 " background: white;"
722 "}\n"
723 "th,td {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +0200724 " font-size: 10px;"
Willy Tarreau91861262007-10-17 17:06:05 +0200725 " align: center;"
726 "}\n"
727 "h1 {"
Willy Tarreauda6721b2009-07-15 10:07:05 +0200728 " font-size: x-large;"
Willy Tarreau91861262007-10-17 17:06:05 +0200729 " margin-bottom: 0.5em;"
730 "}\n"
731 "h2 {"
732 " font-family: helvetica, arial;"
733 " font-size: x-large;"
734 " font-weight: bold;"
735 " font-style: italic;"
736 " color: #6020a0;"
737 " margin-top: 0em;"
738 " margin-bottom: 0em;"
739 "}\n"
740 "h3 {"
741 " font-family: helvetica, arial;"
742 " font-size: 16px;"
743 " font-weight: bold;"
744 " color: #b00040;"
745 " background: #e8e8d0;"
746 " margin-top: 0em;"
747 " margin-bottom: 0em;"
748 "}\n"
749 "li {"
750 " margin-top: 0.25em;"
751 " margin-right: 2em;"
752 "}\n"
753 ".hr {margin-top: 0.25em;"
754 " border-color: black;"
755 " border-bottom-style: solid;"
756 "}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200757 ".titre {background: #20D0D0;color: #000000; font-weight: bold;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200758 ".total {background: #20D0D0;color: #ffff80;}\n"
759 ".frontend {background: #e8e8d0;}\n"
760 ".backend {background: #e8e8d0;}\n"
761 ".active0 {background: #ff9090;}\n"
762 ".active1 {background: #ffd020;}\n"
763 ".active2 {background: #ffffa0;}\n"
764 ".active3 {background: #c0ffc0;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100765 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
766 ".active5 {background: #a0e0a0;}\n" /* NOLB state shows darker than up */
767 ".active6 {background: #e0e0e0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200768 ".backup0 {background: #ff9090;}\n"
769 ".backup1 {background: #ff80ff;}\n"
770 ".backup2 {background: #c060ff;}\n"
771 ".backup3 {background: #b0d0ff;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100772 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
773 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
774 ".backup6 {background: #e0e0e0;}\n"
Willy Tarreauda6721b2009-07-15 10:07:05 +0200775 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
Willy Tarreau91861262007-10-17 17:06:05 +0200776 "table.tbl { border-collapse: collapse; border-style: none;}\n"
777 "table.tbl td { border-width: 1px 1px 1px 1px; border-style: solid solid solid solid; padding: 2px 3px; border-color: gray;}\n"
778 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
Krzysztof Piotr Oledzki619caca2009-10-03 15:46:08 +0200779 "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 +0200780 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200781 "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 +0200782 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
783 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
784 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
785 "-->\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200786 "</style></head>\n",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200787 (uri->flags&ST_SHNODE) ? " on " : "",
788 (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200789 );
Willy Tarreau55bb8452007-10-17 18:44:57 +0200790 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200791 print_csv_header(&msg);
Willy Tarreau55bb8452007-10-17 18:44:57 +0200792 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200793 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +0200794 return 0;
795
796 s->data_state = DATA_ST_INFO;
797 /* fall through */
798
799 case DATA_ST_INFO:
800 up = (now.tv_sec - start_date.tv_sec);
801
802 /* WARNING! this has to fit the first packet too.
803 * We are around 3.5 kB, add adding entries will
804 * become tricky if we want to support 4kB buffers !
805 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100806 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200807 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200808 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
809 PRODUCT_NAME "%s</a></h1>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200810 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200811 "<hr width=\"100%%\" class=\"hr\">\n"
812 "<h3>&gt; General process information</h3>\n"
813 "<table border=0 cols=4><tr><td align=\"left\" nowrap width=\"1%%\">\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100814 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200815 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200816 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
817 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
818 "current conns = %d; current pipes = %d/%d<br>\n"
819 "Running tasks: %d/%d<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200820 "</td><td align=\"center\" nowrap>\n"
821 "<table class=\"lgd\"><tr>\n"
822 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
823 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
824 "</tr><tr>\n"
825 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
826 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
827 "</tr><tr>\n"
828 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
829 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
830 "</tr><tr>\n"
831 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100832 "<td class=\"active6\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreau91861262007-10-17 17:06:05 +0200833 "</tr></table>\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +0100834 "Note: UP with load-balancing disabled is reported as \"NOLB\"."
Willy Tarreau91861262007-10-17 17:06:05 +0200835 "</td>"
836 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
837 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
838 "",
839 (uri->flags&ST_HIDEVER)?"":(STATS_VERSION_STRING),
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200840 pid, (uri->flags&ST_SHNODE) ? " on " : "", (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
841 (uri->flags&ST_SHDESC)? ": " : "", (uri->flags&ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
842 pid, relative_pid, global.nbproc,
Willy Tarreau91861262007-10-17 17:06:05 +0200843 up / 86400, (up % 86400) / 3600,
844 (up % 3600) / 60, (up % 60),
845 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
846 global.rlimit_memmax ? " MB" : "",
847 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +0100848 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100849 actconn, pipes_used, pipes_used+pipes_free,
850 run_queue_cur, nb_tasks_cur
Willy Tarreau91861262007-10-17 17:06:05 +0200851 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100852
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100853 if (s->data_ctx.stats.flags & STAT_HIDE_DOWN)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200854 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200855 "<li><a href=\"%s%s%s\">Show all servers</a><br>\n",
856 uri->uri_prefix,
857 "",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100858 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200859 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200860 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200861 "<li><a href=\"%s%s%s\">Hide 'DOWN' servers</a><br>\n",
862 uri->uri_prefix,
863 ";up",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100864 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +0200865
Willy Tarreau55bb8452007-10-17 18:44:57 +0200866 if (uri->refresh > 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100867 if (s->data_ctx.stats.flags & STAT_NO_REFRESH)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200868 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200869 "<li><a href=\"%s%s%s\">Enable refresh</a><br>\n",
870 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100871 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +0200872 "");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200873 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200874 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200875 "<li><a href=\"%s%s%s\">Disable refresh</a><br>\n",
876 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100877 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +0200878 ";norefresh");
Willy Tarreau55bb8452007-10-17 18:44:57 +0200879 }
Willy Tarreau91861262007-10-17 17:06:05 +0200880
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200881 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200882 "<li><a href=\"%s%s%s\">Refresh now</a><br>\n",
883 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100884 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
885 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +0200886
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200887 chunk_printf(&msg,
Willy Tarreau5031e6a2007-10-18 11:05:48 +0200888 "<li><a href=\"%s;csv%s\">CSV export</a><br>\n",
889 uri->uri_prefix,
890 (uri->refresh > 0) ? ";norefresh" : "");
891
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200892 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200893 "</td>"
894 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
895 "<b>External ressources:</b><ul style=\"margin-top: 0.25em;\">\n"
896 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
897 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
898 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
899 "</ul>"
900 "</td>"
901 "</tr></table>\n"
902 ""
903 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100904
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200905 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +0200906 return 0;
907 }
Willy Tarreau91861262007-10-17 17:06:05 +0200908
Willy Tarreau91861262007-10-17 17:06:05 +0200909 s->data_ctx.stats.px = proxy;
910 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
911 s->data_state = DATA_ST_LIST;
912 /* fall through */
913
914 case DATA_ST_LIST:
915 /* dump proxies */
916 while (s->data_ctx.stats.px) {
917 px = s->data_ctx.stats.px;
918 /* skip the disabled proxies and non-networked ones */
919 if (px->state != PR_STSTOPPED && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100920 if (stats_dump_proxy(s, px, uri) == 0)
Willy Tarreau91861262007-10-17 17:06:05 +0200921 return 0;
922
923 s->data_ctx.stats.px = px->next;
924 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
925 }
926 /* here, we just have reached the last proxy */
927
928 s->data_state = DATA_ST_END;
929 /* fall through */
930
931 case DATA_ST_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100932 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200933 chunk_printf(&msg, "</body></html>\n");
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200934 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +0200935 return 0;
936 }
Willy Tarreau91861262007-10-17 17:06:05 +0200937
938 s->data_state = DATA_ST_FIN;
939 /* fall through */
940
941 case DATA_ST_FIN:
Willy Tarreau72b179a2008-08-28 16:01:32 +0200942 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200943 return 1;
944
945 default:
946 /* unknown state ! */
Willy Tarreau72b179a2008-08-28 16:01:32 +0200947 buffer_stop_hijack(rep);
Willy Tarreau91861262007-10-17 17:06:05 +0200948 return -1;
949 }
950}
951
952
953/*
954 * Dumps statistics for a proxy.
955 * Returns 0 if it had to stop dumping data because of lack of buffer space,
956 * ot non-zero if everything completed.
957 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100958int stats_dump_proxy(struct session *s, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +0200959{
960 struct buffer *rep = s->rep;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100961 struct server *sv, *svs; /* server and server-state, server-state=server or server->tracked */
Willy Tarreau91861262007-10-17 17:06:05 +0200962 struct chunk msg;
963
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200964 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +0200965
966 switch (s->data_ctx.stats.px_st) {
967 case DATA_ST_PX_INIT:
968 /* we are on a new proxy */
969
970 if (uri && uri->scope) {
971 /* we have a limited scope, we have to check the proxy name */
972 struct stat_scope *scope;
973 int len;
974
975 len = strlen(px->id);
976 scope = uri->scope;
977
978 while (scope) {
979 /* match exact proxy name */
980 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
981 break;
982
983 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +0200984 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +0200985 break;
986 scope = scope->next;
987 }
988
989 /* proxy name not found : don't dump anything */
990 if (scope == NULL)
991 return 1;
992 }
993
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100994 if ((s->data_ctx.stats.flags & STAT_BOUND) && (s->data_ctx.stats.iid != -1) &&
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +0100995 (px->uuid != s->data_ctx.stats.iid))
996 return 1;
997
Willy Tarreau91861262007-10-17 17:06:05 +0200998 s->data_ctx.stats.px_st = DATA_ST_PX_TH;
999 /* fall through */
1000
1001 case DATA_ST_PX_TH:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001002 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02001003 /* print a new table */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001004 chunk_printf(&msg,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001005 "<table class=\"tbl\" width=\"100%%\">\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001006 "<tr align=\"center\" class=\"titre\">"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001007 "<th class=\"pxname\" width=\"10%%\">%s</th>"
1008 "<th class=\"%s\" width=\"90%%\">%s</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001009 "</tr>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001010 "</table>\n"
1011 "<table cols=\"29\" class=\"tbl\" width=\"100%%\">\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001012 "<tr align=\"center\" class=\"titre\">"
1013 "<th rowspan=2></th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001014 "<th colspan=3>Queue</th>"
1015 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001016 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001017 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001018 "<th colspan=9>Server</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001019 "</tr>\n"
1020 "<tr align=\"center\" class=\"titre\">"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001021 "<th>Cur</th><th>Max</th><th>Limit</th>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001022 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001023 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001024 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001025 "<th>Resp</th><th>Retr</th><th>Redis</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001026 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001027 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
1028 "<th>Thrtle</th>\n"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001029 "</tr>",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001030 px->id,
1031 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001032
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001033 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001034 return 0;
1035 }
Willy Tarreau91861262007-10-17 17:06:05 +02001036
1037 s->data_ctx.stats.px_st = DATA_ST_PX_FE;
1038 /* fall through */
1039
1040 case DATA_ST_PX_FE:
1041 /* print the frontend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001042 if ((px->cap & PR_CAP_FE) &&
1043 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_FE)))) {
1044 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001045 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001046 /* name, queue */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001047 "<tr align=center class=\"frontend\"><td>Frontend</td><td colspan=3></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001048 /* sessions rate : current, max, limit */
1049 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
1050 /* sessions : current, max, limit, total, lbtot */
1051 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001052 "<td align=right>%s</td><td align=right></td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001053 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001054 "<td align=right>%s</td><td align=right>%s</td>"
1055 "",
Willy Tarreaua3e49422009-05-10 19:19:41 +02001056 U2H0(read_freq_ctr(&px->fe_sess_per_sec)),
1057 U2H1(px->fe_sps_max), LIM2A2(px->fe_sps_lim, "-"),
1058 U2H3(px->feconn), U2H4(px->feconn_max), U2H5(px->maxconn),
1059 U2H6(px->cum_feconn), U2H7(px->bytes_in), U2H8(px->bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001060
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001061 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001062 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001063 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001064 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001065 "<td align=right>%s</td><td align=right></td><td align=right></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001066 /* warnings: retries, redispatches */
1067 "<td align=right></td><td align=right></td>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001068 /* server status : reflect frontend status */
Willy Tarreau91861262007-10-17 17:06:05 +02001069 "<td align=center>%s</td>"
1070 /* rest of server: nothing */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001071 "<td align=center colspan=8></td></tr>"
Willy Tarreau91861262007-10-17 17:06:05 +02001072 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001073 U2H0(px->denied_req), U2H1(px->denied_resp),
1074 U2H2(px->failed_req),
Willy Tarreau91861262007-10-17 17:06:05 +02001075 px->state == PR_STRUN ? "OPEN" :
1076 px->state == PR_STIDLE ? "FULL" : "STOP");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001077 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001078 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001079 /* pxid, name, queue cur, queue max, */
1080 "%s,FRONTEND,,,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001081 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001082 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001083 /* bytes : in, out */
1084 "%lld,%lld,"
1085 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001086 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001087 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001088 "%lld,,,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001089 /* warnings: retries, redispatches */
1090 ",,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001091 /* server status : reflect frontend status */
1092 "%s,"
1093 /* rest of server: nothing */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001094 ",,,,,,,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001095 /* pid, iid, sid, throttle, lbtot, tracked, type */
1096 "%d,%d,0,,,,%d,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001097 /* rate, rate_lim, rate_max */
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001098 "%u,%u,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001099 /* check_status, check_code, check_duration */
1100 ",,,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001101 "\n",
1102 px->id,
1103 px->feconn, px->feconn_max, px->maxconn, px->cum_feconn,
1104 px->bytes_in, px->bytes_out,
1105 px->denied_req, px->denied_resp,
1106 px->failed_req,
1107 px->state == PR_STRUN ? "OPEN" :
Willy Tarreaudcd47712007-11-04 23:35:08 +01001108 px->state == PR_STIDLE ? "FULL" : "STOP",
Willy Tarreau7f062c42009-03-05 18:43:00 +01001109 relative_pid, px->uuid, STATS_TYPE_FE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001110 read_freq_ctr(&px->fe_sess_per_sec),
1111 px->fe_sps_lim, px->fe_sps_max);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001112 }
Willy Tarreau91861262007-10-17 17:06:05 +02001113
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001114 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001115 return 0;
1116 }
1117
1118 s->data_ctx.stats.sv = px->srv; /* may be NULL */
1119 s->data_ctx.stats.px_st = DATA_ST_PX_SV;
1120 /* fall through */
1121
1122 case DATA_ST_PX_SV:
1123 /* stats.sv has been initialized above */
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001124 for (; s->data_ctx.stats.sv != NULL; s->data_ctx.stats.sv = sv->next) {
1125
Willy Tarreau2ea81932007-11-30 12:04:38 +01001126 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 +02001127
1128 sv = s->data_ctx.stats.sv;
1129
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001130 if (s->data_ctx.stats.flags & STAT_BOUND) {
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001131 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SV)))
1132 break;
1133
1134 if (s->data_ctx.stats.sid != -1 && sv->puid != s->data_ctx.stats.sid)
1135 continue;
1136 }
1137
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001138 if (sv->tracked)
1139 svs = sv->tracked;
1140 else
1141 svs = sv;
1142
Willy Tarreau91861262007-10-17 17:06:05 +02001143 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001144 if (!(svs->state & SRV_CHECKED))
Willy Tarreau2ea81932007-11-30 12:04:38 +01001145 sv_state = 6;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001146 else if (svs->state & SRV_RUNNING) {
1147 if (svs->health == svs->rise + svs->fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02001148 sv_state = 3; /* UP */
1149 else
1150 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01001151
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001152 if (svs->state & SRV_GOINGDOWN)
Willy Tarreau2ea81932007-11-30 12:04:38 +01001153 sv_state += 2;
1154 }
Willy Tarreau91861262007-10-17 17:06:05 +02001155 else
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001156 if (svs->health)
Willy Tarreau91861262007-10-17 17:06:05 +02001157 sv_state = 1; /* going up */
1158 else
1159 sv_state = 0; /* DOWN */
1160
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001161 if ((sv_state == 0) && (s->data_ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02001162 /* do not report servers which are DOWN */
1163 s->data_ctx.stats.sv = sv->next;
1164 continue;
1165 }
1166
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001167 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001168 static char *srv_hlt_st[7] = { "DOWN", "DN %d/%d &uarr;",
1169 "UP %d/%d &darr;", "UP",
1170 "NOLB %d/%d &darr;", "NOLB",
1171 "<i>no check</i>" };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001172 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001173 /* name */
1174 "<tr align=\"center\" class=\"%s%d\"><td>%s</td>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001175 /* queue : current, max, limit */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001176 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001177 /* sessions rate : current, max, limit */
1178 "<td align=right>%s</td><td align=right>%s</td><td align=right></td>"
1179 /* sessions : current, max, limit, total, lbtot */
1180 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001181 "<td align=right>%s</td><td align=right>%s</td>"
1182 "",
1183 (sv->state & SRV_BACKUP) ? "backup" : "active",
1184 sv_state, sv->id,
1185 U2H0(sv->nbpend), U2H1(sv->nbpend_max), LIM2A2(sv->maxqueue, "-"),
Willy Tarreaua3e49422009-05-10 19:19:41 +02001186 U2H3(read_freq_ctr(&sv->sess_per_sec)), U2H4(sv->sps_max),
1187 U2H5(sv->cur_sess), U2H6(sv->cur_sess_max), LIM2A7(sv->maxconn, "-"),
1188 U2H8(sv->cum_sess), U2H9(sv->cum_lbconn));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001189
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001190 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001191 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001192 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001193 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001194 "<td align=right></td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001195 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001196 "<td align=right></td><td align=right>%s</td><td align=right>%s</td>\n"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001197 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001198 "<td align=right>%lld</td><td align=right>%lld</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001199 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001200 U2H0(sv->bytes_in), U2H1(sv->bytes_out),
1201 U2H2(sv->failed_secu),
1202 U2H3(sv->failed_conns), U2H4(sv->failed_resp),
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001203 sv->retries, sv->redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001204
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001205 /* status, lest check */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001206 chunk_printf(&msg, "<td nowrap>");
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001207
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001208 if (sv->state & SRV_CHECKED) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001209 chunk_printf(&msg, "%s ",
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001210 human_time(now.tv_sec - sv->last_change, 1));
1211
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001212 chunk_printf(&msg,
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001213 srv_hlt_st[sv_state],
1214 (svs->state & SRV_RUNNING) ? (svs->health - svs->rise + 1) : (svs->health),
1215 (svs->state & SRV_RUNNING) ? (svs->fall) : (svs->rise));
1216
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001217 chunk_printf(&msg, "</td><td title=\"%s\" nowrap> %s%s",
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001218 get_check_status_description(sv->check_status),
1219 tv_iszero(&sv->check_start)?"":"* ",
1220 get_check_status_info(sv->check_status));
1221
1222 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001223 chunk_printf(&msg, "/%d", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001224
1225 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001226 chunk_printf(&msg, " in %lums", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001227 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001228 chunk_printf(&msg, "</td><td>");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001229 }
Willy Tarreau91861262007-10-17 17:06:05 +02001230
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001231 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001232 /* weight */
1233 "</td><td>%d</td>"
1234 /* act, bck */
1235 "<td>%s</td><td>%s</td>"
1236 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01001237 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau91861262007-10-17 17:06:05 +02001238 (sv->state & SRV_BACKUP) ? "-" : "Y",
1239 (sv->state & SRV_BACKUP) ? "Y" : "-");
1240
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001241 /* check failures: unique, fatal, down time */
Willy Tarreau55bb8452007-10-17 18:44:57 +02001242 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001243 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02001244 "<td align=right>%lld</td><td align=right>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001245 "<td nowrap align=right>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001246 "",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001247 svs->failed_checks, svs->down_trans,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001248 human_time(srv_downtime(sv), 1));
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001249 else if (sv != svs)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001250 chunk_printf(&msg,
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001251 "<td nowrap colspan=3>via %s/%s</td>", svs->proxy->id, svs->id);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001252 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001253 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001254 "<td colspan=3></td>");
1255
1256 /* throttle */
1257 if ((sv->state & SRV_WARMINGUP) &&
1258 now.tv_sec < sv->last_change + sv->slowstart &&
1259 now.tv_sec >= sv->last_change) {
1260 unsigned int ratio;
1261 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001262 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001263 "<td>%d %%</td></tr>\n", ratio);
1264 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001265 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001266 "<td>-</td></tr>\n");
1267 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02001268 } else {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001269 static char *srv_hlt_st[7] = { "DOWN,", "DOWN %d/%d,",
1270 "UP %d/%d,", "UP,",
1271 "NOLB %d/%d,", "NOLB,",
1272 "no check," };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001273 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001274 /* pxid, name */
1275 "%s,%s,"
1276 /* queue : current, max */
1277 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001278 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001279 "%d,%d,%s,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001280 /* bytes : in, out */
1281 "%lld,%lld,"
1282 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001283 ",%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001284 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001285 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001286 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001287 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001288 "",
1289 px->id, sv->id,
1290 sv->nbpend, sv->nbpend_max,
Willy Tarreaudcd47712007-11-04 23:35:08 +01001291 sv->cur_sess, sv->cur_sess_max, LIM2A0(sv->maxconn, ""), sv->cum_sess,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001292 sv->bytes_in, sv->bytes_out,
1293 sv->failed_secu,
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001294 sv->failed_conns, sv->failed_resp,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001295 sv->retries, sv->redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001296
Willy Tarreau55bb8452007-10-17 18:44:57 +02001297 /* status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001298 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001299 srv_hlt_st[sv_state],
1300 (sv->state & SRV_RUNNING) ? (sv->health - sv->rise + 1) : (sv->health),
1301 (sv->state & SRV_RUNNING) ? (sv->fall) : (sv->rise));
Willy Tarreau91861262007-10-17 17:06:05 +02001302
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001303 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001304 /* weight, active, backup */
1305 "%d,%d,%d,"
1306 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01001307 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001308 (sv->state & SRV_BACKUP) ? 0 : 1,
1309 (sv->state & SRV_BACKUP) ? 1 : 0);
1310
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001311 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreau55bb8452007-10-17 18:44:57 +02001312 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001313 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02001314 "%lld,%lld,%d,%d,",
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001315 sv->failed_checks, sv->down_trans,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001316 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
Willy Tarreau55bb8452007-10-17 18:44:57 +02001317 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001318 chunk_printf(&msg,
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001319 ",,,,");
1320
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001321 /* queue limit, pid, iid, sid, */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001322 chunk_printf(&msg,
Willy Tarreaudcd47712007-11-04 23:35:08 +01001323 "%s,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001324 "%d,%d,%d,",
Willy Tarreaudcd47712007-11-04 23:35:08 +01001325 LIM2A0(sv->maxqueue, ""),
1326 relative_pid, px->uuid, sv->puid);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001327
1328 /* throttle */
1329 if ((sv->state & SRV_WARMINGUP) &&
1330 now.tv_sec < sv->last_change + sv->slowstart &&
1331 now.tv_sec >= sv->last_change) {
1332 unsigned int ratio;
1333 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001334 chunk_printf(&msg, "%d", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001335 }
1336
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001337 /* sessions: lbtot */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001338 chunk_printf(&msg, ",%lld,", sv->cum_lbconn);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001339
1340 /* tracked */
1341 if (sv->tracked)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001342 chunk_printf(&msg, "%s/%s,",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001343 sv->tracked->proxy->id, sv->tracked->id);
1344 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001345 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001346
Willy Tarreau7f062c42009-03-05 18:43:00 +01001347 /* type */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001348 chunk_printf(&msg, "%d,", STATS_TYPE_SV);
Willy Tarreau7f062c42009-03-05 18:43:00 +01001349
1350 /* rate */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001351 chunk_printf(&msg, "%u,,%u,",
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001352 read_freq_ctr(&sv->sess_per_sec),
1353 sv->sps_max);
Willy Tarreau7f062c42009-03-05 18:43:00 +01001354
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001355 if (sv->state & SRV_CHECKED) {
1356 /* check_status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001357 chunk_printf(&msg, "%s,", get_check_status_info(sv->check_status));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001358
1359 /* check_code */
1360 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001361 chunk_printf(&msg, "%u,", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001362 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001363 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001364
1365 /* check_duration */
1366 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001367 chunk_printf(&msg, "%lu,", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001368 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001369 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001370
1371 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001372 chunk_printf(&msg, ",,,");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001373 }
1374
Willy Tarreau7f062c42009-03-05 18:43:00 +01001375 /* finish with EOL */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001376 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001377 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001378 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001379 return 0;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001380 } /* for sv */
Willy Tarreau91861262007-10-17 17:06:05 +02001381
1382 s->data_ctx.stats.px_st = DATA_ST_PX_BE;
1383 /* fall through */
1384
1385 case DATA_ST_PX_BE:
1386 /* print the backend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001387 if ((px->cap & PR_CAP_BE) &&
1388 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_BE)))) {
1389 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001390 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001391 /* name */
1392 "<tr align=center class=\"backend\"><td>Backend</td>"
1393 /* queue : current, max */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001394 "<td align=right>%s</td><td align=right>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001395 /* sessions rate : current, max, limit */
1396 "<td align=right>%s</td><td align=right>%s</td><td align=right></td>"
1397 "",
1398 U2H0(px->nbpend) /* or px->totpend ? */, U2H1(px->nbpend_max),
1399 U2H2(read_freq_ctr(&px->be_sess_per_sec)), U2H3(px->be_sps_max));
1400
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001401 chunk_printf(&msg,
Willy Tarreaua3e49422009-05-10 19:19:41 +02001402 /* sessions : current, max, limit, total, lbtot */
1403 "<td align=right>%s</td><td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001404 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001405 /* bytes : in, out */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001406 "<td align=right>%s</td><td align=right>%s</td>"
1407 "",
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001408 U2H2(px->beconn), U2H3(px->beconn_max), U2H4(px->fullconn),
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001409 U2H6(px->cum_beconn), U2H7(px->cum_lbconn),
1410 U2H8(px->bytes_in), U2H9(px->bytes_out));
1411
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001412 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001413 /* denied: req, resp */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001414 "<td align=right>%s</td><td align=right>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001415 /* errors : request, connect, response */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001416 "<td align=right></td><td align=right>%s</td><td align=right>%s</td>\n"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001417 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001418 "<td align=right>%lld</td><td align=right>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001419 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau91861262007-10-17 17:06:05 +02001420 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001421 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau91861262007-10-17 17:06:05 +02001422 * active and backups. */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001423 "<td align=center nowrap>%s %s</td><td align=center>&nbsp;</td><td align=center>%d</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001424 "<td align=center>%d</td><td align=center>%d</td>"
1425 "",
1426 U2H0(px->denied_req), U2H1(px->denied_resp),
1427 U2H2(px->failed_conns), U2H3(px->failed_resp),
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001428 px->retries, px->redispatches,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001429 human_time(now.tv_sec - px->last_change, 1),
Willy Tarreau2ea81932007-11-30 12:04:38 +01001430 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
1431 "<font color=\"red\"><b>DOWN</b></font>",
Willy Tarreau5542af62007-12-03 02:04:00 +01001432 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01001433 px->srv_act, px->srv_bck);
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001434
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001435 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001436 /* rest of backend: nothing, down transitions, total downtime, throttle */
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001437 "<td align=center>&nbsp;</td><td align=\"right\">%d</td>"
1438 "<td align=\"right\" nowrap>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001439 "<td></td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001440 "</tr>",
1441 px->down_trans,
1442 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001443 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001444 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001445 /* pxid, name */
1446 "%s,BACKEND,"
1447 /* queue : current, max */
1448 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001449 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001450 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001451 /* bytes : in, out */
1452 "%lld,%lld,"
1453 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001454 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001455 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001456 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001457 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001458 "%lld,%lld,"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001459 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau55bb8452007-10-17 18:44:57 +02001460 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001461 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau55bb8452007-10-17 18:44:57 +02001462 * active and backups. */
1463 "%s,"
1464 "%d,%d,%d,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001465 /* rest of backend: nothing, down transitions, last change, total downtime */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001466 ",%d,%d,%d,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001467 /* pid, iid, sid, throttle, lbtot, tracked, type */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001468 "%d,%d,0,,%lld,,%d,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001469 /* rate, rate_lim, rate_max, */
1470 "%u,,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001471 /* check_status, check_code, check_duration */
1472 ",,,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001473 "\n",
1474 px->id,
1475 px->nbpend /* or px->totpend ? */, px->nbpend_max,
1476 px->beconn, px->beconn_max, px->fullconn, px->cum_beconn,
1477 px->bytes_in, px->bytes_out,
1478 px->denied_req, px->denied_resp,
1479 px->failed_conns, px->failed_resp,
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001480 px->retries, px->redispatches,
Willy Tarreau20697042007-11-15 23:26:18 +01001481 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
Willy Tarreau5542af62007-12-03 02:04:00 +01001482 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01001483 px->srv_act, px->srv_bck,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001484 px->down_trans, (int)(now.tv_sec - px->last_change),
Willy Tarreau20697042007-11-15 23:26:18 +01001485 px->srv?be_downtime(px):0,
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001486 relative_pid, px->uuid,
Willy Tarreau7f062c42009-03-05 18:43:00 +01001487 px->cum_lbconn, STATS_TYPE_BE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001488 read_freq_ctr(&px->be_sess_per_sec),
1489 px->be_sps_max);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001490 }
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001491 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001492 return 0;
1493 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001494
Willy Tarreau91861262007-10-17 17:06:05 +02001495 s->data_ctx.stats.px_st = DATA_ST_PX_END;
1496 /* fall through */
1497
1498 case DATA_ST_PX_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001499 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001500 chunk_printf(&msg, "</table><p>\n");
Willy Tarreau91861262007-10-17 17:06:05 +02001501
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +02001502 if (buffer_write_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001503 return 0;
1504 }
Willy Tarreau91861262007-10-17 17:06:05 +02001505
1506 s->data_ctx.stats.px_st = DATA_ST_PX_FIN;
1507 /* fall through */
1508
1509 case DATA_ST_PX_FIN:
1510 return 1;
1511
1512 default:
1513 /* unknown state, we should put an abort() here ! */
1514 return 1;
1515 }
1516}
1517
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001518
1519/* This function is called to send output to the response buffer.
1520 * It dumps the sessions states onto the output buffer <rep>.
1521 * Expects to be called with client socket shut down on input.
1522 * s->data_ctx must have been zeroed first, and the flags properly set.
1523 * It automatically clears the HIJACK bit from the response buffer.
1524 */
1525void stats_dump_sess_to_buffer(struct session *s, struct buffer *rep)
1526{
1527 struct chunk msg;
1528
1529 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
1530 /* If we're forced to shut down, we might have to remove our
1531 * reference to the last session being dumped.
1532 */
1533 if (s->data_state == DATA_ST_LIST) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001534 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001535 LIST_DEL(&s->data_ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001536 LIST_INIT(&s->data_ctx.sess.bref.users);
1537 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001538 }
1539 s->data_state = DATA_ST_FIN;
1540 buffer_stop_hijack(rep);
1541 s->ana_state = STATS_ST_CLOSE;
1542 return;
1543 }
1544
1545 if (s->ana_state != STATS_ST_REP)
1546 return;
1547
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001548 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001549
1550 switch (s->data_state) {
1551 case DATA_ST_INIT:
1552 /* the function had not been called yet, let's prepare the
1553 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001554 * pointer to the first in the global list. When a target
1555 * session is being destroyed, it is responsible for updating
1556 * this pointer. We know we have reached the end when this
1557 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001558 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001559 LIST_INIT(&s->data_ctx.sess.bref.users);
1560 s->data_ctx.sess.bref.ref = sessions.n;
1561 s->data_state = DATA_ST_LIST;
1562 /* fall through */
1563
1564 case DATA_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001565 /* first, let's detach the back-ref from a possible previous session */
1566 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
1567 LIST_DEL(&s->data_ctx.sess.bref.users);
1568 LIST_INIT(&s->data_ctx.sess.bref.users);
1569 }
1570
1571 /* and start from where we stopped */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001572 while (s->data_ctx.sess.bref.ref != &sessions) {
1573 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
1574 struct session *curr_sess;
1575
1576 curr_sess = LIST_ELEM(s->data_ctx.sess.bref.ref, struct session *, list);
1577
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001578 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001579 "%p: proto=%s",
1580 curr_sess,
1581 curr_sess->listener->proto->name);
1582
1583 switch (curr_sess->listener->proto->sock_family) {
1584 case AF_INET:
1585 inet_ntop(AF_INET,
1586 (const void *)&((struct sockaddr_in *)&curr_sess->cli_addr)->sin_addr,
1587 pn, sizeof(pn));
1588
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001589 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001590 " src=%s:%d fe=%s be=%s srv=%s",
1591 pn,
1592 ntohs(((struct sockaddr_in *)&curr_sess->cli_addr)->sin_port),
1593 curr_sess->fe->id,
1594 curr_sess->be->id,
1595 curr_sess->srv ? curr_sess->srv->id : "<none>"
1596 );
1597 break;
1598 case AF_INET6:
1599 inet_ntop(AF_INET6,
1600 (const void *)&((struct sockaddr_in6 *)(&curr_sess->cli_addr))->sin6_addr,
1601 pn, sizeof(pn));
1602
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001603 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001604 " src=%s:%d fe=%s be=%s srv=%s",
1605 pn,
1606 ntohs(((struct sockaddr_in6 *)&curr_sess->cli_addr)->sin6_port),
1607 curr_sess->fe->id,
1608 curr_sess->be->id,
1609 curr_sess->srv ? curr_sess->srv->id : "<none>"
1610 );
1611
1612 break;
1613 case AF_UNIX:
1614 /* no more information to print right now */
1615 break;
1616 }
1617
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001618 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001619 " as=%d ts=%02x age=%s calls=%d",
Willy Tarreau8a5c6262008-12-08 00:16:21 +01001620 curr_sess->ana_state, curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01001621 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
1622 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001623
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001624 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001625 " rq[f=%06xh,l=%d,an=%02xh,rx=%s",
1626 curr_sess->req->flags,
1627 curr_sess->req->l,
1628 curr_sess->req->analysers,
1629 curr_sess->req->rex ?
1630 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
1631 TICKS_TO_MS(1000)) : "");
1632
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001633 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001634 ",wx=%s",
1635 curr_sess->req->wex ?
1636 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
1637 TICKS_TO_MS(1000)) : "");
1638
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001639 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001640 ",ax=%s]",
1641 curr_sess->req->analyse_exp ?
1642 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
1643 TICKS_TO_MS(1000)) : "");
1644
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001645 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001646 " rp[f=%06xh,l=%d,an=%02xh,rx=%s",
1647 curr_sess->rep->flags,
1648 curr_sess->rep->l,
1649 curr_sess->rep->analysers,
1650 curr_sess->rep->rex ?
1651 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
1652 TICKS_TO_MS(1000)) : "");
1653
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001654 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001655 ",wx=%s",
1656 curr_sess->rep->wex ?
1657 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
1658 TICKS_TO_MS(1000)) : "");
1659
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001660 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001661 ",ax=%s]",
1662 curr_sess->rep->analyse_exp ?
1663 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
1664 TICKS_TO_MS(1000)) : "");
1665
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001666 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001667 " s0=[%d,%1xh,fd=%d,ex=%s]",
1668 curr_sess->si[0].state,
1669 curr_sess->si[0].flags,
1670 curr_sess->si[0].fd,
1671 curr_sess->si[0].exp ?
1672 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
1673 TICKS_TO_MS(1000)) : "");
1674
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001675 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001676 " s1=[%d,%1xh,fd=%d,ex=%s]",
1677 curr_sess->si[1].state,
1678 curr_sess->si[1].flags,
1679 curr_sess->si[1].fd,
1680 curr_sess->si[1].exp ?
1681 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
1682 TICKS_TO_MS(1000)) : "");
1683
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001684 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001685 " exp=%s",
1686 curr_sess->task->expire ?
1687 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
1688 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01001689 if (task_in_rq(curr_sess->task))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001690 chunk_printf(&msg, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01001691
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001692 chunk_printf(&msg, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001693
1694 if (buffer_write_chunk(rep, &msg) >= 0) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01001695 /* let's try again later from this session. We add ourselves into
1696 * this session's users so that it can remove us upon termination.
1697 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001698 LIST_ADDQ(&curr_sess->back_refs, &s->data_ctx.sess.bref.users);
1699 return;
1700 }
1701
1702 s->data_ctx.sess.bref.ref = curr_sess->list.n;
1703 }
1704 s->data_state = DATA_ST_FIN;
1705 /* fall through */
1706
1707 default:
1708 s->data_state = DATA_ST_FIN;
1709 buffer_stop_hijack(rep);
1710 s->ana_state = STATS_ST_CLOSE;
1711 return;
1712 }
1713}
1714
Willy Tarreau74808cb2009-03-04 15:53:18 +01001715/* print a line of error buffer (limited to 70 bytes) to <out>. The format is :
1716 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
1717 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
1718 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
1719 * lines are respected within the limit of 70 output chars. Lines that are
1720 * continuation of a previous truncated line begin with "+" instead of " "
1721 * after the offset. The new pointer is returned.
1722 */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001723static int dump_error_line(struct chunk *out, struct error_snapshot *err,
1724 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01001725{
1726 int end;
1727 unsigned char c;
1728
1729 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001730 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01001731 return ptr;
1732
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001733 chunk_printf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01001734
1735 while (ptr < err->len) {
1736 c = err->buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01001737 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001738 if (out->len > end - 2)
1739 break;
1740 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01001741 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01001742 if (out->len > end - 3)
1743 break;
1744 out->str[out->len++] = '\\';
1745 switch (c) {
1746 case '\t': c = 't'; break;
1747 case '\n': c = 'n'; break;
1748 case '\r': c = 'r'; break;
1749 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01001750 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01001751 }
1752 out->str[out->len++] = c;
1753 } else {
1754 if (out->len > end - 5)
1755 break;
1756 out->str[out->len++] = '\\';
1757 out->str[out->len++] = 'x';
1758 out->str[out->len++] = hextab[(c >> 4) & 0xF];
1759 out->str[out->len++] = hextab[c & 0xF];
1760 }
1761 if (err->buf[ptr++] == '\n') {
1762 /* we had a line break, let's return now */
1763 out->str[out->len++] = '\n';
1764 *line = ptr;
1765 return ptr;
1766 }
1767 }
1768 /* we have an incomplete line, we return it as-is */
1769 out->str[out->len++] = '\n';
1770 return ptr;
1771}
1772
1773/* This function is called to send output to the response buffer.
1774 * It dumps the errors logged in proxies onto the output buffer <rep>.
1775 * Expects to be called with client socket shut down on input.
1776 * s->data_ctx must have been zeroed first, and the flags properly set.
1777 * It automatically clears the HIJACK bit from the response buffer.
1778 */
1779void stats_dump_errors_to_buffer(struct session *s, struct buffer *rep)
1780{
1781 extern const char *monthname[12];
1782 struct chunk msg;
1783
1784 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
1785 s->data_state = DATA_ST_FIN;
1786 buffer_stop_hijack(rep);
1787 s->ana_state = STATS_ST_CLOSE;
1788 return;
1789 }
1790
1791 if (s->ana_state != STATS_ST_REP)
1792 return;
1793
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001794 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau74808cb2009-03-04 15:53:18 +01001795
1796 if (!s->data_ctx.errors.px) {
1797 /* the function had not been called yet, let's prepare the
1798 * buffer for a response.
1799 */
Willy Tarreau74808cb2009-03-04 15:53:18 +01001800 s->data_ctx.errors.px = proxy;
1801 s->data_ctx.errors.buf = 0;
1802 s->data_ctx.errors.bol = 0;
1803 s->data_ctx.errors.ptr = -1;
1804 }
1805
1806 /* we have two inner loops here, one for the proxy, the other one for
1807 * the buffer.
1808 */
1809 while (s->data_ctx.errors.px) {
1810 struct error_snapshot *es;
1811
1812 if (s->data_ctx.errors.buf == 0)
1813 es = &s->data_ctx.errors.px->invalid_req;
1814 else
1815 es = &s->data_ctx.errors.px->invalid_rep;
1816
1817 if (!es->when.tv_sec)
1818 goto next;
1819
1820 if (s->data_ctx.errors.iid >= 0 &&
1821 s->data_ctx.errors.px->uuid != s->data_ctx.errors.iid &&
1822 es->oe->uuid != s->data_ctx.errors.iid)
1823 goto next;
1824
1825 if (s->data_ctx.errors.ptr < 0) {
1826 /* just print headers now */
1827
1828 char pn[INET6_ADDRSTRLEN];
1829 struct tm tm;
1830
1831 get_localtime(es->when.tv_sec, &tm);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001832 chunk_printf(&msg, "\n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01001833 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001834 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01001835
1836
1837 if (es->src.ss_family == AF_INET)
1838 inet_ntop(AF_INET,
1839 (const void *)&((struct sockaddr_in *)&es->src)->sin_addr,
1840 pn, sizeof(pn));
1841 else
1842 inet_ntop(AF_INET6,
1843 (const void *)&((struct sockaddr_in6 *)(&es->src))->sin6_addr,
1844 pn, sizeof(pn));
1845
1846 switch (s->data_ctx.errors.buf) {
1847 case 0:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001848 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001849 " frontend %s (#%d): invalid request\n"
1850 " src %s, session #%d, backend %s (#%d), server %s (#%d)\n"
1851 " request length %d bytes, error at position %d:\n\n",
1852 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
1853 pn, es->sid, es->oe->id, es->oe->uuid,
1854 es->srv ? es->srv->id : "<NONE>",
1855 es->srv ? es->srv->puid : -1,
1856 es->len, es->pos);
1857 break;
1858 case 1:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001859 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001860 " backend %s (#%d) : invalid response\n"
1861 " src %s, session #%d, frontend %s (#%d), server %s (#%d)\n"
1862 " response length %d bytes, error at position %d:\n\n",
1863 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
1864 pn, es->sid, es->oe->id, es->oe->uuid,
1865 es->srv ? es->srv->id : "<NONE>",
1866 es->srv ? es->srv->puid : -1,
1867 es->len, es->pos);
1868 break;
1869 }
1870
1871 if (buffer_write_chunk(rep, &msg) >= 0) {
1872 /* Socket buffer full. Let's try again later from the same point */
1873 return;
1874 }
1875 s->data_ctx.errors.ptr = 0;
1876 s->data_ctx.errors.sid = es->sid;
1877 }
1878
1879 if (s->data_ctx.errors.sid != es->sid) {
1880 /* the snapshot changed while we were dumping it */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001881 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01001882 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
1883 if (buffer_write_chunk(rep, &msg) >= 0)
1884 return;
1885 goto next;
1886 }
1887
1888 /* OK, ptr >= 0, so we have to dump the current line */
1889 while (s->data_ctx.errors.ptr < es->len) {
1890 int newptr;
1891 int newline;
1892
1893 newline = s->data_ctx.errors.bol;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001894 newptr = dump_error_line(&msg, es, &newline, s->data_ctx.errors.ptr);
Willy Tarreau74808cb2009-03-04 15:53:18 +01001895 if (newptr == s->data_ctx.errors.ptr)
1896 return;
1897
1898 if (buffer_write_chunk(rep, &msg) >= 0) {
1899 /* Socket buffer full. Let's try again later from the same point */
1900 return;
1901 }
1902 s->data_ctx.errors.ptr = newptr;
1903 s->data_ctx.errors.bol = newline;
1904 };
1905 next:
1906 s->data_ctx.errors.bol = 0;
1907 s->data_ctx.errors.ptr = -1;
1908 s->data_ctx.errors.buf++;
1909 if (s->data_ctx.errors.buf > 1) {
1910 s->data_ctx.errors.buf = 0;
1911 s->data_ctx.errors.px = s->data_ctx.errors.px->next;
1912 }
1913 }
1914
1915 /* dump complete */
1916 buffer_stop_hijack(rep);
1917 s->ana_state = STATS_ST_CLOSE;
1918}
1919
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01001920
Willy Tarreau10522fd2008-07-09 20:12:41 +02001921static struct cfg_kw_list cfg_kws = {{ },{
1922 { CFG_GLOBAL, "stats", stats_parse_global },
1923 { 0, NULL, NULL },
1924}};
1925
1926__attribute__((constructor))
1927static void __dumpstats_module_init(void)
1928{
1929 cfg_register_keywords(&cfg_kws);
1930}
1931
Willy Tarreau91861262007-10-17 17:06:05 +02001932/*
1933 * Local variables:
1934 * c-indent-level: 8
1935 * c-basic-offset: 8
1936 * End:
1937 */