-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Package: nodeIssues related to the Sentry Node SDKIssues related to the Sentry Node SDK
Description
Is there an existing issue for this?
- I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- I have reviewed the documentation https://docs.sentry.io/
- I am using the latest SDK release https://github.com/getsentry/sentry-javascript/releases
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/node
SDK Version
8.19.0
Framework Version
No response
Link to Sentry event
No response
SDK Setup/Reproduction Example
// Preloaded using node --import flag. Do not import code from other source files here.
// https://docs.sentry.io/platforms/javascript/guides/node/install/esm/
// @ts-check
import { dirname } from 'node:path'
import { fileURLToPath } from 'node:url'
import * as Sentry from '@sentry/node'
import { nodeProfilingIntegration } from '@sentry/profiling-node'
/**
* The root directory of the application.
* @see {@link https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/rewriteframes/}
*/
const root = dirname(fileURLToPath(import.meta.url))
const env =
process.env['SENTRY_ENV'] || process.env['NODE_ENV'] || 'development'
const version = process.env['PACKAGE_VERSION']
Sentry.init({
dsn: 'redacted',
release: version ? `api@${version}` : undefined,
environment: env,
integrations: [
nodeProfilingIntegration(),
Sentry.dedupeIntegration(),
Sentry.rewriteFramesIntegration({ root }),
Sentry.prismaIntegration(),
],
beforeBreadcrumb: (breadcrumb) => {
// Filter out writes to apollographql reporting API, because they are not helpful for error tracing
// and spam breadcrumbs.
if (
breadcrumb.type === 'http' &&
typeof breadcrumb.data?.['url'] === 'string' &&
breadcrumb.data['url'].includes('api.apollographql.com')
) {
return null
}
return breadcrumb
},
tracesSampleRate: 0.1,
profilesSampleRate: 0.1,
})
Steps to Reproduce
Install @simplewebauthn/server
version 10.0.0.
import {
generateAuthenticationOptions,
generateRegistrationOptions,
verifyAuthenticationResponse,
verifyRegistrationResponse,
} from '@simplewebauthn/server'
Expected Result
Using @simplewebauthn/server
using Sentry intstrumentation in an ESM environment should work.
Everything works fine when removing the --import ./instrument.js
flag.
Actual Result
[nodemon] starting `node --env-file=.env --import ./instrument.js --import @swc-node/register/esm-register ./src/main.ts`
ReferenceError: generateChallenge is not defined
at Function.assign (<anonymous>)
at file:///Users/pascal/code/ips-hosting/api/node_modules/.pnpm/@[email protected]/node_modules/@simplewebauthn/server/esm/helpers/index.js?iitm=true:6:18
at ModuleJob.run (node:internal/modules/esm/module_job:262:25)
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:485:26)
at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:109:5)
Metadata
Metadata
Assignees
Labels
Package: nodeIssues related to the Sentry Node SDKIssues related to the Sentry Node SDK
Type
Projects
Status
No status