Component Tree Dump
Jetty components are organized in a component tree.
At the root of the component tree there is typically a ContainerLifeCycle instance — typically a Server instance on the server and an HttpClient instance on the client.
ContainerLifeCycle has built-in dump APIs that can be invoked either directly on the Server instance, or via JMX.
You can invoke Server.dump() via JMX using a JMX console such as Java Mission Control (JMC):
You can get more details from a Jetty’s QueuedThreadPool dump by enabling detailed dumps via queuedThreadPool.setDetailedDump(true).
|