Commit 27d83f41 by Ryan McKinley Committed by Torkel Ödegaard

Add influx 'mode' and 'cumulative_sum' (#7045)

parent f98e07e0
......@@ -174,6 +174,15 @@ register({
});
register({
type: 'mode',
addStrategy: replaceAggregationAddStrategy,
category: categories.Aggregations,
params: [],
defaultParams: [],
renderer: functionRenderer,
});
register({
type: 'sum',
addStrategy: replaceAggregationAddStrategy,
category: categories.Aggregations,
......@@ -230,6 +239,15 @@ register({
});
register({
type: 'cumulative_sum',
addStrategy: addTransformationStrategy,
category: categories.Transformations,
params: [],
defaultParams: [],
renderer: functionRenderer,
});
register({
type: 'stddev',
addStrategy: addTransformationStrategy,
category: categories.Transformations,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment