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

How to get synthetic availability using DQL on dashboard

heramb_sawant
Organizer

Hi,
I want to show synthetic availability % on new dashboard using DQL. Can somebody please help  on this .Does  Grail has all the classic metrics of synthetic  using DQL  + timeseries.

i did not find any example  in dynatrace documentation.

Regards,
Heramb Sawant

1 REPLY 1

p_devulapalli
Leader

@heramb_sawant Here is an example for browser monitor availability , please refer to the below link for list of metrics available in grail for Synthetic monitors 

https://docs.dynatrace.com/docs/shortlink/built-in-metrics-on-grail#synthetic-monitoring

 

timeseries series = avg(dt.synthetic.browser.availability), 
            by:{ monitored_entities, 
                 dt.entity.synthetic_test,
                 dt.entity.synthetic_location
                },
            filter: { matchesValue(entityAttr(dt.entity.synthetic_test, "entity.name"), "XXXX") }
| summarize { availability = avg(arrayAvg(series)) }

 

Phani Devulapalli

Featured Posts