-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
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.0now includes integrations, and enables tracing by default. There is no longer a need to use@sentry/tracingfor node environments.