Commit dadae53e by Torkel Ödegaard

Merge branch 'master' of github.com:torkelo/grafana

parents c22c4b86 aa27c13b
......@@ -51,6 +51,13 @@ function (_) {
});
addFuncDef({
name: "nPercentile",
category: categories.Calculate,
params: [ { name: "Nth percentile", type: 'int' } ],
defaultParams: [95]
});
addFuncDef({
name: 'sumSeries',
shortName: 'sum',
category: categories.Combine,
......@@ -164,6 +171,11 @@ function (_) {
});
addFuncDef({
name: 'keepLastValue',
category: categories.Special,
});
addFuncDef({
name: 'scale',
category: categories.Transform,
params: [ { name: "factor", type: "int", } ],
......
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