You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to exclude the console-conumers metrics.
I tried using this regex ^(?!console.*).*
But I got an error since GO go regexp package seems to use RE2 syntax, not PCRE, the ?! operator is not supported, is there any way to do this please ?
Thanks
The text was updated successfully, but these errors were encountered:
Also looking for a way to exclude some groups from metrics. Apparently via the regex pattern it is not easy to do so as Go regexp does not support lookaheads
I would like to exclude the console-conumers metrics.
I tried using this regex
^(?!console.*).*
But I got an error since GO go regexp package seems to use RE2 syntax, not PCRE, the
?!
operator is not supported, is there any way to do this please ?Thanks
The text was updated successfully, but these errors were encountered: