Skip to content

Commit

Permalink
Emit more histogram buckets for cortex-querier_storegateway_refetches…
Browse files Browse the repository at this point in the history
…_per_query

Signed-off-by: SungJin1212 <[email protected]>
  • Loading branch information
SungJin1212 committed Jan 31, 2025
1 parent b48f93b commit b50d72c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## master / unreleased

* [FEATURE] Querier/Ruler: Add `query_partial_data` and `rules_partial_data` limits to allow queries/rules to be evaluated with data from a single zone, if other zones are not available. #6526
* [ENHANCEMENT] StoreGateway: Emit more histogram buckets on the `cortex-querier_storegateway_refetches_per_query` metric. #6570
* [BUGFIX] Ingester: Avoid error or early throttling when READONLY ingesters are present in the ring #6517

## 1.19.0 in progress
Expand Down
2 changes: 1 addition & 1 deletion pkg/querier/blocks_store_queryable.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func newBlocksStoreQueryableMetrics(reg prometheus.Registerer) *blocksStoreQuery
Namespace: "cortex",
Name: "querier_storegateway_refetches_per_query",
Help: "Number of re-fetches attempted while querying store-gateway instances due to missing blocks.",
Buckets: []float64{0, 1, 2},
Buckets: []float64{0, 1, 2, 4, 8, 16},
}),
}
}
Expand Down

0 comments on commit b50d72c

Please sign in to comment.