01 Jul 2025 04:52 AM
Hi all
I need help here. the requirement is , There are 2 web apps which will run on Android and iOS. so total of 4, app1 android, App1 iOS, App2 android and App2 iOS. App 1 has different links in it and App2 as well. Now I need to create a dashboard for user action and error count for each links on both apps. I need to create 4 tiles in the dashboard. Suggestions and help is appreciated
Solved! Go to Solution.
01 Jul 2025 05:38 AM
Hi @aravind_c ,
I assume you already have four mobile applications configured in Dynatrace for RUM, and you’d like to showcase the user actions and error counts for each application on your dashboard.
If that’s the case, you can go to the User Session Query tab, explore the USQL, and pin the data to your dashboard.
for example :
SELECT COUNT(*) AS "User Action Count" FROM useraction WHERE application = "YourMobileAppName"
SELECT COUNT(*) AS "User Error Count" FROM usererror WHERE application = "YourMobileAppName"