Commit b3965632 by Torkel Ödegaard

Merge pull request #185 from nikicat/master

added graphite functions: percentileOfSeries, sumSeriesWithWildcards, averageSeriesWithWildcards
parents ec6fae9e c5b992e3
......@@ -63,6 +63,27 @@ function (_) {
});
addFuncDef({
name: 'percentileOfSeries',
category: categories.Combine,
params: [ { name: "n", type: "int" }, { name: "interpolate", type: "select", options: ["true", "false"] } ],
defaultParams: [95, "false"]
});
addFuncDef({
name: 'sumSeriesWithWildcards',
category: categories.Combine,
params: [ { name: "node", type: "int" } ],
defaultParams: [3]
});
addFuncDef({
name: 'averageSeriesWithWildcards',
category: categories.Combine,
params: [ { name: "node", type: "int" } ],
defaultParams: [3]
});
addFuncDef({
name: "alias",
category: categories.Special,
params: [ { name: "alias", type: 'string' } ],
......
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