Enable Profiler for Azure Cloud Services
Receive performance traces for your Azure Cloud Service by enabling the Application Insights Profiler. The Profiler is installed on your Cloud Service via the Azure Diagnostics extension.
In this article, you will:
- Enable your Cloud Service to send diagnostics data to Application Insights.
- Configure the Azure Diagnostics extension within your solution to install Profiler.
- Deploy your service and generate traffic to view Profiler traces.
Pre-requisites
- Make sure you've set up diagnostics for Azure Cloud Services.
- Use .NET Framework 4.6.1 or newer.
- If you're using OS Family 4, install .NET Framework 4.6.1 or newer with a startup task.
- OS Family 5 includes a compatible version of .NET Framework by default.
Track requests with Application Insights
When publishing your CloudService to Azure portal, add the Application Insights SDK to Azure Cloud Services.
Once you've added the SDK and published your Cloud Service to the Azure portal, track requests using Application Insights.
- For ASP.NET web roles, Application Insights tracks the requests automatically.
- For worker roles, you need to add code manually to your application to track requests.
Configure the Azure Diagnostics extension
Locate the Azure Diagnostics diagnostics.wadcfgx file for your application role:
Add the following SinksConfig section as a child element of WadCfg:
<WadCfg>
<DiagnosticMonitorConfiguration>...</DiagnosticMonitorConfiguration>
<SinksConfig>
<Sink name="MyApplicationInsightsProfiler">
<!-- Replace with your own Application Insights instrumentation key. -->
<ApplicationInsightsProfiler>00000000-0000-0000-0000-000000000000</ApplicationInsightsProfiler>
</Sink>
</SinksConfig>
</WadCfg>
Note
The instrumentation keys that are used by the application and the ApplicationInsightsProfiler sink need to match each other.
Deploy your service with the new Diagnostics configuration. Application Insights Profiler is now configured to run on your Cloud Service.
Generate traffic to your service
Now that your Azure Cloud Service is deployed with Profiler, you can generate traffic to view Profiler traces.
Generate traffic to your application by setting up an availability test. Wait 10 to 15 minutes for traces to be sent to the Application Insights instance.
Navigate to your Azure Cloud Service's Application Insights resource. In the left side menu, select Performance.
Select the Profiler for your Cloud Service.
Select Profile now to start a profiling session. This process will take a few minutes.
For more instructions on profiling sessions, see the Profiler overview.
Note
On March 31, 2025, support for instrumentation key ingestion will end. Instrumentation key ingestion will continue to work, but we'll no longer provide updates or support for the feature. Transition to connection strings to take advantage of new capabilities.
Next steps
- Learn more about configuring Profiler.
- Troubleshoot Profiler issues.
Maklum balas
Kirim dan lihat maklum balas untuk