How to view servicebus message in Azure Portal

Viewed 21596

I am using the Azure Service Bus topic mechanism. I have sent the messages to topic and want to see the messages which are all sent to the topic in azure portal. I can see the messages count but want to see the actual messages instead of count.

How can I do this?

4 Answers

Most easy way get this done ::

  1. https://github.com/paolosalvatori/ServiceBusExplorer/releases
  2. Check the assets folder of required version.
  3. Download the Zip file among others.
  4. unzip to new folder and double click on "ServiceBusExplorer" (not exe.config file).

Now you can connect and see the actual messages.

You can also use Azure Service Bus manager online tool

You will have to provide the connection string in order to use it

Thought it does not answer your question how to view it in the portal directly. Portal has very limited capabilities.

Microsoft has recently released Service Bus Explorer on Portal. We can send/receive/peek messages here. It's still in preview though.

enter image description here

Related