28 Aug 2024 02:34 PM - last edited on 29 Aug 2024 12:44 PM by GosiaMurawska
Hello,
Our custumer is asking if dynatrace can provide reports with page load time per user session or per userID.
I'm not finding the load page time metric in the data explorer (classic and custom) or in the USQL.
From the analyze performance page in frontend Dynatrace, we can only get pages loads and cant even create it as a metric.
If someone can help me on this, it will be great !
Thank you in advance.
29 Aug 2024 06:57 AM
Hi Sonia,
I think you can use Visually complete metric.
Visually complete is a point-in-time metric that measures how long it takes your web page to become visually complete. Anyway, here you can find all user metrics you can use.
On the other hand, to measure the performance of the web you can use Core Web Vitals metrics (available for USQL and also for DataExplorer).
Hope it helps.
Regards,
Elena.
29 Aug 2024 05:40 PM
Hi @Sonia_A
Can the follows USQL work for you:
select usersession.userId, name, avg(useraction.duration),avg(useraction.visuallyCompleteTime) FROM useraction where application = "www.easytravel.com" and type = "Load" and usersession.userId IS NOT NULL GROUP BY usersession.userId ,name
HTH
Yos