-
Notifications
You must be signed in to change notification settings - Fork 357
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
Add AWS instrumentation for DynamoDB and disable HTTP instrumentation for Sentry requests #1758
Conversation
… for Sentry requests
🦋 Changeset detectedLatest commit: 3691b21 The changes in this PR will be included in the next version bump. This PR includes changesets to release 8 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -4,7 +4,6 @@ export const createHttpInstrumentation = () => { | |||
return new HttpInstrumentation({ | |||
requireParentforIncomingSpans: true, | |||
requireParentforOutgoingSpans: true, | |||
ignoreOutgoingRequestHook: (request) => | |||
request.hostname === "ingest.sentry.io" || request.path === "/v1/logs", |
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.
we no longer use logs from OTEL and integration already disables calls to v1/traces
/ v1/metrics
etc
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1758 +/- ##
==========================================
- Coverage 44.01% 44.01% -0.01%
==========================================
Files 661 661
Lines 295941 295943 +2
Branches 2010 2010
==========================================
Hits 130258 130258
- Misses 165263 165265 +2
Partials 420 420 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Differences FoundExpandLicense Package <<missing>> browser-assert <<missing>> eval <<missing>> require-like <<missing>> year Apache-2.0 @opentelemetry/instrumentation-aws-sdk Apache-2.0 @opentelemetry/propagation-utils SummaryExpand
|
|
||
export const createAwsInstrumentation = () => { | ||
return new AwsInstrumentation({ | ||
suppressInternalInstrumentation: true, |
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.
what does it mean? can you add comment?
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.
Done in 3691b21
(#1758)
Scope of the PR
AwsInstrumentation
factory that can be used to auto instrument DynamoDB calls.Related issues
Checklist