Commit 30bf8380 by Torkel Ödegaard

added smartSummarize graphite function definition

parent 0019101f
...@@ -286,6 +286,13 @@ function (_) { ...@@ -286,6 +286,13 @@ function (_) {
}); });
addFuncDef({ addFuncDef({
name: 'smartSummarize',
category: categories.Transform,
params: [ { name: "interval", type: "string" }, { name: "func", type: "select", options: ['sum', 'avg', 'min', 'max', 'last'] }],
defaultParams: ['1h', 'sum']
});
addFuncDef({
name: 'absolute', name: 'absolute',
category: categories.Transform, category: categories.Transform,
}); });
......
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