Skip to content

Commit a3808b6

Browse files
authored
fix: structured metadata not always passed down for processing deletes (#15526)
Signed-off-by: Edward Welch <edward.welch@grafana.com>
1 parent e34944d commit a3808b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎pkg/logql/log/metrics_extraction.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ func (sp *filteringStreamExtractor) Process(ts int64, line []byte, structuredMet
283283
}
284284
}
285285

286-
return sp.extractor.Process(ts, line)
286+
return sp.extractor.Process(ts, line, structuredMetadata...)
287287
}
288288

289289
func (sp *filteringStreamExtractor) ProcessString(ts int64, line string, structuredMetadata ...labels.Label) (float64, LabelsResult, bool) {

0 commit comments

Comments
 (0)