Skip to content

Commit

Permalink
chore: [k211] fix: Fix log line for fingerprint not found (#13560)
Browse files Browse the repository at this point in the history
Co-authored-by: Salva Corts <[email protected]>
  • Loading branch information
grafanabot and salvacorts authored Jul 17, 2024
1 parent 1eb3c09 commit db2aa28
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkg/storage/bloom/v1/fuse.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,12 @@ func (fq *FusedQuerier) Run() error {
series := fq.bq.At()
if series.Fingerprint != fp {
// fingerprint not found, can't remove chunks
level.Debug(fq.logger).Log("msg", "fingerprint not found", "fp", series.Fingerprint, "err", fq.bq.Err())
level.Debug(fq.logger).Log(
"msg", "fingerprint not found",
"fp", fp,
"foundFP", series.Fingerprint,
"err", fq.bq.Err(),
)
fq.recordMissingFp(nextBatch, fp)
continue
}
Expand Down

0 comments on commit db2aa28

Please sign in to comment.