From aeb23bb7fc3d33327060828ddf97cb7da7b3c8f8 Mon Sep 17 00:00:00 2001 From: Salva Corts Date: Wed, 17 Jul 2024 13:21:34 +0200 Subject: [PATCH] fix: Fix log line for fingerprint not found (#13555) --- pkg/storage/bloom/v1/fuse.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkg/storage/bloom/v1/fuse.go b/pkg/storage/bloom/v1/fuse.go index 2a6f74d590b8..ace67b0496c2 100644 --- a/pkg/storage/bloom/v1/fuse.go +++ b/pkg/storage/bloom/v1/fuse.go @@ -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 }