-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Implement Node Core SDK #15213
Comments
This would be a huge benefit to me and my team. The fact that |
Seconded a way to install the baby (sentry error monitoring) without the bathwater (otel stack). We've wasted far too many of our team's limited observability calories on otel things broken by incredibly convoluted dependency issues created by the sentry packages. |
@pckilgore we agree with you. We're gonna start looking into this soon. If you have any special requirements, please note them here so we can consider them when building a solution. |
Description
Today, we have
@sentry/node
which out of the box comes with a lot of (OpenTelemetry-based) auto instrumentation.While this is the default experience we want for our users - e.g. no need to install further packages - it can be annoying for certain users:
For these users, we should look into providing an easier way to get the Sentry experience they deserve. For example, we could add a
@sentry/node-core
package, which is more or less the node package minus all the OTEL instrumentation packages. Then, the@sentry/node
package could extend this and add the respective auto instrumentation. Thenode-core
package would only register our own custom http & fetch instrumentation to get the core functionality we need working (this is already basically done for http, for fetch still TODO: #15212)With this, users could choose to do:
And would get a fully working Sentry instance, but without performance auto-instrumentation & otel instrumentation package dependencies.
We may also want to use this SDK to allow custom OTEL setups as well. This means that this SDK could ship without any otel packages as dependencies, instead requiring them as peer dependencies, making the setup slightly harder, but allowing more flexibility for users.
Notes / Thoughts
Some additional pointers for implementation:
httpIntegration
&fetchIntergation
which basically only registerSentryHttpInstrumentation
andSentryNodeFetchInstrumentation
. The node SDK must extend these and register the additional otel instrumentations, as we already do todayThe text was updated successfully, but these errors were encountered: