24 Jul 2024 09:41 PM - last edited on 25 Jul 2024 08:31 AM by MaciejNeumann
Hi everyone,
Can i define a geolocation-based alarm according to apdex rating or visual complete time in an application?
Thanks,
Solved! Go to Solution.
25 Jul 2024 01:19 AM
Hi @Osiris5654 , I don't have one for DQL, but you could use some of the in built metrics to create an SLO / SLA using
something like:
100 * ((builtin:apps.web.apdex.userType.geoBig:filter(and(or(in("dt.entity.geolocation",entitySelector("type(geolocation),entityName.equals(~"Australia~")"))))):splitBy("dt.entity.geolocation","dt.entity.application")))
you can also apply an entity selector for the application in the SLO to filter on a particular page.
from here you can generate SLO Alerts.
hope this helps