cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Need help in creating a dashboard for error count

aravind_c
Newcomer

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

1 REPLY 1

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"

!!! Dynatrace !!!

Featured Posts