diff --git a/CHANGELOG.md b/CHANGELOG.md index 51f2a8e06a..2caadc320a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,23 @@ We use *breaking :warning:* to mark changes that are not backward compatible (re ### Removed +## [v0.35.1](https://github.com/thanos-io/thanos/tree/release-0.35) - 28.05.2024 + +### Fixed + +- [#7323](https://github.com/thanos-io/thanos/pull/7323) Sidecar: wait for prometheus on startup +- [#6948](https://github.com/thanos-io/thanos/pull/6948) Receive: fix goroutines leak during series requests to thanos store api. +- [#7382](https://github.com/thanos-io/thanos/pull/7382) *: Ensure objstore flag values are masked & disable debug/pprof/cmdline +- [#7392](https://github.com/thanos-io/thanos/pull/7392) Query: fix broken min, max for pre 0.34.1 sidecars +- [#7373](https://github.com/thanos-io/thanos/pull/7373) Receive: Fix stats for remote write +- [#7318](https://github.com/thanos-io/thanos/pull/7318) Compactor: Recover from panic to log block ID + +### Added + +### Changed + +### Removed + ## [v0.35.0](https://github.com/thanos-io/thanos/tree/release-0.35) - 02.05.2024 ### Fixed diff --git a/pkg/receive/handler.go b/pkg/receive/handler.go index c3d14bbb68..ea7ca9e055 100644 --- a/pkg/receive/handler.go +++ b/pkg/receive/handler.go @@ -714,10 +714,10 @@ type remoteWriteParams struct { func (h *Handler) gatherWriteStats(writes ...map[endpointReplica]map[string]trackedSeries) tenantRequestStats { var stats tenantRequestStats = make(tenantRequestStats) - for _, write := range writes { - for er := range write { - for tenant, series := range write[er] { - samples := 0 + for write := range writes { + for er := range write { + for tenant, series := range write[er] { + samples := 0 for _, ts := range series.timeSeries { samples += len(ts.Samples)