Forum Discussion
Humayun
Jan 03, 2025Copper Contributor
Cannot see any events in Event Hub Data Explorer
Hi, I am learning Azure Event Hub. I had created an Event Hub Namespace and Event Hub. I am using Data Explorer to send some events. But whenever I click View Events button nothing is showing. I am using admin account so I guess there should be no access related issue.
I am sending events through Send events button. Once the event send notification is received I click View events button. I have only default Consumer group.
I connected this Event Hub to MS Fabric Event Stream and data was showing there.
Would like any suggestions to solve this issue or any steps to try out.
I tried this Maximum wait time in seconds option. It is by default set to 5 seconds. Increasing its value, solved the problem.
- bougleziCopper Contributor
When you click Show Events, Data Explorer displays events in a specific time range. If you send the events quickly, they may not yet be available in the search window or the time range displayed may not match the time of sending.
- HumayunCopper Contributor
I tried this Maximum wait time in seconds option. It is by default set to 5 seconds. Increasing its value, solved the problem.
- Sudama PrasadCopper Contributor
Looks like you’ve set things up right, but there might be a few small things causing the issue. Here’s what I’d check:
Consumer Group Conflicts
Using $Default as your consumer group could be the problem. If Fabric Event Stream is reading from it, it might’ve already committed the offsets. Just create a new consumer group and use that in Data Explorer. Keeps things clean and avoids conflicts.
Event Position
You’re using the oldest position, which should work, but sometimes flipping it to the newest position or setting a custom position helps. Could be something with the offsets not aligning.
Partitions
Selecting “All partition IDs” is fine, but if nothing shows up, try targeting a single partition directly. If you know where your events are landing, this can give you better insights.
Retention Window
Double-check your Event Hub’s retention period. If the events you sent are older than the configured time, they’re gone, and nothing will show up.
Permissions
Even though you’re using an admin account, make sure you’ve got the Data Receiver role on the Event Hub. Sometimes small permission gaps cause annoying issues.
Advanced Settings
Take a look at any filters or options under advanced properties in Data Explorer. Sometimes there’s a subtle setting blocking events from showing up.
If none of this works, try using the Azure CLI or an SDK (Python, .NET, whatever you’re comfortable with) to pull the events directly and confirm they’re actually there. If the data is in Fabric but not showing in Data Explorer, it’s probably a conflict or setup issue.