I'm developing simple Spring Boot web application with embedded Jetty server.
I'd like to have some statistics on connection pool usage (i.e. how many threads, avg request time. avg queue wait time, queue size etc.)
I realized that Spring Boot configures Jetty with QueuedThreadPool
which has few basic metrics. Is there more sophisticated bean or module designated for statistics collecting in Spring Boot? How to enable it?