Skip to content

Commit 72536b2

Browse files
committed
updates
1 parent 4b58d16 commit 72536b2

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

articles/azure-app-configuration/howto-backup-config-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ If you don't see the new setting in your secondary store:
249249
- Make sure the backup function was triggered *after* you created the setting in your primary store.
250250
- It's possible that Event Grid couldn't send the event notification to the queue in time. Check if your queue still contains the event notification from your primary store. If it does, trigger the backup function again.
251251
- Check [Azure Functions logs](../azure-functions/functions-create-scheduled-function.md#test-the-function) for any errors or warnings.
252-
- Use the [Azure portal](../azure-functions/functions-how-to-use-azure-function-app-settings.md#get-started-in-the-azure-portal) to ensure that the Azure function app contains correct values for the application settings that Azure Functions is trying to read.
252+
- Use the [Azure portal](../azure-functions/functions-how-to-use-azure-function-app-settings.md#get-started-in-the-azure-portal) to ensure that the Azure function app contains correct values for the application settings that the Azure function is trying to read.
253253
- You can also set up monitoring and alerting for Azure Functions by using [Azure Application Insights](../azure-functions/functions-monitoring.md?tabs=cmd).
254254

255255
## Clean up resources

articles/azure-signalr/signalr-howto-event-grid-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Once the SignalR Service has been created, the Azure CLI returns output similar
6969

7070
## Create an event endpoint
7171

72-
In this section, you use a Resource Manager template located in a GitHub repository to deploy a pre-built sample web application to Azure App Service. Later, you subscribe to your registry's Event Grid events and specify this app as the endpoint to which the events are sent.
72+
In this section, you use a Resource Manager template located in a GitHub repository to deploy a prebuilt sample web application to Azure App Service. Later, you subscribe to your registry's Event Grid events and specify this app as the endpoint to which the events are sent.
7373

7474
To deploy the sample app, set `SITE_NAME` to a unique name for your web app, and execute the following commands. The site name must be unique within Azure because it forms part of the fully qualified domain name (FQDN) of the web app. In a later section, you navigate to the app's FQDN in a web browser to view your registry's events.
7575

@@ -90,7 +90,7 @@ Once the deployment succeeds (it might take a few minutes), open your browser, a
9090

9191
## Subscribe to registry events
9292

93-
In Event Grid, you subscribe to a *topic* to tell it which events you want to track, and where to send them. The command [az eventgrid event-subscription create][az-eventgrid-event-subscription-create] subscribes to the Azure SignalR Service you created and specifies your web app's URL as the endpoint to which it should send events. The environment variables you populated in earlier sections are reused here, so no edits are required.
93+
In Event Grid, you subscribe to a *topic* to tell it which events you want to track, and where to send them. The command [`az eventgrid event-subscription create`][az-eventgrid-event-subscription-create] subscribes to the Azure SignalR Service you created and specifies your web app's URL as the endpoint to which it should send events. The environment variables you populated in earlier sections are reused here, so no edits are required.
9494

9595
```azurecli-interactive
9696
SIGNALR_SERVICE_ID=$(az signalr show --resource-group $RESOURCE_GROUP_NAME --name $SIGNALR_NAME --query id --output tsv)

articles/container-registry/container-registry-event-grid-quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Once the registry has been created, the Azure CLI returns output similar to the
6969

7070
## Create an event endpoint
7171

72-
In this section, you use a Resource Manager template located in a GitHub repository to deploy a pre-built sample web application to Azure App Service. Later, you subscribe to your registry's Event Grid events and specify this app as the endpoint to which the events are sent.
72+
In this section, you use a Resource Manager template located in a GitHub repository to deploy a prebuilt sample web application to Azure App Service. Later, you subscribe to your registry's Event Grid events and specify this app as the endpoint to which the events are sent.
7373

7474
To deploy the sample app, set `SITE_NAME` to a unique name for your web app, and execute the following commands. The site name must be unique within Azure because it forms part of the fully qualified domain name (FQDN) of the web app. In a later section, you navigate to the app's FQDN in a web browser to view your registry's events.
7575

@@ -94,7 +94,7 @@ You should see the sample app rendered with no event messages displayed:
9494

9595
## Subscribe to registry events
9696

97-
In Event Grid, you subscribe to a *topic* to tell it which events you want to track, and where to send them. The following [az eventgrid event-subscription create][az-eventgrid-event-subscription-create] command subscribes to the container registry you created, and specifies your web app's URL as the endpoint to which it should send events. The environment variables you populated in earlier sections are reused here, so no edits are required.
97+
In Event Grid, you subscribe to a *topic* to tell it which events you want to track, and where to send them. The following [`az eventgrid event-subscription create`][az-eventgrid-event-subscription-create] command subscribes to the container registry you created, and specifies your web app's URL as the endpoint to which it should send events. The environment variables you populated in earlier sections are reused here, so no edits are required.
9898

9999
```azurecli-interactive
100100
ACR_REGISTRY_ID=$(az acr show --name $ACR_NAME --query id --output tsv)
@@ -147,7 +147,7 @@ Execute the following Azure CLI command to build a container image from the cont
147147
az acr build --registry $ACR_NAME --image myimage:v1 -f Dockerfile https://github.com/Azure-Samples/acr-build-helloworld-node.git#main
148148
```
149149

150-
You should see output similar to the following while ACR Tasks builds and then pushes your image. The following sample output has been truncated for brevity.
150+
You should see output similar to the following while ACR Tasks build and then pushes your image. The following sample output has been truncated for brevity.
151151

152152
```output
153153
Sending build context to ACR...
@@ -163,7 +163,7 @@ Step 1/5 : FROM node:9-alpine
163163
...
164164
```
165165

166-
To verify that the built image is in your registry, execute the following command to view the tags in the "myimage" repository:
166+
To verify that the built image is in your registry, execute the following command to view the tags in the `myimage` repository:
167167

168168
```azurecli-interactive
169169
az acr repository show-tags --name $ACR_NAME --repository myimage

articles/event-grid/custom-disaster-recovery-client-side.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ namespace EventGridFailoverPublisher
180180

181181
### Try it out
182182

183-
Now that you have all of your components in place, you can test out your failover implementation. Run the above sample in Visual Studio code, or your favorite environment. Replace the following four values with the endpoints and keys from your topics:
183+
Now that you have all of your components in place, you can test out your failover implementation. Run the above sample in Visual Studio Code, or your favorite environment. Replace the following four values with the endpoints and keys from your topics:
184184

185185
* primaryTopic - the endpoint for your primary topic.
186186
* secondaryTopic - the endpoint for your secondary topic.
@@ -197,7 +197,7 @@ To make sure your failover is working, you can change a few characters in your p
197197

198198
There are many ways to extend this sample based on your needs. For high-volume scenarios, you may want to regularly check the topic's health api independently. That way, if a topic were to go down, you don't need to check it with every single publish. Once you know a topic isn't healthy, you can default to publishing to the secondary topic.
199199

200-
Similarly, you may want to implement failback logic based on your specific needs. If publishing to the closest data center is critical for you to reduce latency, you can periodically probe the health api of a topic that has failed over. Once it's healthy again, you know it's safe to failback to the closer data center.
200+
Similarly, you may want to implement failback logic based on your specific needs. If publishing to the closest data center is critical for you to reduce latency, you can periodically probe the health api of a topic that has failed over. Once it's healthy again, it's safe to failback to the closer data center.
201201

202202
## Next steps
203203

articles/storage/blobs/storage-blob-event-quickstart-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ New-AzResourceGroup -Name $resourceGroup -Location $location
5858

5959
Blob storage events are available in general-purpose v2 storage accounts and Blob storage accounts. **General-purpose v2** storage accounts support all features for all storage services, including Blobs, Files, Queues, and Tables. A **Blob storage account** is a specialized storage account for storing your unstructured data as blobs (objects) in Azure Storage. Blob storage accounts are like general-purpose storage accounts and share all the great durability, availability, scalability, and performance features that you use today including 100% API consistency for block blobs and append blobs. For more information, see [Azure storage account overview](../common/storage-account-overview.md).
6060

61-
Create a Blob storage account with LRS replication using [New-AzStorageAccount](/powershell/module/az.storage/New-azStorageAccount), then retrieve the storage account context that defines the storage account to be used. When acting on a storage account, you reference the context instead of repeatedly providing the credentials. This example creates a storage account called **gridstorage** with locally redundant storage (LRS).
61+
Create a Blob storage account with LRS replication using [New-AzStorageAccount](/powershell/module/az.storage/New-azStorageAccount), then retrieve the storage account context that defines the storage account to be used. When acting on a storage account, you reference the context instead of repeatedly providing the credentials. This example creates a storage account called `gridstorage` with locally redundant storage (LRS).
6262

6363
> [!NOTE]
6464
> Storage account names are in a global name space so you need to append some random characters to the name provided in this script.
@@ -77,7 +77,7 @@ $ctx = $storageAccount.Context
7777

7878
## Create a message endpoint
7979

80-
Before subscribing to the topic, let's create the endpoint for the event message. Typically, the endpoint takes actions based on the event data. To simplify this quickstart, you deploy a [pre-built web app](https://github.com/Azure-Samples/azure-event-grid-viewer) that displays the event messages. The deployed solution includes an App Service plan, an App Service web app, and source code from GitHub.
80+
Before subscribing to the topic, let's create the endpoint for the event message. Typically, the endpoint takes actions based on the event data. To simplify this quickstart, you deploy a [prebuilt web app](https://github.com/Azure-Samples/azure-event-grid-viewer) that displays the event messages. The deployed solution includes an App Service plan, an App Service web app, and source code from GitHub.
8181

8282
Replace `<your-site-name>` with a unique name for your web app. The web app name must be unique because it's part of the DNS entry.
8383

0 commit comments

Comments
 (0)