diff --git a/processor/loghouseprocessor/processor_test.go b/processor/loghouseprocessor/processor_test.go index 92dca9eabad4..4575f16ce5c5 100644 --- a/processor/loghouseprocessor/processor_test.go +++ b/processor/loghouseprocessor/processor_test.go @@ -267,6 +267,10 @@ func Test_promoteTraceAndSpan(t *testing.T) { trace: pcommon.TraceID{}, span: pcommon.SpanID{}, }}, + {name: "garbage, also ignore", args: map[string]any{"traceId": "blah", "spanId": "blah"}, expected: expect{ + trace: pcommon.TraceID{}, + span: pcommon.SpanID{}, + }}, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) {