Skip to content
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

Sentry Node.js ESM + OTEL instrumentation blockers - Part 3 #12806

Closed
6 of 10 tasks
AbhiPrasad opened this issue Jul 8, 2024 · 5 comments
Closed
6 of 10 tasks

Sentry Node.js ESM + OTEL instrumentation blockers - Part 3 #12806

AbhiPrasad opened this issue Jul 8, 2024 · 5 comments
Assignees
Labels
Package: node Issues related to the Sentry Node SDK Package-Meta: OpenTelemetry

Comments

@AbhiPrasad
Copy link
Member

AbhiPrasad commented Jul 8, 2024

With the release of v8 of the Sentry SDK, the Node SDK now relies on OpenTelemetry. OpenTelemetry instrumentation does have some problems though (particularly with ESM because of import-in-the-middle), so this issue aims at documented these gaps.

Part 1: #12242
Part 2: #12485

With 8.15.0 + [email protected] we released most of the fixes for Part 2, but there are a new set of bugs for us to release fixes for. This is tracked in this issue.

Sentry issues

  1. Package-Meta: OpenTelemetry Package: node Type: Bug
    timfish
  2. Package-Meta: OpenTelemetry Package: node Type: Bug
    timfish
  3. Package-Meta: OpenTelemetry Package: node Type: Bug
    timfish
  4. Package: astro
    Lms24 timfish

1. openai shims causes issues

Issue: #12414

IITM issue: nodejs/import-in-the-middle#38
Asking about this to Node.js loaders team: nodejs/loaders#198 (comment)

2. CJS identifiers that don't work in ESM break

Issue: #12622

IITM issue: nodejs/import-in-the-middle#94
Fix: nodejs/import-in-the-middle#115

3. Unexpected closing brace error from import-in-the-middle (affects discordjs)

Issue: #12807

Repro: https:/bubooon/sentry-nuxt-nitro-example

4. No spans are created for Node http.get calls in ESM mode

Issue: open-telemetry/opentelemetry-js#4857

Repro: https:/Lms24/otel-node-http-get-esm-reproduction

@RIP21
Copy link

RIP21 commented Jul 20, 2024

Unsure if it's related to the import-in-the-middle but I have problems with drizzle-orm imports.

Like that

import { eq, ilike, or } from "drizzle-orm";
         ^^
SyntaxError: The requested module 'drizzle-orm' does not provide an export named 'eq'
    at ModuleJob._instantiate (node:internal/modules/esm/module_job:134:21)
    at async ModuleJob.run (node:internal/modules/esm/module_job:217:5)
    at async ModuleLoader.import (node:internal/modules/esm/loader:316:24)
    at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:123:5)

Node.js v20.13.1

This is how I'm running my node:

 node --import @sentry/node/preload --import @swc-node/register/esm-register ./src/main.ts

@timfish
Copy link
Collaborator

timfish commented Jul 21, 2024

@RIP21 this issue tracked here:

@timfish
Copy link
Collaborator

timfish commented Jul 22, 2024

I'm hoping that this import-in-the-middle PR should finally close a lot of these issues:

For a bit of context... import-in-the-middle and instrumentation of ESM in Node is fundamentally broken in a couple of ways. Since ES modules are immutable, import-in-the-middle creates wrapper modules for every module which allows for changes to be made after they are loaded. Unfortunately, wrapper modules do not allow import-in-the-middle to fully represent what a regular module looks like to those consuming it.

The above PR should allow us to signal to import-in-the-middle to only wrap the libraries that we intend to later instrument. While this doesn't fix the fundamental issues surrounding instrumenting ESM, it significantly reduces the number of libraries that import-in-the-middle needs to be compatible with.

@AbhiPrasad
Copy link
Member Author

We've released https:/getsentry/sentry-javascript/releases/tag/8.29.0 which includes #13139 as part of this PR.

As such I think we can close this issue.

@timfish mind helping follow up on the linked issues?

@timfish
Copy link
Collaborator

timfish commented Sep 9, 2024

Yep and I think many of the issues are assigned to me which should help!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Package: node Issues related to the Sentry Node SDK Package-Meta: OpenTelemetry
Projects
Archived in project
Development

No branches or pull requests

3 participants