Skip to content

Commit 0a52b2e

Browse files
committed
Changelog
Signed-off-by: alanprot <[email protected]>
1 parent efb6ddc commit 0a52b2e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
* [ENHANCEMENT] Ingester: Make sure unregistered ingester joining the ring after WAL replay. #6277
5151
* [ENHANCEMENT] Distributor: Add a new `-distributor.num-push-workers` flag to use a goroutine worker pool when sending data from distributor to ingesters. #6406
5252
* [ENHANCEMENT] Ingester: If a limit per label set entry doesn't have any label, use it as the default partition to catch all series that doesn't match any other label sets entries. #6435
53+
* [ENHANCEMENT] Querier: Add new `cortex_querier_codec_response_size` metric to track the size of the encoded query responses from queriers. #6444
5354
* [BUGFIX] Runtime-config: Handle absolute file paths when working directory is not / #6224
5455
* [BUGFIX] Ruler: Allow rule evaluation to complete during shutdown. #6326
5556
* [BUGFIX] Ring: update ring with new ip address when instance is lost, rejoins, but heartbeat is disabled. #6271

pkg/api/handlers.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ func NewQuerierHandler(
197197
api := v1.NewAPI(
198198
engine,
199199
querier.NewErrorTranslateSampleAndChunkQueryable(queryable), // Translate errors to errors expected by API.
200-
nil, // No remote write support.
200+
nil, // No remote write support.
201201
exemplarQueryable,
202202
func(ctx context.Context) v1.ScrapePoolsRetriever { return nil },
203203
func(context.Context) v1.TargetRetriever { return &querier.DummyTargetRetriever{} },
@@ -234,7 +234,7 @@ func NewQuerierHandler(
234234
// Let's clear all codecs to create the instrumented ones
235235
api.ClearCodecs()
236236
cm := codec.NewInstrumentedCodecMetrics(reg)
237-
237+
238238
api.InstallCodec(codec.NewInstrumentedCodec(v1.JSONCodec{}, cm))
239239
// Install Protobuf codec to give the option for using either.
240240
api.InstallCodec(codec.NewInstrumentedCodec(codec.ProtobufCodec{CortexInternal: false}, cm))

0 commit comments

Comments
 (0)