You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When issues happen, one of the first things to check is what changed in application, configuration and resources to triage and root cause issues. Change Analysis provides a centralized view of the changes in your subscriptions for up to the past 14 days to provide the history of changes for troubleshooting issues.
17
17
18
-
In this tutorial, you learn how to:
18
+
In this tutorial, you will:
19
19
20
20
> [!div class="checklist"]
21
-
> * Enable Change Analysis to track changes for Azure resources and for Azure Web App configurations
22
-
> * Troubleshoot a Web App issue using Change Analysis
21
+
> - Clone, create, and deploy a [sample web application](https://github.com/Azure-Samples/changeanalysis-webapp-storage-sample) with a storage account.
22
+
> - Enable Change Analysis to track changes for Azure resources and for Azure Web App configurations
23
+
> - Troubleshoot a Web App issue using Change Analysis
23
24
24
25
## Pre-requisites
25
26
26
-
An Azure Web App with a Storage account dependency. Follow instructions at [ChangeAnalysis-webapp-storage-sample](https://github.com/Azure-Samples/changeanalysis-webapp-storage-sample) if you haven't already deployed one.
27
+
- Install [.NET 5.0 or above](https://dotnet.microsoft.com/download).
1. Show your new storage account connection string.
70
+
71
+
```bash
72
+
az storage account show-connection-string -g {resourcegroup_name} -n {storage_name}
73
+
```
74
+
75
+
1. Connect the web application to the storage account through **App Settings**.
76
+
77
+
```bash
78
+
az webapp config appsettings set -g {resourcegroup_name} -n {webapp_name} --settings AzureStorageConnection={storage_connectionstring_from_previous_step}
79
+
```
80
+
81
+
## Enable Change Analysis
31
82
32
-
If this is your first time using Change Analysis service, the page may take up to a few minutes to register the `Microsoft.ChangeAnalysis` resource provider in your selected subscriptions.
83
+
In the Azure portal, [navigate to the Change Analysis standalone UI](./change-analysis-visualizations.md). This may take a few minutes as the `Microsoft.ChangeAnalysis` resource provider is registered.
33
84
34
85
:::image type="content" source="./media/change-analysis/change-analysis-blade.png" alt-text="Screenshot of Change Analysis in Azure portal.":::
0 commit comments