We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc5383d commit 9c21df4Copy full SHA for 9c21df4
packages/node-experimental/src/integrations/http.ts
@@ -83,7 +83,10 @@ const _httpIntegration = ((options: HttpOptions = {}) => {
83
84
// Update the isolation scope, isolate this request
85
if (getSpanKind(span) === SpanKind.SERVER) {
86
- setIsolationScope(getIsolationScope().clone());
+ const isolationScope = getIsolationScope().clone();
87
+ isolationScope.setSDKProcessingMetadata({ request: req });
88
+ isolationScope.setRequestSession({ status: 'ok' });
89
+ setIsolationScope(isolationScope);
90
}
91
},
92
responseHook: (span, res) => {
0 commit comments