Skip to content

Commit 4b5233b

Browse files
committed
Changing notes
1 parent d176677 commit 4b5233b

File tree

1 file changed

+8
-18
lines changed

1 file changed

+8
-18
lines changed

articles/azure-monitor/app/availability.md

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.reviewer: cogoodson
1010

1111
[Application Insights](./app-insights-overview.md) allows you to set up recurring web tests that monitor your application's availability and responsiveness from various points around the world. These tests send web requests to your application at regular intervals and alert you if your application isn't responding or if the response time is too slow.
1212

13-
Availability tests don't require any modifications to the website you're testing. They work for any HTTP or HTTPS endpoint accessible from the public internet, including REST APIs that your service depends on. This means you can monitor not only your own applications but also external services that are critical to your application's functionality.
13+
Availability tests don't require any modifications to the website you're testing. They work for any HTTP or HTTPS endpoint accessible from the public internet, including REST APIs that your service depends on. This means you can monitor not only your own applications but also external services that are critical to your application's functionality. You can create up to 100 availability tests per Application Insights resource.
1414

1515
> [!NOTE]
1616
> Availability tests are stored encrypted, according to [Azure data encryption at rest](../../security/fundamentals/encryption-atrest.md#encryption-at-rest-in-microsoft-cloud-services) policies.
@@ -35,9 +35,6 @@ There are four types of availability tests:
3535
3636
## Create an availability test
3737

38-
> [!NOTE]
39-
> You can create up to 100 availability tests per Application Insights resource.
40-
4138
## [Standard test](#tab/standard)
4239

4340
### Prerequisites
@@ -90,10 +87,12 @@ There are four types of availability tests:
9087
9188
### Basic code sample
9289

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.
91+
9392
> [!NOTE]
94-
> 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.
93+
> 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.
9594
>
96-
> By default, if you walk through this example, you'll be creating a basic availability HTTP GET test. To follow these instructions, you must use the [dedicated plan](../../azure-functions/dedicated-plan.md) to allow editing code in App Service Editor.
95+
> If you're testing behind a virtual network or testing nonpublic endpoints, you'll need to use the Functions Premium plan.
9796
9897
#### Create a timer trigger function
9998

@@ -105,11 +104,6 @@ There are four types of availability tests:
105104

106105
:::image type="content" source="media/availability/create-application-insights.png" alt-text="Screenshot that shows selecting your existing Application Insights resource on the Monitoring tab.":::
107106

108-
> [!NOTE]
109-
> You can host your Azure Functions app on a Consumption, Premium, or App Service plan. *If you're testing behind a virtual network or testing nonpublic endpoints, you'll need to use the Premium plan*.
110-
>
111-
> Select your plan on the **Hosting** tab and ensure the latest .NET version is selected when you create the Azure Functions app.
112-
113107
1. Follow the instructions to [create a timer triggered function](../../azure-functions/functions-create-scheduled-function.md#create-a-timer-triggered-function).
114108

115109
#### Add and edit code in the App Service Editor
@@ -438,10 +432,7 @@ The following steps walk you through the process of creating [standard tests](av
438432

439433
1. Find the URL Ping Test you want to migrate and record its resource group and name.
440434

441-
1. The following commands create a standard test with the same logic as the URL ping test.
442-
443-
> [!NOTE]
444-
> The following commands work for both HTTP and HTTPS endpoints, which are used in your URL ping Tests.
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.
445436

446437
```shell
447438
$resourceGroup = "pingTestResourceGroup";
@@ -538,8 +529,7 @@ To manage access when your endpoints are outside Azure or when service tags aren
538529

539530
To provide best-in-class encryption, all availability tests use Transport Layer Security (TLS) 1.2 and 1.3 as the encryption mechanisms of choice. In addition, the following Cipher suites and Elliptical curves are also supported within each version.
540531

541-
> [!NOTE]
542-
> TLS 1.3 is currently only available in the availability test regions NorthCentralUS, CentralUS, EastUS, SouthCentralUS, and WestUS.
532+
TLS 1.3 is currently only available in the availability test regions NorthCentralUS, CentralUS, EastUS, SouthCentralUS, and WestUS.
543533

544534
| Version | Cipher suites | Elliptical curves |
545535
|---------|---------|---------|
@@ -548,7 +538,7 @@ To provide best-in-class encryption, all availability tests use Transport Layer
548538

549539
### Deprecating TLS configuration
550540

551-
> [!WARNING]
541+
> [!IMPORTANT]
552542
> On 31 October 2024, in alignment with the [Azure wide legacy TLS deprecation](https://azure.microsoft.com/updates/azure-support-tls-will-end-by-31-october-2024-2/), TLS 1.0/1.1 protocol versions and the listed TLS 1.2/1.3 legacy Cipher suites and Elliptical curves will be retired for Application Insights availability tests.
553543

554544
#### TLS 1.0 and TLS 1.1

0 commit comments

Comments
 (0)