Hello,
New to App Dynamics Analytics.
I want to write a query in ADQL for the following situation.
In a business transaction if a record appears more than 2 times in 30 seconds, i have to alert. Basically I have consider that they are duplicate records if they happen within 30 seconds duration. I don't find GROUP BY clause in ADQL
SELECT COUNT(segments.userData.employeeid) FROM transactions WHERE application = "MSDynamics-PROD" AND transactionName = "Plugs" and segments.userData.EventType = "Authentication" and segments.userData.EventSubType = "Passcode"
Thank You
... View more