feat(agent): update instrumentation to be compatible with MongoDB 2.x#1154
Merged
Conversation
|
6f1a964 to
59dc8f5
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #1154 +/- ##
==========================================
+ Coverage 78.33% 78.35% +0.02%
==========================================
Files 193 193
Lines 28238 28229 -9
==========================================
Hits 22120 22120
+ Misses 6118 6109 -9
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
59dc8f5 to
f59774c
Compare
lavarou
reviewed
Jan 20, 2026
lavarou
reviewed
Jan 22, 2026
lavarou
approved these changes
Jan 22, 2026
d10c46f to
7f2f608
Compare
zsistla
approved these changes
Feb 2, 2026
This was referenced Feb 10, 2026
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.
This PR removes redundant
Executableinterface check which caused instrumentation to break for MongoDB 2.x because theExecutableinterface has been removed. This check is not needed because for all operations we implement, they will only be instrumented ifexecutemethod is called, so this makes current check forExecutableinterface redundant as this interface only definedexecutemethod.closes #1147