To know about URL ping test feature

RevalliAruna-0051 0 Reputation points
2026-08-31T05:48:31.0666667+00:00

I wanted to know about URL ping test feature, what it does and what are the migration steps for standard test?

Azure App Service
Azure App Service

Azure App Service is a service used to create and deploy scalable, mission-critical web apps.


1 answer

Sort by: Most helpful
  1. AI answer

    2026-08-31T05:48:48.3733333+00:00

    A URL ping test in Application Insights is a single-request availability test used to check whether an endpoint is responding. It is the older availability test type and is deprecated. URL ping tests retire on September 30, 2026, and existing URL ping tests are removed from resources after that date.

    A Standard test is the current replacement for URL ping tests. It also sends a single request, but adds more capabilities, including:

    • TLS/SSL certificate validity checks
    • Proactive certificate lifetime checks
    • HTTP verbs such as GET, HEAD, and POST
    • Custom headers
    • Custom data in the HTTP request

    Key migration points:

    • Creating a Standard test does not modify or remove the existing URL ping test.
    • Alert rules are not migrated automatically.
    • Standard tests incur charges when enabled.
    • Some URL ping test validation rules might require manual conversion.
    • The new Standard test does not have alert rules by default, which helps avoid noisy alerts.

    Migration steps to Standard test:

    1. Ensure prerequisites are available:
      • Permission to read and create Microsoft.Insights/webTests resources
      • Existing URL ping tests
      • Azure PowerShell access
    2. Connect to the subscription in Azure PowerShell:
         Connect-AzAccount
         Set-AzContext
      
    3. List URL ping tests in the current subscription:
         Get-AzApplicationInsightsWebTest | `
         Where-Object { $_.WebTestKind -eq "ping" } | `
         Format-Table -Property ResourceGroupName,Name,WebTestKind,Enabled;
      
    4. Identify the URL ping test to migrate and record its resource group and name.
    5. Create a Standard test with the same logic as the URL ping test.
    6. Validate the new Standard test before cutover.
    7. Update alert rules that currently reference the URL ping test so they reference the Standard test instead.
    8. After validation and alert cutover, disable or delete the old URL ping test. Azure PowerShell example:
         Remove-AzApplicationInsightsWebTest -ResourceGroupName $resourceGroup -Name $pingTestName;
      

    If discovery across subscriptions is needed, Azure Resource Graph Explorer can be used to find existing URL ping tests before migration.


    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.