This is a vscode extension to send message to or monitor messages in Azure Event Hub.
[x] Select Event Hub
[x] Send messages to Event Hub
[x] Monitor Event Hub messages
Command | Keyboard Shortcuts | Menu Contexts |
---|---|---|
Select event hub | None | editor/context |
Send message to Event Hub | None | editor/context |
Start monitoring Event Hub message | None | editor/context |
Stop monitoring Event Hub message | None | editor/context (in output panel) |
You could directly run EventHub: Select Event Hub
to set the event hub connectionstring and entity path you want to work with.
Otherwise, it will prompt for you to set manually in settings when you try to send message to event hub or monitor event hub messages.
EventHubConnectionString:
{
"azure-event-hub-explorer.eventHubConnectionString": "{Event Hub connection string}"
}
EntityName:
{
"azure-event-hub-explorer.eventHubEntityName": "{entityName}"
}
Those two settings are optional. eventHubConsumerGroup default is "$Default", and showVerboseMessage default to false.
EventHubConsumerGroup:
{
"azure-event-hub-explorer.eventHubConsumerGroup": "$Default"
}
ShowVerboseMessage:
{
"azure-event-hub-explorer.showVerboseMessage": false
}
Submit issues if any problems or suggestions.
Fork the repo and submit pull requests.