There are several functions that take multiple arguments. When using the ini configuration method there is a way to supply these args using the [] array notation feature of php's ini parser. While this works it's a little confusing to less php savvy users.
Since we know from the CallSpec if a function accepts multiple arguments or not it would be nice to do some sort of auto-splitting of comma-separated list values. For example:
There are several functions that take multiple arguments. When using the ini configuration method there is a way to supply these args using the
[]
array notation feature of php's ini parser. While this works it's a little confusing to less php savvy users.Since we know from the CallSpec if a function accepts multiple arguments or not it would be nice to do some sort of auto-splitting of comma-separated list values. For example:
should be treated the same as
with both generating
aliasByNode(my-metric, 1, 3, 5)
as the output series.