Home > OS >  How to check the event received in Azure Event Hub
How to check the event received in Azure Event Hub

Time:10-09

Perhaps a rather simple question, yet I couldn't find the answers after doing some searching.

After I have send an event to an Azure event Hub (via the Java code), how could I check back in the Azure Portal about the event that I have sent ? (so that I could inspect the header and body of the event content for verification).

In the Azure Portal, after I have clicked in the event hub, there is a metric to show the incoming requests, but this only shows the counts, but I would want to inspect the individual event recevied.

CodePudding user response:

To my knowledge, it's not currently possible to inspect Event Hubs events via the portal. To do you, you'd either need to read the events using one of the SDKs or a product like enter image description here

  • Related