I'm using Jetty 8.1.8.
I'd like to be able to record when a new persistent connection is opened, how many requests/responses are sent over the persistent connection, and when the persistent connection is closed.
In other words, how can I determine the average number of requests/responses sent over a persistent HTTP connection to my Jetty server?
I have a feeling it may be something todo with the AbstractLifeCycle class, but I can't find much documentation on it and the Javadocs are fairly spartan.