Reputation: 33
We can Create the Consumer group by calling CreateConsumerGroupIfNotExists from the code. But is there a way we can Create it from the Microsoft Azure Portal ?
Upvotes: 3
Views: 9790
Reputation: 411
On the old Azure Portal you can access it via https://manage.windowsazure.com.
Azure Portal -> Service Bus Tab -> myServiceBus -> Event Hub Tab -> myHub
Once inside the Event Hub, there should be a "CONSUMER GROUPS" tab at the top, click on that. Once inside, in the navy blue footer, there should be a "create" button which will let you create a new consumer group. Attached below is a diagram on how to get to this.
Upvotes: 2
Reputation: 411
Create a consumer group in the new portal (https://portal.azure.com/) by the following steps:
Azure Portal > Event Hubs > Event Hub > Consumer Groups > +Consumer Group
Make sure that you've created a Event Hub within your Event Hubs instance. The Consumer Groups tab will be under "Entities" of the Event Hub page.
Upvotes: 4