31 May 2018
04:02 PM
- last edited on
28 Jun 2021
02:12 PM
by
MaciejNeumann
Dynatrace stores samples in one minute slots. when you request max aggregation for 10 minute period, we look for maximum in set of 10 maxes in each minute, Here it was ten times 68, so the result is 68.
With sum aggregation you simply get sum of all samples. Currently It is not possible get average sum per minute.
Solved! Go to Solution.
01 Jun 2018 12:48 AM
You'd need to implement this yourself. You'd pull the average using series queryMode and then evaluate all 10 elements in the series.
If I'm understanding what you're asking.