We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4f9ec1 commit b09f6d6Copy full SHA for b09f6d6
packages/nextjs/src/server/index.ts
@@ -11,6 +11,9 @@ import { distDirRewriteFramesIntegration } from './distDirRewriteFramesIntegrati
11
12
export * from '@sentry/node';
13
import type { EventProcessor } from '@sentry/types';
14
+import { httpIntegration } from './httpIntegration';
15
+
16
+export { httpIntegration };
17
18
export { captureUnderscoreErrorException } from '../common/_error';
19
@@ -75,6 +78,7 @@ export function init(options: NodeOptions): void {
75
78
// Next.js comes with its own Http instrumentation for OTel which would lead to double spans for route handler requests
76
79
integration.name !== 'Http',
77
80
),
81
+ httpIntegration(),
82
];
83
84
// This value is injected at build time, based on the output directory specified in the build config. Though a default
0 commit comments