-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[exporter/awsxray] Adjust AwsXRay segment conversion logic #33000
Merged
andrzej-stencel
merged 8 commits into
open-telemetry:main
from
jj22ee:appsignals-cherrypick-awsxrayexporter
May 22, 2024
Merged
[exporter/awsxray] Adjust AwsXRay segment conversion logic #33000
andrzej-stencel
merged 8 commits into
open-telemetry:main
from
jj22ee:appsignals-cherrypick-awsxrayexporter
May 22, 2024
Conversation
This file contains 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
In this commit, we are fixing a couple small bugs missed in the previous review. First, we are adding a nil-guard when settting dependencySubsegment.Name, to avoid the (unlikely, but possible) scenario where local root dependency spans are created without awsRemoteService. Second, we are updating the common logic for setting segment.Name, which previously only looked at CLIENT/PRODUCER spans, but now needs to look at CONSUMER spans.
* Add logic for stripping the AWS.SDK prefix for Local Root spans - Previous change to strip the prefix in other cases open-telemetry@7c037ad * De-duplicate identical logic
wangzlei
approved these changes
May 16, 2024
fatsheep9146
approved these changes
May 17, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small nit
fatsheep9146
added
the
ready to merge
Code review completed; ready to merge by maintainers
label
May 17, 2024
mxiamxia
approved these changes
May 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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:
Cherry-picking from downstream:
amazon-contributing#111
amazon-contributing#115
amazon-contributing#127
If a span is a not a local root, then we keep existing behavior.
If it is a local root then:
Else we will split it into a segment and subsegment. The segment will represent the service operation and the subsegment will represent the dependency (service A calls service B).
Link to tracking Issue:
Testing:
Unit Testing
Documentation: