Hello all,
I have a seemingly simple goal: bucketing events by time and finding the 95th percentile using the total number of events in each bin. I'm able to get the counts for each bin but I'm not sure how to use each of those counts and find the percentile using `p()`.
This is how I'm getting the count for each bin:
`| bin _time span=5m | stats count by _time `
Now I want to use the values in the count column as an input list to calculate `p95()`.
Thanks for the help in advance.
↧