1

How to understand Site Speed Page Timings in google analytics.

  • Is it time that server use to response,
  • or it is full time with all DOM elements loadings?

avg. Page Load Time (sec)

Maxim Yefremov
  • 13,671
  • 27
  • 117
  • 166

2 Answers2

0

From Google Tooltip: "Avg. Page Load Time is the average amount of time (in seconds) it takes for pages from the sample set to load, from initiation of the pageview (e.g. click on a page link) to load completion in the browser. If you see zero (0) as a value or a small increase in November 2011, read the About Site Speed article."

Take a look at the Technical tab in under the Explorer report:

enter image description here

Blexy
  • 9,573
  • 6
  • 42
  • 55
0

As stated here (How do the metrics of Google Analytics Site Speed map to the W3C Navigation Timing API?), the avg. page load time is:

pageLoadTime = loadEventStart - navigationStart

loadEventStart and navigationStart are taken from Navigation Timing API https://developer.mozilla.org/en-US/docs/Web/API/Navigation_timing_API

aram
  • 36
  • 4