You can use DebugKit Plugin to find out the runtime.
Or you can edit index.php in the / application and add:
// top of file
$starTime = microtime(true);
// bottom of file
echo '';
This time will be in microseconds so you can convert it to ms if you want, but DebugKit gives you much more information.
source
share