Skip to content

Commit d03aead

Browse files
authored
Merge pull request #173929 from spelluru/freshness0927-7
freshness review
2 parents b83ea93 + 272224c commit d03aead

10 files changed

+21
-13
lines changed

articles/event-grid/blob-event-quickstart-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Send Blob storage events to web endpoint - template'
33
description: Use Azure Event Grid and an Azure Resource Manager template to create Blob storage account, and subscribe its events. Send the events to a Webhook.'
4-
ms.date: 07/07/2020
4+
ms.date: 09/28/2021
55
ms.topic: quickstart
66
ms.custom: subject-armqs
77
---

articles/event-grid/custom-event-to-eventhub.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Quickstart: Send custom events to Event Hubs - Event Grid, Azure CLI'
33
description: 'Quickstart: Use Azure Event Grid and Azure CLI to publish a topic, and subscribe to that event. An event hub is used for the endpoint.'
4-
ms.date: 07/07/2020
4+
ms.date: 09/28/2021
55
ms.topic: quickstart
66
ms.custom: devx-track-azurecli
77
---
@@ -32,6 +32,9 @@ An event grid topic provides a user-defined endpoint that you post your events t
3232

3333
```azurecli-interactive
3434
topicname=<your-topic-name>
35+
```
36+
37+
```azurecli-interactive
3538
az eventgrid topic create --name $topicname -l westus2 -g gridResourceGroup
3639
```
3740

@@ -41,6 +44,9 @@ Before subscribing to the custom topic, let's create the endpoint for the event
4144

