I need to run a very simple query
requests | where cloud_RoleName == "blabla" | summarize Count=count() by url | order by Count desc only thing i need to get the data just from the past 5 minutes if i try this :
requests | where timestamp < ago(5m) | where cloud_RoleName == "blabla" | summarize Count=count() by url | order by Count desc or this
requests | where cloud_RoleName == "blabla" and timestamp < ago(5m) | summarize Count=count() by url | order by Count desc but all of them are returning answers with data older than 5 minutes. ive read the doc and i see no other way of writing this query
can anyone assist?
timestamp > ago(5m)? I mean if ago(5m) returns the timestamp from 5 minutes ago, you'd want the ones with a timestamp greater than that.