Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] How to get all current HTTP requests in progress

Hi,

On Wed, Jun 28, 2023 at 9:25 PM jdison16--- via jetty-users
<jetty-users@xxxxxxxxxxx> wrote:
>
> Okay, let this question be for Jetty 10+.
> May be Threading is misconfigured, but the question is: how can I get the list of currently serving requests?

If all your threads are blocked, you cannot make another request to
the server to get the list of requests, because there are no threads
to handle this new request.
However, you can enable JMX and then connect to Jetty with JMC and get
a detailed server dump, which should give you enough information.

See https://www.eclipse.org/jetty/documentation/jetty-10/operations-guide/index.html#og-troubleshooting-dump

-- 
Simone Bordet
----
http://cometd.org
http://webtide.com
Developer advice, training, services and support
from the Jetty & CometD experts.


Back to the top