I am trying to integrate @sentry/tracing into a NodeJS + Express app.
Doesn't seem to be any documentation about that I can find (and I've submitted an issue to the documentation repo here).
I have poked around @sentry/tracing code and there seems to be an Express integration available.
Based on the integration source code, it looks like it should be instantiated liked this:
const express = require('express');
const app = express();
const Sentry = require('@sentry/node');
const { Integrations } = require( "@sentry/tracing");
Sentry.init({
dsn: __MY_SENTRY_DSN__,
integrations: [
new Integrations.Express({app}),
]
});
I've tried this and i'm not getting any trace data in Sentry.

