OpenTelemetry.Resources.Azure 1.13.0-beta.1

Resource Detectors for Azure cloud environments

Status
Stability Beta
Code Owners @rajkumar-rangaraj

NuGet version badge NuGet download count badge codecov.io

This package contains Resource Detectors for applications running in Azure environment.

Installation

dotnet add package --prerelease OpenTelemetry.Resources.Azure

App Service Resource Detector

Adds resource attributes for the applications running in Azure App Service. The following example shows how to add AppServiceResourceDetector to the ResourceBuilder.

using OpenTelemetry;
using OpenTelemetry.Resources;

using var tracerProvider = Sdk.CreateTracerProviderBuilder()
    .ConfigureResource(resource => resource.AddAzureAppServiceDetector())
    // other configurations
    .Build();

using var meterProvider = Sdk.CreateMeterProviderBuilder()
    .ConfigureResource(resource => resource.AddAzureAppServiceDetector())
    // other configurations
    .Build();

using var loggerFactory = LoggerFactory.Create(builder =>
{
    builder.AddOpenTelemetry(options =>
    {
        options.SetResourceBuilder(ResourceBuilder.CreateDefault().AddAzureAppServiceDetector());
    });
});
Attribute Description
azure.app.service.stamp The specific "stamp" cluster within Azure where the App Service is running, e.g., "waws-prod-sn1-001".
cloud.platform The cloud platform. Here, it's always "azure_app_service".
cloud.provider The cloud service provider. In this context, it's always "azure".
cloud.resource_id The Azure Resource Manager URI uniquely identifying the Azure App Service. Typically in the format "/subscriptions//resourceGroups//providers/Microsoft.Web/sites/".
cloud.region The Azure region where the App Service is hosted, e.g., "East US", "West Europe", etc.
deployment.environment The deployment slot where the Azure App Service is running, such as "staging", "production", etc.
host.id The primary hostname for the app, excluding any custom hostnames.
service.instance.id The specific instance of the Azure App Service, useful in a scaled-out configuration.
service.name The name of the Azure App Service.

VM Resource Detector

Adds resource attributes for the applications running in an Azure virtual machine. The following example shows how to add AzureVMResourceDetector to the ResourceBuilder.

using OpenTelemetry;
using OpenTelemetry.Resources;

using var tracerProvider = Sdk.CreateTracerProviderBuilder()
    .ConfigureResource(resource => resource.AddAzureVMDetector())
    // other configurations
    .Build();

using var meterProvider = Sdk.CreateMeterProviderBuilder()
    .ConfigureResource(resource => resource.AddAzureVMDetector())
    // other configurations
    .Build();
Attribute Description
azure.vm.scaleset.name The name of the Virtual Machine Scale Set if the VM is part of one.
cloud.platform The cloud platform, which is always set to "azure_vm" in this context.
cloud.provider The cloud service provider, which is always set to "azure" in this context.
cloud.region The Azure region where the Virtual Machine is hosted, such as "East US", "West Europe", etc.
cloud.resource_id The Azure Resource Manager URI uniquely identifying the Azure Virtual Machine. It typically follows this format: "/subscriptions//resourceGroups//providers/Microsoft.Compute/virtualMachines/".
host.id A unique identifier for the VM host, for instance, "02aab8a4-74ef-476e-8182-f6d2ba4166a6".
host.name The name of the host machine.
host.type The size of the VM instance, for example, "Standard_D2s_v3".
os.type The type of operating system running on the VM, such as "Linux" or "Windows".
os.version The version of the operating system running on the VM.
service.instance.id An identifier for a specific instance of the service running on the Azure VM, for example, "02aab8a4-74ef-476e-8182-f6d2ba4166a6".

Azure Container Apps Resource Detector

Adds resource attributes for the applications running in Azure Container Apps or Azure Container App jobs. The following example shows how to add AzureContainerAppsResourceDetector to the ResourceBuilder.

using OpenTelemetry;
using OpenTelemetry.Resources;

using var tracerProvider = Sdk.CreateTracerProviderBuilder()
    .ConfigureResource(resource => resource.AddAzureContainerAppsDetector())
    // other configurations
    .Build();

using var meterProvider = Sdk.CreateMeterProviderBuilder()
    .ConfigureResource(resource => resource.AddAzureContainerAppsDetector())
    // other configurations
    .Build();
Attribute Description
cloud.platform The cloud platform. Here, it's always "azure_container_apps".
cloud.provider The cloud service provider. In this context, it's always "azure".
service.instance.id Represents the specific instance ID of Azure Container Apps, useful in scaled-out configurations.
service.name The name of the Azure Container Apps or Azure Container Apps job.
service.version The current revision or version of Azure Container Apps, or in case of a Azure Container Apps job - the job execution name.

Showing the top 20 packages that depend on OpenTelemetry.Resources.Azure.

Packages Downloads
Microsoft.ApplicationInsights.AspNetCore
Application Insights for ASP.NET Core web applications. See https://azure.microsoft.com/documentation/articles/app-insights-asp-net-five/ for more information. Privacy statement: https://go.microsoft.com/fwlink/?LinkId=512156
2

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
1.14.0-beta.1 1 12/06/2025
1.13.0-beta.1 1 12/06/2025
1.12.0-beta.1 1 12/06/2025
1.11.0-beta.2 1 12/06/2025
1.11.0-beta.1 1 12/06/2025
1.10.0-beta.1 1 12/06/2025
1.0.0-beta.9 1 12/06/2025
1.0.0-beta.8 1 12/06/2025
1.0.0-beta.7 1 12/06/2025