v1.41
Changelog
What's Changed
- Filter messages in sub and tap command by @jandelgado in #100
- new:
--filter=FILTER
option fortap
andsub
commands to filter output
of received messages, e.g.rabtap sub JDQ --filter="r.msg.RoutingKey == 'test'"
orrabtap sub JDQ --filter="let b=fromJSON(r.toStr(r.body(r.msg))); b.Name == 'JAN'"
. See README for details. - breaking change: the
binding
,queue
,exchange
,connection
andchannel
variables available
in expressions ofrabtap info --filter=FILTER
are now all prefixed withr.
and are thus now to be referenced asr.binding
,
r.queue
etc. - Documented
channel
andconnection
expression variables that are available in therabtap info --filter <expr>
command. See README for details.
- new:
Full Changelog: v1.40...v1.41