Skip to content

Commit 2450452

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎pkg/logql/log/metrics_extraction.go‎

Lines changed: 1 addition & 1 deletion
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)