Display Sync Page in 2.0 Scala Playback Mode

Is it possible to measure the time it takes to render a page - or at least the time it takes to send a page to a client - in the Play Framework?

+6
source share
2 answers

You can use Firebug to measure the time it takes to send a page to a client.

Firebug for Firefox

+2
source

If you are asking about server-side metrics, then you probably want this: http://metrics.codahale.com/

If you ask on the client side, then Google Developer Developer Tools has some amazing features: http://www.youtube.com/watch?v=OxW1dCjOstE

+2
source

Source: https://habr.com/ru/post/915298/


All Articles