09 May 2025 03:39 PM - edited 09 May 2025 03:40 PM
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
Solved! Go to Solution.
12 May 2025 12:43 AM
@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)) }