Skip to content

Commit d8099e1

Browse files
committed
fix it, oops
1 parent fc0a542 commit d8099e1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/opentelemetry/src/spanExporter.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,9 +352,7 @@ function removeSentryAttributes(data: Record<string, unknown>): Record<string, u
352352

353353
function getData(span: ReadableSpan): Record<string, unknown> {
354354
const attributes = span.attributes;
355-
const data: Record<string, unknown> = {
356-
'otel.kind': SpanKind[span.kind],
357-
};
355+
const data: Record<string, unknown> = {};
358356

359357
if (span.kind !== SpanKind.INTERNAL) {
360358
data['otel.kind'] = SpanKind[span.kind];

0 commit comments

Comments
 (0)