Hello,

  Testing was done with config [1], which included listener stats to
avoid missing the test case that I had previously

[1]
global
   maxconn 10

defaults
   mode http
   clitimeout 60000
   srvtimeout 30000
   contimeout 4000
   option httpchk

backend b1
   server blog 127.0.0.1:80 maxconn 2 check

frontend f1
   bind *:9080
   default_backend b1

listen stats :9081
   stats enable
   stats hide-version
   stats uri     /admin?stats


Thanks
Bhaskar

On Sun, Feb 9, 2014 at 4:22 AM, Bhaskar Maddala <madda...@gmail.com> wrote:
> Hello,
>
>   Following up on the comments from the previous patch
>
> "me realize that we could possibly do exactly the same
> with them : having per-listener and per-frontend last accept
> could be useful to detect the ones which are never used in
> some environment"
>
>   I have added additional fields to the stats. I looked into the
> comments on using the stats listener but found it easier to
> implement last activity using bytes transferred time
>
> Summary:
> Added fields for last activity/session to stats page.
> Last session for front end tracks the last accept time where as
> for backends tracks the last lb connection time.
>
> Last activity on all (be/fe/listener) tracks the time of
> last byte.
>
>
>
> Thanks
> Bhaskar

Reply via email to