-
Analyzing Page Load Times in GA4: Metrics and Visualization
Hey there! So, I’ve been using GA4 to keep tabs on my Vue app, mainly trying to catch the page load speed. I’ve been using gtag.js for grabbing the numbers and ferrying them over to GA4. Now, I’m scratching my head wondering if there are better ways out there to track load speeds besides my current tactic?
Also, while I’m picking your brain, do you know if GA4 lets you pull average values for load times when you’re exploring the data? Or is it a case of trawling through every single page’s stats by itself?
Just for your info, I’ve been measuring the render time on every page like so:
`javascript
event((‘page_load’), {
page_title: this.$options.name,
time_to_render: timeToRender,
non_interaction: true,
value: timeToRender
})
`
Perfectly lined up in Google Analytics, now I just want to see it all, ideally with some neat averages tied in. Any bright ideas?
Log in to reply.