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

Track requests with Application Insights

When publishing your CloudService to Azure portal, add the Application Insights SDK to Azure Cloud Services.

Screenshot showing the checkbox for sending information to Application Insights.

Once you've added the SDK and published your Cloud Service to the Azure portal, track requests using Application Insights.

Configure the Azure Diagnostics extension

Locate the Azure Diagnostics diagnostics.wadcfgx file for your application role:

Screenshot of the diagnostics file in the Azure Cloud Service solution explorer.

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.

Next steps

Learn how to...

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.