Re: [PATCH] [MINOR] CSS & HTML fun

2009-10-13 Thread Dmitry Sivachenko
On Mon, Oct 12, 2009 at 11:39:54PM +0200, Krzysztof Piotr Oledzki wrote: > >From 6fc49b084ad0f4513c36418dfac1cf1046af66da Mon Sep 17 00:00:00 2001 > From: Krzysztof Piotr Oledzki > Date: Mon, 12 Oct 2009 23:09:08 +0200 > Subject: [MINOR] CSS & HTML fun > > This patch makes stats page about 30% sm

Re: [PATCH] [MINOR] CSS & HTML fun

2009-10-13 Thread Benedikt Fraunhofer
Hello, 2009/10/13 Dmitry Sivachenko : > End tag for is optional according to really? Something new to me :) > http://www.w3.org/TR/html401/struct/lists.html#edef-UL hmm. "" is optional (implied by next "" or closing "", "" not? Start tag: required, End tag: required the line stating "

Re: [PATCH] [MINOR] CSS & HTML fun

2009-10-13 Thread Dmitry Sivachenko
On Tue, Oct 13, 2009 at 02:16:12PM +0200, Benedikt Fraunhofer wrote: > Hello, > > 2009/10/13 Dmitry Sivachenko : > > > End tag for is optional according to > > really? Something new to me :) > OMG, sorry, I am blind. Forget about that.

RE: multiple applications using HAproxy LB

2009-10-13 Thread Xia Jiang
Hi, Ryan Sorry, I might not have explained this clearly. What I need is explained here: http://agiletesting.blogspot.com/2009/02/load-balancing-in-amazon-ec2-with.html However, I am having problem of acl Boolean statement: acl acl_domain1 url_sub domain1 -i acl acl_domain2 url_su

[PATCH] [MINOR] Collect & provide http response codes received from servers

2009-10-13 Thread Krzysztof Piotr Oledzki
>From a3aac1f1149db0b52dc66f9e70e5ab8d14418b71 Mon Sep 17 00:00:00 2001 From: Krzysztof Piotr Oledzki Date: Tue, 13 Oct 2009 21:14:09 +0200 Subject: [MINOR] Collect & provide http response codes received from servers Additional data is provided on both html & csv stats: - html: when passing a mo

Re: Small patch for the "appsession" feature

2009-10-13 Thread Cyril Bonté
Le lundi 12 octobre 2009 23:17:43, Aleksandar Lazic a écrit : > Hi Cyril, > > good catch. > > >+} > >+ > >+/* > >-#if defined(DEBUG_HASH) > >-Alert("manage_client_side_cookies\n"); > >- > >appsession_hash_dump(&(t->be->htbl_p

RE: Problems with long connect times

2009-10-13 Thread Jonah Horowitz
netstat -ant | grep tcp | tr -s ' ' ' ' | awk '{print $6}' | sort | uniq -c 193 CLOSE_WAIT 316 CLOSING 215 ESTABLISHED 252 FIN_WAIT1 4 FIN_WAIT2 1 LAST_ACK 10 LISTEN 237 SYN_RECV 61384 TIME_WAIT So, clearly there's a time_wait problem. I've already tuned the kernel t

Re: Small patch for the "appsession" feature

2009-10-13 Thread Aleksandar Lazic
On Die 13.10.2009 21:34, Cyril Bonté wrote: Le lundi 12 octobre 2009 23:17:43, Aleksandar Lazic a écrit : Yes, you're right, I missed it after several tests on different snapshots. Here comes a second patch to reintroduce these debug lines : Thanks.

Re: multiple applications using HAproxy LB

2009-10-13 Thread Aleksandar Lazic
On Die 13.10.2009 09:14, Xia Jiang wrote: Hi, Ryan Sorry, I might not have explained this clearly. What I need is explained here: http://agiletesting.blogspot.com/2009/02/load-balancing-in-amazon-ec2-with.html However, I am having problem of acl Boolean statement: how about to use this

Re: [PATCH] [MINOR] Collect & provide http response codes received from servers

2009-10-13 Thread Willy Tarreau
Hi Krzysztof, (responding quickly because I must leave in a few minutes) I like this. However, the 1xx field is useless because that is not a final response, but an intermediate one. If a server responds 1xx, it will also respond something else, and it will be very confusing if we count more resp

Re: Problems with long connect times

2009-10-13 Thread Willy Tarreau
On Tue, Oct 13, 2009 at 12:52:55PM -0700, Jonah Horowitz wrote: > netstat -ant | grep tcp | tr -s ' ' ' ' | awk '{print $6}' | sort | uniq > -c >193 CLOSE_WAIT >316 CLOSING >215 ESTABLISHED >252 FIN_WAIT1 > 4 FIN_WAIT2 > 1 LAST_ACK > 10 LISTEN >237 SYN_RECV > 6138