Commit a868bab2 by Aaron Brown

Fixes torkelo/grafana/issues#84: Added implementation of fund parameter for…

Fixes torkelo/grafana/issues#84: Added implementation of fund parameter for summarize graphite function
parent 1fada5dd
...@@ -176,8 +176,8 @@ function (_) { ...@@ -176,8 +176,8 @@ function (_) {
addFuncDef({ addFuncDef({
name: 'summarize', name: 'summarize',
category: categories.Transform, category: categories.Transform,
params: [ { name: "interval", type: "string" }], params: [ { name: "interval", type: "string" }, { name: "func", type: "select", options: ['sum', 'avg', 'min', 'max', 'last'] }],
defaultParams: ['1h'] defaultParams: ['1h', 'sum']
}); });
addFuncDef({ addFuncDef({
......
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