Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#4649](https://github.com/open-telemetry/opentelemetry-python/pull/4649))
- proto: relax protobuf version requirement to support v6
([#4620](https://github.com/open-telemetry/opentelemetry-python/pull/4620))
- Bump semantic-conventions to 1.36.0
([#4669](https://github.com/open-telemetry/opentelemetry-python/pull/4669))

## Version 1.34.0/0.55b0 (2025-06-04)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

AZ_NAMESPACE: Final = "az.namespace"
"""
[Azure Resource Provider Namespace](https://learn.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers) as recognized by the client.
Deprecated: Replaced by `azure.resource_provider.namespace`.
"""

AZ_SERVICE_REQUEST_ID: Final = "az.service_request_id"
"""
The unique identifier of the service request. It's generated by the Azure service and returned with the response.
Deprecated: Replaced by `azure.service.request.id`.
"""
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@
Cosmos DB sub status code.
"""

AZURE_RESOURCE_PROVIDER_NAMESPACE: Final = "azure.resource_provider.namespace"
"""
[Azure Resource Provider Namespace](https://learn.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers) as recognized by the client.
"""

AZURE_SERVICE_REQUEST_ID: Final = "azure.service.request.id"
"""
The unique identifier of the service request. It's generated by the Azure service and returned with the response.
"""


class AzureCosmosdbConnectionModeValues(Enum):
GATEWAY = "gateway"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
with the resolved function version, as the same runtime instance may be invocable with
multiple different aliases.
- **GCP:** The [URI of the resource](https://cloud.google.com/iam/docs/full-resource-names)
- **Azure:** The [Fully Qualified Resource ID](https://docs.microsoft.com/rest/api/resources/resources/get-by-id) of the invoked function,
- **Azure:** The [Fully Qualified Resource ID](https://learn.microsoft.com/rest/api/resources/resources/get-by-id) of the invoked function,
*not* the function app, having the form
`/subscriptions/<SUBSCRIPTION_GUID>/resourceGroups/<RG>/providers/Microsoft.Web/sites/<FUNCAPP>/functions/<FUNC>`.
This means that a span attribute MUST be used, as an Azure function app can host multiple functions that would usually share
Expand Down Expand Up @@ -87,19 +87,19 @@ class CloudPlatformValues(Enum):
"""AWS App Runner."""
AWS_OPENSHIFT = "aws_openshift"
"""Red Hat OpenShift on AWS (ROSA)."""
AZURE_VM = "azure_vm"
AZURE_VM = "azure.vm"
"""Azure Virtual Machines."""
AZURE_CONTAINER_APPS = "azure_container_apps"
AZURE_CONTAINER_APPS = "azure.container_apps"
"""Azure Container Apps."""
AZURE_CONTAINER_INSTANCES = "azure_container_instances"
AZURE_CONTAINER_INSTANCES = "azure.container_instances"
"""Azure Container Instances."""
AZURE_AKS = "azure_aks"
AZURE_AKS = "azure.aks"
"""Azure Kubernetes Service."""
AZURE_FUNCTIONS = "azure_functions"
AZURE_FUNCTIONS = "azure.functions"
"""Azure Functions."""
AZURE_APP_SERVICE = "azure_app_service"
AZURE_APP_SERVICE = "azure.app_service"
"""Azure App Service."""
AZURE_OPENSHIFT = "azure_openshift"
AZURE_OPENSHIFT = "azure.openshift"
"""Azure Red Hat OpenShift."""
GCP_BARE_METAL_SOLUTION = "gcp_bare_metal_solution"
"""Google Bare Metal Solution (BMS)."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@

from typing import Final

DNS_ANSWERS: Final = "dns.answers"
"""
The list of IPv4 or IPv6 addresses resolved during DNS lookup.
"""

DNS_QUESTION_NAME: Final = "dns.question.name"
"""
The name being queried.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,14 @@ class GenAiSystemValues(Enum):
"""Anthropic."""
COHERE = "cohere"
"""Cohere."""
AZ_AI_INFERENCE = "az.ai.inference"
AZURE_AI_INFERENCE = "azure.ai.inference"
"""Azure AI Inference."""
AZ_AI_OPENAI = "az.ai.openai"
AZURE_AI_OPENAI = "azure.ai.openai"
"""Azure OpenAI."""
AZ_AI_INFERENCE = "az.ai.inference"
"""Deprecated: Replaced by azure.ai.inference."""
AZ_AI_OPENAI = "azure.ai.openai"
"""Deprecated: Replaced by azure.ai.openai."""
IBM_WATSONX_AI = "ibm.watsonx.ai"
"""IBM Watsonx AI."""
AWS_BEDROCK = "aws.bedrock"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@

HTTP_RESPONSE_CONTENT_LENGTH: Final = "http.response_content_length"
"""
Deprecated: hp.response.header.content-length.
Deprecated: Replaced by `http.response.header.content-length`.
"""

HTTP_RESPONSE_CONTENT_LENGTH_UNCOMPRESSED: Final = (
Expand Down
Loading
Loading