You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@
17
17
*[ENHANCEMENT] Distributor: Add new `cortex_reduced_resolution_histogram_samples_total` metric to track the number of histogram samples which resolution was reduced. #6182
18
18
*[ENHANCEMENT] StoreGateway: Implement metadata API limit in queryable. #6195
19
19
*[ENHANCEMENT] Ingester: Add matchers to ingester LabelNames() and LabelNamesStream() RPC. #6209
20
+
*[ENHANCEMENT] Ingester/Store Gateway Clients: Introduce an experimental HealthCheck handler to quickly fail requests directed to unhealthy targets. #6225
20
21
*[BUGFIX] Runtime-config: Handle absolute file paths when working directory is not / #6224
HealthCheckConfig grpcclient.HealthCheckConfig`yaml:"healthcheck_config" doc:"description=EXPERIMENTAL: If enabled, gRPC clients perform health checks for each target and fail the request if the target is marked as unhealthy."`
Copy file name to clipboardExpand all lines: pkg/util/grpcclient/grpcclient.go
+19
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,21 @@ type Config struct {
34
34
SignWriteRequestsEnabledbool`yaml:"-"`
35
35
}
36
36
37
+
typeConfigWithHealthCheckstruct {
38
+
Config`yaml:",inline"`
39
+
HealthCheckConfigHealthCheckConfig`yaml:"healthcheck_config" doc:"description=EXPERIMENTAL: If enabled, gRPC clients perform health checks for each target and fail the request if the target is marked as unhealthy."`
0 commit comments