KairosDB version 1.1.3-1.
I have dataPoints with [time, name, key, value]
.
Is it possible to at first group them by name
and key
, then aggregate results, then group them again by key
and then aggregate again?
So basically:
- All values for
name1
+key1
and all values forname2
+key1
- Aggregate each by average (period 10 sec)
- Group aggregated results by
key1
(I want to combine results here) - Aggregate given results by sum (same period, 10 sec).