Expand my Community achievements bar.

📢 Announcement: Adobe Analytics Mentorship Program 2023! 🌟 We are thrilled to introduce the Adobe Analytics Mentorship Program aimed at empowering Community members to upgrade their skill levels by achieving Analytics certifications.
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)

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)