4245
```azurecli-interactive
4346
namespace=<unique-namespace-name>
47+
```
48+
49+
```azurecli-interactive
4450
hubname=demohub
4551
4652
az eventhubs namespace create --name $namespace --resource-group gridResourceGroup
@@ -89,7 +95,7 @@ done
8995

9096
Navigate to the event hub in the portal, and notice that Event Grid sent those three events to the event hub.
9197

92-
![Show messages](./media/custom-event-to-eventhub/show-result.png)
98+
:::image type="content" source="./media/custom-event-to-eventhub/show-result.png" lightbox="./media/custom-event-to-eventhub/show-result.png" alt-text="Image showing the portal page with incoming message count as 3.":::
9399

94100
Typically, you create an application that retrieves the events from the event hub. To create an application that gets messages from an event hub, see:
95101

-5.96 KB
Loading

articles/event-hubs/event-hubs-dedicated-cluster-create-portal.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create an Event Hubs dedicated cluster using the Azure portal
33
description: In this quickstart, you learn how to create an Azure Event Hubs cluster using Azure portal.
44
ms.topic: quickstart
5-
ms.date: 06/23/2020
5+
ms.date: 09/28/2021
66
---
77

88
# Quickstart: Create a dedicated Event Hubs cluster using Azure portal
@@ -30,29 +30,31 @@ An Event Hubs cluster provides a unique scoping container in which you can creat
3030
3131
To create a cluster in your resource group using the Azure portal, complete the following steps:
3232

33-
1. Follow [this link](https://aka.ms/eventhubsclusterquickstart) to create a cluster on Azure portal. Conversely, select **All services** from the left navigation pane, then type in "Event Hubs Clusters" in the search bar and select "Event Hubs Clusters" from the list of results.
34-
2. On the **Create Cluster** page, configure the following settings:
33+
1. Follow [this link](https://aka.ms/eventhubsclusterquickstart) to create a cluster on Azure portal. Conversely, select **All services** from the left navigation pane, then type in **Event Hubs Clusters** in the search bar and select **Event Hubs Clusters** from the list of results.
34+
1. On the **Event Hubs Clusters** page, select **+ Create** on the toolbar.
35+
1. On the **Create Cluster** page, configure the following settings:
3536
1. Enter a **name for the cluster**. The system immediately checks to see if the name is available.
3637
2. Select the **subscription** in which you want to create the cluster.
3738
3. Select the **resource group** in which you want to create the cluster.
3839
4. Select a **location** for the cluster. If your preferred region is grayed out, it is temporarily out of capacity and you can submit a [support request](#submit-a-support-request) to the Event Hubs team.
3940
5. Select the **Next: Tags** button at the bottom of the page. You may have to wait a few minutes for the system to fully provision the resources.
4041

41-
![Create Event Hubs Cluster - Basics page](./media/event-hubs-dedicated-cluster-create-portal/create-event-hubs-clusters-basics-page.png)
42+
:::image type="content" source="./media/event-hubs-dedicated-cluster-create-portal/create-event-hubs-clusters-basics-page.png" alt-text="Image showing the Create Event Hubs Cluster - Basics page.":::
4243
3. On the **Tags** page, configure the following:
4344
1. Enter a **name** and a **value** for the tag you want to add. This step is **optional**.
4445
2. Select the **Review + Create** button.
4546

46-
![Create Event Hubs Cluster page - Tags page](./media/event-hubs-dedicated-cluster-create-portal/create-event-hubs-clusters-tags-page.png)
47+
:::image type="content" source="./media/event-hubs-dedicated-cluster-create-portal/create-event-hubs-clusters-tags-page.png" alt-text="Image showing the Create Event Hubs Cluster page - Tags page.":::
4748
4. On the **Review + Create** page, review the details, and select **Create**.
4849

49-
![Create Event Hubs Cluster page - Review + Create page](./media/event-hubs-dedicated-cluster-create-portal/create-event-hubs-clusters-review-create-page.png)
50+
:::image type="content" source="./media/event-hubs-dedicated-cluster-create-portal/create-event-hubs-clusters-review-create-page.png" alt-text="Image showing the Create Event Hubs Cluster page - Review + Create page.":::
51+
5. After the creation is successful, select **Go to resource** to navigate to the home page for your Event Hubs cluster.
5052

5153
## Create a namespace and event hub within a cluster
5254

5355
1. To create a namespace within a cluster, on the **Event Hubs Cluster** page for your cluster, select **+Namespace** from the top menu.
5456

55-
![Cluster management page - add namespace button](./media/event-hubs-dedicated-cluster-create-portal/cluster-management-page-add-namespace-button.png)
57+
:::image type="content" source="./media/event-hubs-dedicated-cluster-create-portal/cluster-management-page-add-namespace-button.png" alt-text="Image showing the Cluster management page - add namespace button.":::
5658
2. On the **Create a namespace** page, do the following steps:
5759
1. Enter a **name for the namespace**. The system checks to see if the name is available.
5860
2. The namespace inherits the following properties:
@@ -62,7 +64,7 @@ To create a cluster in your resource group using the Azure portal, complete the
6264
4. Cluster Name
6365
3. Select **Create** to create the namespace. Now you can manage your cluster.
6466

65-
![Create namespace in the cluster page](./media/event-hubs-dedicated-cluster-create-portal/create-namespace-cluster-page.png)
67+
:::image type="content" source="./media/event-hubs-dedicated-cluster-create-portal/create-namespace-cluster-page.png" alt-text="Image showing the Create namespace in the cluster page.":::
6668
3. Once your namespace is created, you can [create an event hub](event-hubs-create.md#create-an-event-hub) as you would normally create one within a namespace.
6769

6870

articles/event-hubs/event-hubs-storm-getstarted-receive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Quickstart: Receive events using Apache Storm - Azure Event Hubs'
33
description: 'Quickstart: This article provides information on how to receive events from Azure Event Hubs using Apache Storm.'
44
ms.topic: quickstart
5-
ms.date: 06/23/2020
5+
ms.date: 09/28/2021
66
---
77

88
# Quickstart: Receive events from Event Hubs using Apache Storm
Loading
-19.8 KB
Loading
Loading
-10.5 KB
Loading

articles/service-bus-messaging/service-bus-tutorial-topics-subscriptions-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use the Azure CLI to create Service Bus topics and subscriptions
33
description: In this quickstart, you learn how to create a Service Bus topic and subscriptions to that topic by using the Azure CLI
4-
ms.date: 06/23/2020
4+
ms.date: 09/28/2021
55
ms.topic: quickstart
66
author: spelluru
77
ms.author: spelluru

0 commit comments

Comments
 (0)