MCPcopy Create free account
hub / github.com/getsentry/sentry-javascript / getDefaultIntegrations

Function getDefaultIntegrations

packages/elysia/src/sdk.ts:13–17  ·  view source on GitHub ↗
(_options: Options)

Source from the content-addressed store, hash-verified

11
12/** Get the default integrations for the Elysia SDK. */
13export function getDefaultIntegrations(_options: Options): Integration[] {
14 // Filter out bunServerIntegration
15 // Elysia already produces an HTTP server span, so we don't need Bun's competing root span.
16 return getBunDefaultIntegrations(_options).filter(i => i.name !== bunServerIntegration().name);
17}
18
19/**
20 * Get the runtime name and version.

Callers 1

sdk.test.tsFile · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected