mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fixes torkelo/grafana/issues#84: Added implementation of fund parameter for summarize graphite function
This commit is contained in:
@@ -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({
|
||||||
|
|||||||
Reference in New Issue
Block a user