Expand my Community achievements bar.

Check out the November edition of the Analytics Community Lens newsletter to see what's been trending in the last two months!
SOLVED

Measurement logic behind getPageLoadTime plugin

Avatar

Level 2

Hi, we recently implemented page load speed tracking using the getPageLoadTime plugin:

https://docs.adobe.com/content/help/en/analytics/implementation/vars/plugins/getpageloadtime.html

Does anyone know what the measurement logic is behind this? Is it total page load? DOM Ready etc.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Taking a quick look at the plugin it seems like it is getting the delta between window.performance.timing.navigationStart and window.performance.timing.loadEventEnd.

 

(when the load event completed on current page) - (right after the unload completed on the previous page)

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Taking a quick look at the plugin it seems like it is getting the delta between window.performance.timing.navigationStart and window.performance.timing.loadEventEnd.

 

(when the load event completed on current page) - (right after the unload completed on the previous page)