Skip to content

Commit 919f4a2

Browse files
committed
fix(node): Make http integration spans have http span operation
1 parent 3370277 commit 919f4a2

File tree

1 file changed

+1
-1
lines changed
  • packages/node/src/integrations

1 file changed

+1
-1
lines changed

packages/node/src/integrations/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function _createWrappedRequestMethodFactory(
114114
if (parentSpan) {
115115
span = parentSpan.startChild({
116116
description: `${requestOptions.method || 'GET'} ${requestUrl}`,
117-
op: 'request',
117+
op: 'http',
118118
});
119119

120120
const sentryTraceHeader = span.toTraceparent();

0 commit comments

Comments
 (0)