.net - How to read the content of service bus messages only for monitoring -
is there way read messages in queue or topics without pulling or changing behavior (just monitoring)?
azure service bus allows peek messages.
for example, can use queueclient.peekasync()
to peek messages queue. there's equivalent topics , subscriptions well.
in case don't need differentiate between messages queues , subscriptions, there's messagereceiver.peekasync()
option.
Comments
Post a Comment