Open
Description
Is there a way we can get the average value for a particular timestamp of a time series key in redis time series.
We are currently recording latency and recording them in milliseconds timestamp and there could be 2 values in same timestamp slot.
We want to know the average stored here and not the sum/max. Also, there seems to be no way to store data in a linkedlist format for a certain timestamp.
The only way to do now is to go for nanoseconds timestamp but that would mean having too much data stored in a time series key. Is there a way where we could address this problem like a average duplicatepolicytype?