26 May 2025 06:53 PM
HI ,
I want to extract error information ( error occurrence , affected users, etc ) of one front end web application , which is seen in "Error Inspector" page using DQL .Can somebody help me , how to write dql for it.
Regards,
Heramb sawant
Solved! Go to Solution.
27 May 2025 07:43 AM
Any help will be appreciated
28 May 2025 07:04 PM
Hey,
does anyone know any solution?
28 May 2025 10:47 PM
Hello @heramb_sawant ,
As far as I know, RUM on Grail is not yet generally available to all Dynatrace customers and is currently limited to a few users who have opted in for the preview.
If you’re already one of them, you might want to take a look at this document.
29 May 2025 09:44 AM
Unfortunately I do not have sufficient privileges to view this document.
30 May 2025 07:45 AM
Can someone help me , how can I join events and user.events ?
30 May 2025 05:55 PM
You are right in that User sessions are not in Grail yet, but that does not include davis events with findings relating to users.
You can query problems through DQL and extract event properties that contain the amount of users affected by a problem.
30 May 2025 05:59 PM
Here is a sample DQL
fetch dt.davis.problems
| expand affected_entity_ids
| fieldsAdd app.name = entityName(affected_entity_ids, type: "dt.entity.application")
| filter isNotNull(app.name) and isNotNull(dt.davis.affected_users_count)
| fields event.id, app.name, dt.davis.affected_users_count