Skip to content

Commit

Permalink
Store: fix forgotten field in store stats merge (thanos-io#6681)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Hoffmann <mhoffm@posteo.de>
  • Loading branch information
MichaHoffmann authored and saswatamcode committed Aug 31, 2023
1 parent 6520af2 commit e23dc29
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/store/bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -3528,6 +3528,7 @@ type queryStats struct {
func (s queryStats) merge(o *queryStats) *queryStats {
s.blocksQueried += o.blocksQueried

s.postingsToFetch += o.postingsToFetch
s.postingsTouched += o.postingsTouched
s.PostingsTouchedSizeSum += o.PostingsTouchedSizeSum
s.postingsFetched += o.postingsFetched
Expand Down

0 comments on commit e23dc29

Please sign in to comment.