Hi Folks, How can I implement performance monitoring with Sentry. I went through the strapi-plugin-sentry
plugin, but looks like it is used only for tracking errors.
I even tried by implementing this in ./config/plugins.js
sentry: {
dsn: env('SENTRY_DSN'),
sendMetadata: true,
init: {
integrations: [new Sentry.Integrations.Http({ tracing: true })],
tracesSampleRate: 1.0,
},
},
But, I don’t see any requests being made to sentry.