Hi All
I'm looking at the possible approaches to obtain events that contain the most recent values for one or more fields.
consider the following events
user=a, action='pass', data=a
user=b, action='fail', data=b
user=c, action='pass', data=c
user=c, action='fail', data=d
I'd like to filter on the most recent value of let's say action.
Ideally you'd like to keep the result as events so that you can
report on additional fields like data.
... View more