Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] Statistics on

Hi,

If your goal is optimize your app and have a better look at what really happen,
I would recommand to forget such "simple" statistics
and use Perfino (https://www.ej-technologies.com/products/perfino/overview.html).

Regards,

Guillaume

(I'm not affiliated to this product, it just kick ass)



2017-09-25 17:59 GMT+02:00 Simone Bordet <sbordet@xxxxxxxxxxx>:
Hi,

On Mon, Sep 25, 2017 at 4:44 PM, Johan Piculell <johan@xxxxxxxxxxx> wrote:
> Thanks Simone (and sorry for the crappy subject, premature mail sending ;-)
> ).
>
> Seems like it is #1807 I'm interested in,  description is a bit short in
> that discussion however but assume I would need to hook into
>
> requestBeforeDispatch
> requestAfterDispatch
>
> and do my calculations to get some max, average, etc timings on the
> dispatching. Looking forward to a release were I can experiment with this.

Note that those events will happen just before and just after the
invocation to HttpServlet.service() (and possibly Servlet Filters).
As such, I'm not sure you get much value out of those that you cannot
get already with a Servlet Filter.

> Just out of curiosity, would the selector thread timings be possible to get
> in versions <= v9.3.x?

Not really. You could measure how long a task submitted to the thread
pool remains in the queue before being executed, but you won't be able
to tell what task (unless doing some heavy RTTI).

--
Simone Bordet
----
http://cometd.org
http://webtide.com
Developer advice, training, services and support
from the Jetty & CometD experts.
_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


Back to the top