mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Added nPercentile and keepLastValue
This commit is contained in:
parent
b396563235
commit
2ea21e1f96
@ -50,6 +50,13 @@ function (_) {
|
|||||||
defaultParams: [3]
|
defaultParams: [3]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: "nPercentile",
|
||||||
|
category: categories.Calculate,
|
||||||
|
params: [ { name: "Nth percentile", type: 'int' } ],
|
||||||
|
defaultParams: [95]
|
||||||
|
});
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'sumSeries',
|
name: 'sumSeries',
|
||||||
shortName: 'sum',
|
shortName: 'sum',
|
||||||
@ -163,6 +170,11 @@ function (_) {
|
|||||||
category: categories.Special,
|
category: categories.Special,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'keepLastValue',
|
||||||
|
category: categories.Special,
|
||||||
|
});
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'scale',
|
name: 'scale',
|
||||||
category: categories.Transform,
|
category: categories.Transform,
|
||||||
|
Loading…
Reference in New Issue
Block a user