Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Out-of-order requests in log?

It's probably slow requests.

The timestamps are that of the incoming request, but since the logs include response status and content length the log entry wont be added until those details are available (i.e. the response is completed).

If you have LogLatency turned on, you can check it to confirm whether those requests are indeed taking several minutes to return.

If not, how to add it depends on how you setup logging in the first place - you may be able to simply add "jetty.requestlog.loglatency=true" to start.ini


Back to the top