18 Sep 2026 11:02 AM
We are using Dynatrace Classic Mobile Crash Analysis and can retrieve crash metadata using USQL APIs. How can we retrieve the full app crash stack trace programmatically?
Is there a supported API for stack traces, or are stack traces only available through the Crash Analysis UI/internal endpoints such as '/rest/dtaql/executequery'?
We also need to export all crash records for a specific time range without the 1000-record UI limitation.
18 Sep 2026 12:55 PM
If you are on SaaS win New RUM experience enabled, you can query it using DQL:
fetch user.events
| filter characteristics.classifier == "error"
| filter characteristics.has_crash == true
For Classic RUM (or if you are in Managed, which has only Classic RUM), there is no API. The session data can be accessed only by USQL API, there is no API access to the raw data which is used to display the screens in UI
Featured Posts