(_options: Options)
| 11 | |
| 12 | /** Get the default integrations for the Elysia SDK. */ |
| 13 | export 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. |