(ctx context.Context, req *tempopb.QueryRangeRequest)
| 15 | ) |
| 16 | |
| 17 | func (q *Querier) QueryRange(ctx context.Context, req *tempopb.QueryRangeRequest) (*tempopb.QueryRangeResponse, error) { |
| 18 | if req.QueryMode == QueryModeRecent { |
| 19 | return q.queryRangeRecent(ctx, req) |
| 20 | } |
| 21 | |
| 22 | return q.queryBlock(ctx, req) |
| 23 | } |
| 24 | |
| 25 | func (q *Querier) queryRangeRecent(ctx context.Context, req *tempopb.QueryRangeRequest) (*tempopb.QueryRangeResponse, error) { |
| 26 | // correct max series limit logic should've been set by the query-frontend sharder |
no test coverage detected