You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(serverless): Do not include performance integrations by default (#11998)
In order to keep bundle size compact, performance integrations (except
for http & fetch) have to be manually added for serverless packages.
This means that users will have to do e.g. this if they want to have
mysql instrumented:
```js
import * as Sentry from '@sentry/aws-serverless';
Sentry.init({
integrations: [Sentry.mysqlIntegration()]
});
```
Closes#11991
---------
Co-authored-by: Lukas Stracke <[email protected]>
0 commit comments