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

Get user apdex value via API

pablo_sanchez
Visitor

Hi.

Because Dynatrace doesn't offer the possibility to focus on the performance of specific regions in dashboarding tiles, we are trying to extract user experience data via API to make a custom dashboard externally. We are trying to extract the apdex value in the usersessions (or useractions, because it seems to be the only object which has it) via API, but we aren't having any luck. we are trying something like this just to see if we can see this data:

https://(tenant).dynatrace.com/api/v1/userSessionQueryLanguage/table?api-token=(token)&query=SELECT * FROM usersession

Which i got from here: https://www.dynatrace.com/support/help/dynatrace-a...

is there something i'm doing wrong?

Thank you. Kind Regards.

 

1 REPLY 1

AlexanderSommer
Dynatrace Champion
Dynatrace Champion

Sorry, for the late replay. Yes you can use the Rest API to do things like:

select apdexCategory, count(*) FROM useraction where usersession.userType = 'REAL_USER' GROUP BY apdexCategory

You can navigate to the Explore Dynatrace API view and play around within the UI for tuning your statements. Please make sure to create first an access token.


Featured Posts