diff --git a/src/app/services/graphite/gfunc.js b/src/app/services/graphite/gfunc.js index 5caa516db40..2a420cec75f 100644 --- a/src/app/services/graphite/gfunc.js +++ b/src/app/services/graphite/gfunc.js @@ -187,6 +187,13 @@ function (_) { defaultParams: [25] }); + addFuncDef({ + name: 'highestCurrent', + category: categories.Filter, + params: [ { name: "count", type: "int" } ], + defaultParams: [5] + }); + _.each(categories, function(funcList, catName) { categories[catName] = _.sortBy(funcList, 'name'); });