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 2b7400a commit e4139eaCopy full SHA for e4139ea
packages/spotlight/src/ui/telemetry/store/utils/traceProcessor.ts
@@ -26,7 +26,8 @@ export function processTransactionEvent(
26
const { existingTrace, profilesByTraceId } = context;
27
28
// Add guard to ensure trace_id exists
29
- throw new Error("Transaction event missing required trace_id");
+ if (!traceCtx.trace_id) {
30
+ throw new Error('Transaction event missing required trace_id');
31
}
32
33
// Initialize or get existing trace
0 commit comments