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 a3773ef commit 800d656Copy full SHA for 800d656
1 file changed
packages/server-utils/src/integrations/tracing-channel/aws-sdk/index.ts
@@ -116,7 +116,7 @@ const _awsChannelIntegration = (() => {
116
kind: requestMetadata.spanKind ?? SPAN_KIND.CLIENT,
117
// `rpc` matches what the exporter infers from `rpc.service` for the OTel aws-sdk spans;
118
// service extensions override it where inference yields a different op (DynamoDB: `db`).
119
- op: requestMetadata.spanOp ?? 'rpc',
+ op: requestMetadata.spanOp || 'rpc',
120
attributes: {
121
[SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN]: AWS_SDK_ORIGIN,
122
...extractAttributesFromNormalizedRequest(normalizedRequest),
0 commit comments