Is there an existing issue for this?
How do you use Sentry?
Self-hosted/on-premise
Which SDK are you using?
@sentry/node
SDK Version
8.26.0
Framework Version
No response
Link to Sentry event
No response
Reproduction Example/SDK Setup
my sentry init in 7.118.0
init({dsn: process.env.SENTRY_DSN,environment: process.env.NODE_ENV||"none",release: require("../../package.json").version,serverName: `${cluster.bot}-c=${cluster.id}-first=${cluster.first}-last=${cluster.last}`||"none",integrations: [newIntegrations.Postgres({module: require("pg")}),newIntegrations.Modules(),newIntegrations.FunctionToString(),newIntegrations.LinkedErrors(),newIntegrations.Console(),newIntegrations.Http({breadcrumbs: true,tracing: true}),rewriteFramesIntegration({root: path.join(__dirname,"..")}),],// Performance MonitoringtracesSampleRate: 1.0,// Capture 100% of the transactions});my sentry init in 8.6.0
Sentry.init({dsn: process.env.SENTRY_DSN,environment: process.env.NODE_ENV||"none",release: require("../../package.json").version,serverName: `${cluster.bot}-c=${cluster.id}-first=${cluster.first}-last=${cluster.last}`||"none",integrations: [Sentry.modulesIntegration(),Sentry.functionToStringIntegration(),Sentry.linkedErrorsIntegration(),Sentry.consoleIntegration(),Sentry.httpIntegration({breadcrumbs: true}),Sentry.rewriteFramesIntegration({root: path.join(__dirname,"..")}),Sentry.onUnhandledRejectionIntegration(),Sentry.onUncaughtExceptionIntegration(),Sentry.redisIntegration(),Sentry.postgresIntegration(),],// To avoid sending too much data to Sentry, we can reduce the sample rate of traces and profilestracesSampleRate: 1.0,profilesSampleRate: 1.0,});Steps to Reproduce
I'll try removing some of the integrations to see what's causing the problem.
Expected Result
A normal memory usage

Actual Result
anormal memory usage

Is there an existing issue for this?
How do you use Sentry?
Self-hosted/on-premise
Which SDK are you using?
@sentry/node
SDK Version
8.26.0
Framework Version
No response
Link to Sentry event
No response
Reproduction Example/SDK Setup
my sentry init in 7.118.0
my sentry init in 8.6.0
Steps to Reproduce
I'll try removing some of the integrations to see what's causing the problem.
Expected Result
A normal memory usage
Actual Result
anormal memory usage