Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The `amqplibIntegration` adds instrumentation for the `amqplib` library to captu

```JavaScript
Sentry.init({
integrations: [new Sentry.amqplibIntegration()],
integrations: [Sentry.amqplibIntegration()],
});
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ The `bunServerIntegration` instruments [`Bun.serve` API](https://bun.sh/docs/api
import * as Sentry from '@sentry/bun';

Sentry.init({
integrations: [new Sentry.bunServerIntegration()],
integrations: [Sentry.bunServerIntegration()],
});
```
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The `connectIntegration` adds instrumentation for the Hapi framework to capture

```JavaScript
Sentry.init({
integrations: [new Sentry.connectIntegration()],
integrations: [Sentry.connectIntegration()],
});
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The `fastifyIntegration` adds instrumentation for the Fastify framework to captu

```JavaScript
Sentry.init({
integrations: [new Sentry.fastifyIntegration()],
integrations: [Sentry.fastifyIntegration()],
});
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The `hapiIntegration` adds instrumentation for the Hapi framework to capture spa

```JavaScript
Sentry.init({
integrations: [new Sentry.hapiIntegration()],
integrations: [Sentry.hapiIntegration()],
});
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The `koaIntegration` adds instrumentation for the Koa framework to capture spans

```JavaScript
Sentry.init({
integrations: [new Sentry.koaIntegration()],
integrations: [Sentry.koaIntegration()],
});
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The `lruMemoizerIntegration` adds instrumentation for the `lru-memoizer` library

```javascript
Sentry.init({
integrations: [new Sentry.lruMemoizerIntegration()],
integrations: [Sentry.lruMemoizerIntegration()],
});
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The `tediousIntegration` adds instrumentation for the `tedious` library to captu

```javascript
Sentry.init({
integrations: [new Sentry.tediousIntegration()],
integrations: [Sentry.tediousIntegration()],
});
```

Expand Down