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

charting apdex using USQL

AndresBrown
Frequent Guest

hey there!

 

I wonder if you guys could help me doing this:

AndresBrown_0-1691768519832.png

 but using USQL? 

 

thanks in advance

 

Andrés.

3 REPLIES 3

AntonioSousa
DynaMight Guru
DynaMight Guru

Yes, you can use USQL to calculate Apdex. Once upon a time, I had a formula that was able to do it. But there were some changes, and it now doesn't give the exact value. It has to do about how errors are accounted for. Anyway, if you are not interested in perfection, it is doable...

Antonio Sousa

Julius_Loman
DynaMight Legend
DynaMight Legend

@AntonioSousa  I believe @AndresBrown wants to show just action counts and not calculate the apdex value (numeric).

@AndresBrown you mean something like this?

 

select 
    count(*) as "Action Count",
    datetime(startTime) as "Time",
    apdexCategory as "Apdex Category"
from 
    useraction
where 
    application="www.easytravel.com"
group by
    datetime(startTime),
    apdexCategory
Certified Dynatrace Master | Alanata a.s., Slovakia, Dynatrace Master Partner

Hey Julius_Loman, 

exactly what I mean.

thanks!!

 

Andres

Featured Posts