Graphite: added second optional parameter to averageSeriesWithWildcards, Closes #926

This commit is contained in:
Torkel Ödegaard
2014-10-11 06:24:44 -04:00
parent 88bbc720ca
commit e9c7523646
+4 -1
View File
@@ -155,7 +155,10 @@ function (_) {
addFuncDef({
name: 'averageSeriesWithWildcards',
category: categories.Combine,
params: [{ name: "node", type: "int" }],
params: [
{ name: "node", type: "int" },
{ name: "node", type: "int", optional: true },
],
defaultParams: [3]
});