mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Graphite: Added cumulative and minimumBelow graphite functions, Closes #1297
This commit is contained in:
parent
ab052a5ed3
commit
7c6f0ad445
@ -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)
|
# 1.9.1 (2014-12-29)
|
||||||
|
|
||||||
**Enhancements**
|
**Enhancements**
|
||||||
|
@ -223,6 +223,13 @@ function (_, $) {
|
|||||||
defaultParams: ['max']
|
defaultParams: ['max']
|
||||||
});
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: "cumulative",
|
||||||
|
category: categories.Special,
|
||||||
|
params: [],
|
||||||
|
defaultParams: []
|
||||||
|
});
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: "groupByNode",
|
name: "groupByNode",
|
||||||
category: categories.Special,
|
category: categories.Special,
|
||||||
@ -467,6 +474,13 @@ function (_, $) {
|
|||||||
defaultParams: [0]
|
defaultParams: [0]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'minimumBelow',
|
||||||
|
category: categories.Filter,
|
||||||
|
params: [{ name: "value", type: "int" }],
|
||||||
|
defaultParams: [0]
|
||||||
|
});
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'limit',
|
name: 'limit',
|
||||||
category: categories.Filter,
|
category: categories.Filter,
|
||||||
|
Loading…
Reference in New Issue
Block a user