Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
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)