File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
packages/nextjs/src/server Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ import { distDirRewriteFramesIntegration } from './distDirRewriteFramesIntegrati
11
11
12
12
export * from '@sentry/node' ;
13
13
import type { EventProcessor } from '@sentry/types' ;
14
+ import { httpIntegration } from './httpIntegration' ;
15
+
16
+ export { httpIntegration } ;
14
17
15
18
export { captureUnderscoreErrorException } from '../common/_error' ;
16
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 ( ) ,
78
82
] ;
79
83
80
84
// This value is injected at build time, based on the output directory specified in the build config. Though a default
You can’t perform that action at this time.
0 commit comments