|
|
|
|
|
by jrosoff
5716 days ago
|
|
Thanks for the feedback! You're correct about the issues with "page load" time. The approach in the post is really measuring the amount of time that the browser spends processing the page. However, for many modern web apps, most of the time is spent in these internal aspects of your page such as loading CSS, running javascripts, fetching images, etc... The web timing API (there's another post about that here: http://blog.yottaa.com/2010/10/using-web-timing-api-to-measu...) we can get more detailed timers that count not just the browser time, but actually the full amount of time between typing in the URL into the browser (or clicking a link) and finishing the load of the page. The linear trend line was created by excel automatically so I can't vouch for its accuracy other than my implicit trust of that feature. |
|