Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Timing page render in Play 2.0 Scala Framework

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

like image 420
schmmd Avatar asked May 09 '12 15:05

schmmd


2 Answers

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

Firebug for Firefox

like image 61
HEX Avatar answered Nov 03 '22 00:11

HEX


If you're asking about metrics on the server side, then you probably want this: http://metrics.codahale.com/

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

like image 28
Will Sargent Avatar answered Nov 03 '22 00:11

Will Sargent