Problem Statement
Hey there!
Thanks for the awesome work - I had a quick suggestion regarding this readme.
The README contains an example of importing integrations from @sentry/tracing, but the TS definitions communicate that this is now deprecated.
import { Integrations } from "@sentry/tracing";
Sentry.init({
integrations: [
new Integrations.Express(),
]
});
Solution Brainstorm
Would be great if the necessity of @sentry/tracing could be communicated in the README. For example, if tracing is enabled by default and the @sentry/tracing module is no longer needed for node environments, something like this would be great
Node
@sentry/node >= 0.0.0 now includes integrations, and enables tracing by default. There is no longer a need to use @sentry/tracing for node environments.
Problem Statement
Hey there!
Thanks for the awesome work - I had a quick suggestion regarding this readme.
The README contains an example of importing integrations from
@sentry/tracing, but the TS definitions communicate that this is now deprecated.Solution Brainstorm
Would be great if the necessity of
@sentry/tracingcould be communicated in the README. For example, if tracing is enabled by default and the@sentry/tracingmodule is no longer needed for node environments, something like this would be great