09 Oct 2024 06:01 AM
In DQL while using timeseries and interval together how does it work when a timeseries data has more than 1 value in a minute when we use something like this?
timeseries `metric1` = avg(log.metric1), interval: 1m
the values come out something like [
0.83554765,
0.7350236923076923,
0.45037186666666673,
0.6317054285714285,
0.30930225,
0.5118338571428571,
0.9574674999999999,
0.6376439166666666,
0.5517085714285714,
0.6551528,
null
]
Out of this what if in any one minute there are two/three values.. what value is shown among them ?
09 Oct 2024 11:22 AM
Hello @Maheedhar_T !
As long as I know it'll use the aggregation, in your case, will make an average of the different data points.
Hope you a good monitoring!