Add Operation Name Propagation for Dependencies and Logs#43588
Merged
rads-1996 merged 8 commits intoAzure:mainfrom Nov 3, 2025
Merged
Add Operation Name Propagation for Dependencies and Logs#43588rads-1996 merged 8 commits intoAzure:mainfrom
rads-1996 merged 8 commits intoAzure:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds operation name propagation for dependency and log telemetry in the Azure Monitor OpenTelemetry exporter. The operation name is now included in the AI_OPERATION_NAME tag for non-server spans (dependencies) and log records, improving telemetry correlation and observability.
Key Changes:
- Operation names are now propagated to dependency telemetry (RemoteDependencyData) and log telemetry (MessageData)
- HTTP dependencies use a specific format combining HTTP method and route/path
- Non-HTTP dependencies use the span name as the operation name
- Log records extract operation name from their attributes
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
sdk/monitor/azure-monitor-opentelemetry-exporter/azure/monitor/opentelemetry/exporter/export/trace/_exporter.py |
Implements operation name propagation for dependency telemetry using span attributes |
sdk/monitor/azure-monitor-opentelemetry-exporter/azure/monitor/opentelemetry/exporter/export/logs/_exporter.py |
Adds operation name extraction from log record attributes |
sdk/monitor/azure-monitor-opentelemetry-exporter/tests/trace/test_trace.py |
Adds test assertions to verify operation name is set correctly for various dependency types |
sdk/monitor/azure-monitor-opentelemetry-exporter/tests/logs/test_logs.py |
Updates test fixtures and adds assertions to verify operation name propagation in logs |
sdk/monitor/azure-monitor-opentelemetry-exporter/CHANGELOG.md |
Documents the new feature |
5 tasks
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
d0fa710 to
ca15a30
Compare
hectorhdzg
approved these changes
Nov 3, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Addresses - #34655
All SDK Contribution checklist:
General Guidelines and Best Practices
Testing Guidelines