Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .oxlintrc.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@
"**/integrations/tracing/knex/vendored/**/*.ts",
"**/integrations/tracing/mongo/vendored/**/*.ts",
"**/integrations/tracing/connect/vendored/**/*.ts",
"**/integration/aws/vendored/**/*.ts"
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated
"**/integrations/tracing/tedious/vendored/**/*.ts"
],
"rules": {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-serverless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
},
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/core": "^2.6.1",
Comment thread
cursor[bot] marked this conversation as resolved.
"@opentelemetry/instrumentation": "^0.214.0",
"@opentelemetry/instrumentation-aws-sdk": "0.69.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@sentry/core": "10.53.1",
"@sentry/node": "10.53.1",
Expand Down
3 changes: 3 additions & 0 deletions packages/aws-serverless/rollup.npm.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ export default [
packageSpecificConfig: {
// Used for our custom eventContextExtractor
external: ['@opentelemetry/api'],
output: {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

m: Checking-in was this done on purpose?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it was, build failed without this because the paths changed

preserveModulesRoot: 'src',
},
},
}),
),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { registerInstrumentations } from '@opentelemetry/instrumentation';
import { AwsInstrumentation } from '@opentelemetry/instrumentation-aws-sdk';
import { AwsInstrumentation } from './vendored/aws-sdk';
import { defineIntegration, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '@sentry/core';

/**
Expand Down
Loading
Loading