[rabbitmq-discuss] Regex expression to exclude certain queues in the "Queue" tab?
Simon MacMullen
simon at rabbitmq.com
Mon Feb 10 09:55:31 GMT 2014
On 07/02/2014 19:42, Matt Pietrek wrote:
> I want to set the filter to exclude a set of queues, say... all queues
> that start with "web-rpc".
Try:
^(?!web-rpc)(.+)$
This can be generalised:
^(?!bad-prefix|another-bad-prefix|etc)(.+)$
> I'm on 3.2.2, FWIW.
Are you sure? Is there a "Regex" checkbox? Because the regex checkbox is
only in nightly builds ATM; if you are really running 3.2.2 then you
just get simple string matching and excluding prefixes is not possible.
Cheers, Simon
More information about the rabbitmq-discuss
mailing list