Skip to content

Commit 1525717

Browse files
committed
Another Acrolinx sprint
1 parent 4b5233b commit 1525717

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/azure-monitor/app/availability.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ There are four types of availability tests:
8787
8888
### Basic code sample
8989

90-
This example is designed solely to show you the mechanics of how the `TrackAvailability()` API call works within an Azure Functions app. It doesn't show you how to write the underlying HTTP test code or business logic that's required to turn this example into a fully functional availability test.
90+
This example is designed solely to show you the mechanics of how the `TrackAvailability()` API call works within an Azure Functions app. It doesn't show how to write the underlying HTTP test code or business logic required to turn this example into a fully functional availability test.
9191

9292
> [!NOTE]
9393
> To follow these instructions, you must use either the [App Service](../../azure-functions/dedicated-plan.md) plan or Functions Premium plan to allow editing code in App Service Editor.
@@ -420,7 +420,7 @@ The following steps walk you through the process of creating [standard tests](av
420420

421421
#### Get started
422422

423-
1. Connect to your subscription with Azure PowerShell (Connect-AzAccount + Set-AzContext).
423+
1. Connect to your subscription with Azure PowerShell (`Connect-AzAccount` + `Set-AzContext`).
424424

425425
1. List all URL ping tests in the current subscription:
426426

@@ -430,9 +430,9 @@ The following steps walk you through the process of creating [standard tests](av
430430
Format-Table -Property ResourceGroupName,Name,WebTestKind,Enabled;
431431
```
432432

433-
1. Find the URL Ping Test you want to migrate and record its resource group and name.
433+
1. Find the URL ping test you want to migrate and record its resource group and name.
434434

435-
1. The following commands create a standard test with the same logic as the URL ping test, and work for both HTTP and HTTPS endpoints.
435+
1. Create a standard test with the same logic as the URL ping test using the following commands, which work for both HTTP and HTTPS endpoints.
436436

437437
```shell
438438
$resourceGroup = "pingTestResourceGroup";
@@ -465,11 +465,11 @@ The following steps walk you through the process of creating [standard tests](av
465465
-RequestParseDependent:($pingTestRequest.ParseDependentRequests -eq [bool]::TrueString);
466466
```
467467

468-
1. The new standard test doesn't have alert rules by default, so it doesn't create noisy alerts. No changes are made to your URL ping test so you can continue to rely on it for alerts.
468+
The new standard test doesn't have alert rules by default, so it doesn't create noisy alerts. No changes are made to your URL ping test so you can continue to rely on it for alerts.
469469

470-
1. Once you validated the functionality of the new standard test, [update your alert rules](/azure/azure-monitor/alerts/alerts-manage-alert-rules) that reference the URL ping test to reference the standard test instead. Then you disable or delete the URL ping test.
470+
1. Validate the functionality of the new standard test, then [update your alert rules](/azure/azure-monitor/alerts/alerts-manage-alert-rules) that reference the URL ping test to reference the standard test instead.
471471

472-
1. To delete a URL ping test with Azure PowerShell, you can use this command:
472+
1. Disable or delete the URL ping test. To do so with Azure PowerShell, you can use this command:
473473

474474
```azurepowershell
475475
Remove-AzApplicationInsightsWebTest -ResourceGroupName $resourceGroup -Name $pingTestName;

0 commit comments

Comments
 (0)