File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 63
63
* [ ENHANCEMENT] All: Handling CMK Access Denied errors. #5420 #5542
64
64
* [ ENHANCEMENT] Querier: Retry store gateway client connection closing gRPC error. #5558
65
65
* [ ENHANCEMENT] QueryFrontend: Add generic retry for all APIs. #5561 .
66
+ * [ ENHANCEMENT] QueryFrontend: Add metric for number of series requests. #5373
66
67
* [ BUGFIX] Ruler: Validate if rule group can be safely converted back to rule group yaml from protobuf message #5265
67
68
* [ BUGFIX] Querier: Convert gRPC ` ResourceExhausted ` status code from store gateway to 422 limit error. #5286
68
69
* [ BUGFIX] Alertmanager: Route web-ui requests to the alertmanager distributor when sharding is enabled. #5293
Original file line number Diff line number Diff line change @@ -127,10 +127,13 @@ func NewQueryTripperware(
127
127
return RoundTripFunc (func (r * http.Request ) (* http.Response , error ) {
128
128
isQuery := strings .HasSuffix (r .URL .Path , "/query" )
129
129
isQueryRange := strings .HasSuffix (r .URL .Path , "/query_range" )
130
+ isSeries := strings .HasSuffix (r .URL .Path , "/series" )
130
131
131
132
op := "query"
132
133
if isQueryRange {
133
134
op = "query_range"
135
+ } else if isSeries {
136
+ op = "series"
134
137
}
135
138
136
139
tenantIDs , err := tenant .TenantIDs (r .Context ())
You can’t perform that action at this time.
0 commit comments