feat(boto3): Add ServiceExtension class - #7536
Open
pabloDeputter wants to merge 9 commits into
Open
pabloDeputter wants to merge 9 commits into
pabloDeputter wants to merge 9 commits into
Conversation
pabloDeputter
added this pull request to stack #7500
September 18, 2026 13:31
Contributor
Codecov Results 📊✅ 130540 passed | ⏭️ 7171 skipped | Total: 137711 | Pass Rate: 94.79% | Execution Time: 454m 5s All tests are passing successfully. ✅ Patch coverage is 85.00%. Project has 2557 uncovered lines. Files with missing lines (3)
Coverage diff@@ Coverage Diff @@
## master #PR +/-##
==========================================
+ Coverage 90.22% 90.29% +0.07%
==========================================
Files 194 201 +7
Lines 25997 26323 +326
Branches 9662 9752 +90
==========================================
+ Hits 23454 23766 +312
- Misses 2543 2557 +14
- Partials 1451 1461 +10Generated by Codecov Action |
pabloDeputter
removed this pull request from stack #7500
September 18, 2026 14:34
pabloDeputter
added this pull request to stack #7539
September 18, 2026 14:35
pabloDeputter
force-pushed
the
pablo/add-boto3-service-extension-class
branch
from
September 18, 2026 15:06
499dbcc to
d9609eb
Compare
pabloDeputter
removed this pull request from stack #7539
September 18, 2026 15:08
pabloDeputter
added this pull request to stack #7541
September 18, 2026 15:08
pabloDeputter
force-pushed
the
pablo/add-boto3-service-extension-class
branch
from
September 18, 2026 15:20
d9609eb to
ea505d1
Compare
pabloDeputter
force-pushed
the
pablo/add-boto3-service-extension-class
branch
2 times, most recently
from
September 21, 2026 15:42
9068e22 to
b9071e2
Compare
pabloDeputter
force-pushed
the
pablo/add-boto3-service-extension-class
branch
from
September 21, 2026 16:07
b9071e2 to
787cd71
Compare
pabloDeputter
force-pushed
the
pablo/add-boto3-service-extension-class
branch
from
September 22, 2026 08:52
17d48a0 to
8ace874
Compare
- otherwise service-specific spans with different origins would be skipped (e.g. DynamoDB)
pabloDeputter
force-pushed
the
pablo/add-boto3-service-extension-class
branch
from
September 22, 2026 09:18
82e40da to
2de4cfe
Compare
pabloDeputter
marked this pull request as ready for review
September 22, 2026 11:50
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
Adds service-extension support to
Boto3Integration. This keeps the generic Boto3 call lifecycle independent of individual AWS services._ServiceExtensioninterface for service-specific behavior through_get_span_config(),_get_request_attributes(), and_get_response_attributes(). This allows for custom span operations/origin, request attributes, and response/error attributes. A future method can also inject trace context into service-specific payload, e.g. SQS message attributes.Issues
Resolves #7477