A follow-up question from Graphite: sum all stats that match a pattern?:
Is there any Graphite magic to recursively descend node names? I now know that I can use patterns like so:
stats.timers.api.*.200.count
... but imagine that I have the following:
stats.timers.api.foo.bar.200.count
stats.timers.api.baz.200.count
I'd like to see both of those stats (and all others of arbitrary depth) on the same chart. I tried the following:
stats.timers.api.*.200.count
stats.timers.api.**.200.count
The former only shows me items like the 'baz' example above; the latter is an error.
Is there some other way to match metrics in a depth-insensitive manner?