Skip to content

Commit b0f729d

Browse files
committed
Acrolynx fixes
1 parent 8567a33 commit b0f729d

File tree

5 files changed

+33
-33
lines changed

5 files changed

+33
-33
lines changed

articles/event-grid/edge/forward-events-event-grid-cloud.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@ This article walks through all the steps needed to forward edge events to Event
1717
* React to edge events in the cloud.
1818
* Forward events to Event Grid in the cloud and use Azure Event Hubs or Azure Storage queues to buffer events before processing them in the cloud.
1919

20-
To complete this tutorial, you need have an understanding of Event Grid concepts on [edge](concepts.md) and [Azure](../concepts.md). For additional destination types, see [event handlers](event-handlers.md).
20+
To complete this tutorial, you need to have an understanding of Event Grid concepts on [edge](concepts.md) and [Azure](../concepts.md). For more destination types, see [event handlers](event-handlers.md).
2121

2222
> [!IMPORTANT]
2323
> On March 31, 2023, Event Grid on Azure IoT Edge support will be retired, so make sure to transition to IoT Edge native capabilities prior to that date. For more information, see [Transition from Event Grid on Azure IoT Edge to Azure IoT Edge](transition.md).
2424
2525

2626

2727
## Prerequisites
28-
In order to complete this tutorial, you will need:
28+
In order to complete this tutorial, you need:
2929

