Commit 384687e1 by Torkel Ödegaard

Added parameter to keepLastValue graphite function definition (default 100), Closes #459

parent f799ded4
......@@ -4,6 +4,7 @@ vNext
- Refactoring of filterSrv (Issue #428), thx @Tetha
- New config for playlist feature. Set playlist_timespan to set default playlist interval (Issue #445) - thx @rmca
- New InfluxDB function difference add to function dropdown (PR #455)
- Added parameter to keepLastValue graphite function definition (default 100), Closes #459
# Fixes
- Filter option loading when having muliple nested filters now works better.
......
......@@ -231,6 +231,8 @@ function (_) {
addFuncDef({
name: 'keepLastValue',
category: categories.Special,
params: [ { name: "n", type: "int", } ],
defaultParams: [100]
});
addFuncDef({
......
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