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

How to get Error Inspector information using DQL

heramb_sawant
Organizer

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

7 REPLIES 7

heramb_sawant
Organizer

Any help will be appreciated 

Hey,
does anyone know any solution?

Akhil-Jayendran
Advisor

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.


https://community.dynatrace.com/t5/The-New-RUM-Experience-Preview/Users-amp-Sessions-get-started-and...

Consultant | TEKsystems

Unfortunately I do not have sufficient privileges to view this document.

Can someone help me , how can I join events and user.events  ? 

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.

mark_bley
Dynatrace Champion
Dynatrace Champion

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

mark_bley_0-1748624349393.png

 

Featured Posts