Graphite: Added cumulative and minimumBelow graphite functions, Closes #1297

This commit is contained in:
Torkel Ödegaard 2015-01-05 20:25:55 +01:00
parent ab052a5ed3
commit 7c6f0ad445
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,8 @@
# 2.0.0 (unreleased)
**Enhancements**
- [Issue #1297](https://github.com/grafana/grafana/issues/1297). Graphite: Added cumulative and minimumBelow graphite functions
# 1.9.1 (2014-12-29)
**Enhancements**

View File

@ -223,6 +223,13 @@ function (_, $) {
defaultParams: ['max']
});
addFuncDef({
name: "cumulative",
category: categories.Special,
params: [],
defaultParams: []
});
addFuncDef({
name: "groupByNode",
category: categories.Special,
@ -467,6 +474,13 @@ function (_, $) {
defaultParams: [0]
});
addFuncDef({
name: 'minimumBelow',
category: categories.Filter,
params: [{ name: "value", type: "int" }],
defaultParams: [0]
});
addFuncDef({
name: 'limit',
category: categories.Filter,