3030
* **Azure subscription** - Create a [free account](https://azure.microsoft.com/free) if you don't already have one.
3131
* **Azure IoT Hub and IoT Edge device** - Follow the steps in the quick start for [Linux](../../iot-edge/quickstart-linux.md) or [Windows devices](../../iot-edge/quickstart.md) if you don't already have one.
3232

3333
[!INCLUDE [deploy-iot-edge](../includes/deploy-iot-edge.md)]
34-
## Create event grid topic and subscription in cloud
34+
## Create Event Grid topic and subscription in cloud
3535

36-
Create an event grid topic and subscription in the cloud by following [this tutorial](../custom-event-quickstart-portal.md). Note down `topicURL`, `sasKey`, and `topicName` of the newly created topic that you'll use later in the tutorial.
36+
Create an Event Grid topic and subscription in the cloud by following [this tutorial](../custom-event-quickstart-portal.md). Note down `topicURL`, `sasKey`, and `topicName` of the newly created topic that you use later in the tutorial.
3737

3838
For example, if you created a topic named `testegcloudtopic` in West US, the values would look something like:
3939

4040
* **TopicUrl**: `https://testegcloudtopic.westus2-1.eventgrid.azure.net/api/events`
4141
* **TopicName**: `testegcloudtopic`
4242
* **SasKey**: Available under **AccessKey** of your topic. Use **key1**.
4343

44-
## Create event grid topic at the edge
44+
## Create Event Grid topic at the edge
4545

4646
1. Create topic3.json with the following content. See our [API documentation](api.md) for details about the payload.
4747

articles/event-grid/edge/forward-events-iothub.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To complete this tutorial, you need to understand the following concepts:
2828
- [IoT Edge hub](../../iot-edge/module-composition.md)
2929

3030
## Prerequisites
31-
In order to complete this tutorial, you will need:
31+
In order to complete this tutorial, you need:
3232

3333
* **Azure subscription** - Create a [free account](https://azure.microsoft.com/free) if you don't already have one.
3434
* **Azure IoT Hub and IoT Edge device** - Follow the steps in the quick start for [Linux](../../iot-edge/quickstart-linux.md) or [Windows devices](../../iot-edge/quickstart.md) if you don't already have one.
@@ -37,7 +37,7 @@ In order to complete this tutorial, you will need:
3737

3838
## Create topic
3939

40-
As a publisher of an event, you need to create an event grid topic. The topic refers to an end point where publishers can then send events to.
40+
As a publisher of an event, you need to create an Event Grid topic. The topic refers to an end point where publishers can then send events to.
4141

4242
1. Create topic4.json with the following content. See our [API documentation](api.md) for details about the payload.
4343

@@ -79,7 +79,7 @@ As a publisher of an event, you need to create an event grid topic. The topic re
7979

8080
## Create event subscription
8181

82-
Subscribers can register for events published to a topic. To receive any event, they'll need to create an Event grid subscription on a topic of interest.
82+
Subscribers can register for events published to a topic. To receive any event, they need to create an Event Grid subscription on a topic of interest.
8383

8484
[!INCLUDE [deploy-iot-edge](../includes/edge-persist-event-subscriptions.md)]
8585

@@ -206,7 +206,7 @@ See the IoT Hub [routing tutorial](../../iot-hub/tutorial-routing.md) for the st
206206

207207
## Next steps
208208

209-
In this tutorial, you created an event grid topic, edge hub subscription, and published events. Now that you know the basic steps to forward to an edge hub, see the following articles:
209+
In this tutorial, you created an Event Grid topic, edge hub subscription, and published events. Now that you know the basic steps to forward to an edge hub, see the following articles:
210210

211211
* To troubleshoot issues with using Azure Event Grid on IoT Edge, see [Troubleshooting guide](troubleshoot.md).
212212
* Use [edge hub](../../iot-edge/module-composition.md) route filters to partition events

articles/event-grid/edge/pub-sub-events-webhook-cloud.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ ms.custom: devx-track-csharp
1414

1515
# Tutorial: Publish, subscribe to events in cloud
1616

17-
This article walks through all the steps needed to publish and subscribe to events using Event Grid on IoT Edge. This tutorial uses and Azure Function as the Event Handler. For additional destination types, see [event handlers](event-handlers.md).
17+
This article walks through all the steps needed to publish and subscribe to events using Event Grid on IoT Edge. This tutorial uses and Azure Function as the Event Handler. For more destination types, see [event handlers](event-handlers.md).
1818

19-
See [Event Grid Concepts](concepts.md) to understand what an event grid topic and subscription are before proceeding.
19+
See [Event Grid Concepts](concepts.md) to understand what an Event Grid topic and subscription are before proceeding.
2020

2121
> [!IMPORTANT]
2222
> On March 31, 2023, Event Grid on Azure IoT Edge support will be retired, so make sure to transition to IoT Edge native capabilities prior to that date. For more information, see [Transition from Event Grid on Azure IoT Edge to Azure IoT Edge](transition.md).
2323
2424

2525

2626
## Prerequisites
27-
In order to complete this tutorial, you will need:
27+
In order to complete this tutorial, you need:
2828

2929
* **Azure subscription** - Create a [free account](https://azure.microsoft.com/free) if you don't already have one.
3030
* **Azure IoT Hub and IoT Edge device** - Follow the steps in the quick start for [Linux](../../iot-edge/quickstart-linux.md) or [Windows devices](../../iot-edge/quickstart.md) if you don't already have one.
@@ -59,14 +59,14 @@ public static async Task<IActionResult> Run(HttpRequest req, ILogger log)
5959
}
6060
```
6161

62-
In your new function, select **Get function URL** at the top right, select default (**Function key**), and then select **Copy**. You will use the function URL value later in the tutorial.
62+
In your new function, select **Get function URL** at the top right, select default (**Function key**), and then select **Copy**. You use the function URL value later in the tutorial.
6363

6464
> [!NOTE]
6565
> Refer to the [Azure Functions](../../azure-functions/functions-overview.md) documentation for more samples and tutorials on reacting to events and using EventGrid event triggers.
6666
6767
## Create a topic
6868

69-
As a publisher of an event, you need to create an event grid topic. Topic refers to an end point where publishers can send events to.
69+
As a publisher of an event, you need to create an Event Grid topic. Topic refers to an end point where publishers can send events to.
7070

7171
1. Create topic2.json with the following content. See our [API documentation](api.md) for details about the payload.
7272

@@ -107,7 +107,7 @@ As a publisher of an event, you need to create an event grid topic. Topic refers
107107

108108
## Create an event subscription
109109

110-
Subscribers can register for events published to a topic. To receive any event, the subscribers will need to create an Event grid subscription on a topic of interest.
110+
Subscribers can register for events published to a topic. To receive any event, the subscribers need to create an Event Grid subscription on a topic of interest.
111111

112112
[!INCLUDE [deploy-iot-edge](../includes/edge-persist-event-subscriptions.md)]
113113

@@ -199,7 +199,7 @@ You can view the event delivered in the Azure portal under the **Monitor** optio
199199

200200
## Next steps
201201

202-
In this tutorial, you created an event grid topic, subscription, and published events. Now that you know the basic steps, see the following articles:
202+
In this tutorial, you created an Event Grid topic, subscription, and published events. Now that you know the basic steps, see the following articles:
203203

204204
* To troubleshoot issues with using Azure Event Grid on IoT Edge, see [Troubleshooting guide](troubleshoot.md).
205205
* Create/update subscription with [filters](advanced-filtering.md).

articles/event-grid/edge/pub-sub-events-webhook-local.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This article walks you through all the steps needed to publish and subscribe to
2323
> To learn about Azure Event Grid topics and subscriptions, see [Event Grid Concepts](concepts.md).
2424
2525
## Prerequisites
26-
In order to complete this tutorial, you will need:
26+
In order to complete this tutorial, you need:
2727

2828
* **Azure subscription** - Create a [free account](https://azure.microsoft.com/free) if you don't already have one.
2929
* **Azure IoT Hub and IoT Edge device** - Follow the steps in the quickstart for [Linux](../../iot-edge/quickstart-linux.md) or [Windows devices](../../iot-edge/quickstart.md) if you don't already have one.
@@ -42,7 +42,7 @@ There are several ways to deploy modules to an IoT Edge device and all of them w
4242
1. Navigate to your IoT Hub.
4343
1. Select **IoT Edge** from the menu in the **Automatic Device Management** section.
4444
1. Click on the ID of the target device from the list of devices
45-
1. Select **Set Modules**. Keep the page open. You will continue with the steps in the next section.
45+
1. Select **Set Modules**. Keep the page open. You'll continue with the steps in the next section.
4646

4747
### Configure a deployment manifest
4848

@@ -87,7 +87,7 @@ A deployment manifest is a JSON document that describes which modules to deploy,
8787

8888
## Deploy Event Grid Subscriber IoT Edge module
8989

90-
This section shows you how to deploy another IoT module which would act as an event handler to which events can be delivered.
90+
This section shows you how to deploy another IoT module, which would act as an event handler to which events can be delivered.
9191

9292
### Add modules
9393

@@ -115,7 +115,7 @@ Keep the default routes, and select **Next** to continue to the review section
115115

116116
## Create a topic
117117

118-
As a publisher of an event, you need to create an event grid topic. In Azure Event Grid, a topic refers to an endpoint where publishers can send events to.
118+
As a publisher of an event, you need to create an Event Grid topic. In Azure Event Grid, a topic refers to an endpoint where publishers can send events to.
119119

120120
1. Create topic.json with the following content. For details about the payload, see our [API documentation](api.md).
121121

@@ -128,7 +128,7 @@ As a publisher of an event, you need to create an event grid topic. In Azure Eve
128128
}
129129
```
130130

131-
1. Run the following command to create an event grid topic. Confirm that you see the HTTP status code is `200 OK`.
131+
1. Run the following command to create an Event Grid topic. Confirm that you see the HTTP status code is `200 OK`.
132132

133133
```sh
134134
curl -k -H "Content-Type: application/json" -X PUT -g -d @topic.json https://<your-edge-device-public-ip-here>:4438/topics/sampleTopic1?api-version=2019-01-01-preview
@@ -158,7 +158,7 @@ As a publisher of an event, you need to create an event grid topic. In Azure Eve
158158

159159
## Create an event subscription
160160

161-
Subscribers can register for events published to a topic. To receive any event, you'll need to create an Event Grid subscription for a topic of interest.
161+
Subscribers can register for events published to a topic. To receive any event, you need to create an Event Grid subscription for a topic of interest.
162162

163163
[!INCLUDE [deploy-iot-edge](../includes/edge-persist-event-subscriptions.md)]
164164

@@ -281,7 +281,7 @@ Subscribers can register for events published to a topic. To receive any event,
281281

282282

283283
## Next steps
284-
In this tutorial, you created an event grid topic, subscription, and published events. Now that you know the basic steps, see the following articles:
284+
In this tutorial, you created an Event Grid topic, subscription, and published events. Now that you know the basic steps, see the following articles:
285285

286286
- To troubleshoot issues with using Azure Event Grid on IoT Edge, see [Troubleshooting guide](troubleshoot.md).
287287
- Create/update subscription with [filters](advanced-filtering.md).

0 commit comments

Comments
 (0)