Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
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)