Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Instrument applications with Azure Application Insights for telemetry, tracing, and performance monitoring
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/aspnetcore.md
1## Modify code23Make these necessary changes to the app.45- Install client library6```7dotnet add package Azure.Monitor.OpenTelemetry.AspNetCore8```910- Configure the app to use Azure Monitor11An ASP.NET Core app typically has a Program.cs file that "builds" the app. Find this file and apply these changes.12- Add `using Azure.Monitor.OpenTelemetry.AspNetCore;` at the top13- Before calling `builder.Build()`, add this line `builder.Services.AddOpenTelemetry().UseAzureMonitor();`.1415> Note: since we modified the code of the app, the app needs to be deployed to take effect.1617## Configure App Insights connection string1819The App Insights resource has a connection string. Add the connection string as an environment variable of the running app. You can use Azure CLI to query the connection string of the App Insights resource. See [scripts/appinsights.ps1](../scripts/appinsights.ps1) for what Azure CLI command to execute for querying the connection string.2021After getting the connection string, set this environment variable with its value.2223```24"APPLICATIONINSIGHTS_CONNECTION_STRING={your_application_insights_connection_string}"25```2627If the app has IaC template such as Bicep or terraform files representing its cloud instance, this environment variable should be added to the IaC template to be applied in each deployment. Otherwise, use Azure CLI to manually apply the environment variable to the cloud instance of the app. See [scripts/appinsights.ps1](../scripts/appinsights.ps1) for what Azure CLI command to execute for setting this environment variable.2829> Important: Don't modify appsettings.json. It was a deprecated way to configure App Insights. The environment variable is the new recommended way.30