Fixes torkelo/grafana/issues#84: Added implementation of fund parameter for summarize graphite function

pull/85/head
Aaron Brown 12 years ago
parent 1fada5dd0b
commit a868bab24e
  1. 4
      src/app/services/graphite/gfunc.js

@ -176,8 +176,8 @@ function (_) {
addFuncDef({
name: 'summarize',
category: categories.Transform,
params: [ { name: "interval", type: "string" }],
defaultParams: ['1h']
params: [ { name: "interval", type: "string" }, { name: "func", type: "select", options: ['sum', 'avg', 'min', 'max', 'last'] }],
defaultParams: ['1h', 'sum']
});
addFuncDef({

Loading…
Cancel
Save