Enable Change Analysis (classic)
Important
Azure Monitor Change Analysis (classic) will be retired October 31, 2025. The experience will be replaced by the Change Analysis API powered by Azure Resource Graph. Learn more about the future of Change Analysis and how to migrate to Azure Resource Graph.
The Change Analysis (classic) service:
- Computes and aggregates change data from the data sources mentioned earlier.
- Provides a set of analytics for users to:
- Easily navigate through all resource changes.
- Identify relevant changes in the troubleshooting or monitoring context.
Register the Microsoft.ChangeAnalysis
resource provider with an Azure Resource Manager subscription to make the resource properties and configuration change data available. The Microsoft.ChangeAnalysis
resource provider is automatically registered as you either:
- Enter any UI entry point, like the Web App Diagnose and Solve Problems tool, or
- Bring up the Change Analysis (classic) standalone tab.
In this guide, you learn the two ways to enable Change Analysis (classic) for Azure Functions and web app in-guest changes:
- For one or a few Azure Functions or web apps, enable Change Analysis (classic) via the UI.
- For a large number of web apps (for example, 50+ web apps), enable Change Analysis (classic) using the provided PowerShell script.
Note
Slot-level enablement for Azure Functions or web app is not supported at the moment.
Enable Azure Functions and web app in-guest change collection via the Change Analysis (classic) portal
For web app in-guest changes, separate enablement is required for scanning code files within a web app. For more information, see Change Analysis (classic) in the Diagnose and solve problems tool section.
Note
You may not immediately see web app in-guest file changes and configuration changes. Prepare for downtime and restart your web app to view changes within 30 minutes. If you still can't see changes, refer to the troubleshooting guide.
Navigate to Change Analysis (classic) UI in the portal.
Enable web app in-guest change tracking by either:
Selecting Enable Now in the banner, or
Selecting Configure from the top menu.
Toggle on Change Analysis (classic) status for applicable resources and select Save.
Enable Change Analysis (classic) at scale using PowerShell
If your subscription includes several web apps, run the following script to enable all web apps in your subscription.
Prerequisites
PowerShell Az Module. Follow instructions at Install the Azure PowerShell module
Run the following script:
# Log in to your Azure subscription
Connect-AzAccount
# Get subscription Id
$SubscriptionId = Read-Host -Prompt 'Input your subscription Id'
# Make Feature Flag visible to the subscription
Set-AzContext -SubscriptionId $SubscriptionId
# Register resource provider
Register-AzResourceProvider -ProviderNamespace "Microsoft.ChangeAnalysis"
# Enable each web app
$webapp_list = Get-AzWebApp | Where-Object {$_.kind -eq 'app'}
foreach ($webapp in $webapp_list)
{
$tags = $webapp.Tags
$tags["hidden-related:diagnostics/changeAnalysisScanEnabled"]=$true
Set-AzResource -ResourceId $webapp.Id -Tag $tags -Force
}
Frequently asked questions
This section provides answers to common questions.
How can I enable Change Analysis (classic) for a web application?
Enable Change Analysis (classic) for web application in guest changes by using the Diagnose and solve problems tool.
Next steps
- Learn about visualizations in Change Analysis (classic)
- Learn how to troubleshoot problems in Change Analysis (classic)
- Enable Application Insights for Azure web apps.
- Enable Application Insights for Azure VM and Azure virtual machine scale set IIS-hosted apps.