| 32 | ) |
| 33 | |
| 34 | type queryRangeSharder struct { |
| 35 | next pipeline.AsyncRoundTripper[combiner.PipelineResponse] |
| 36 | reader tempodb.Reader |
| 37 | overrides overrides.Interface |
| 38 | cfg QueryRangeSharderConfig |
| 39 | skipASTTransformations []string |
| 40 | logger log.Logger |
| 41 | instantMode bool |
| 42 | jobsPerQuery *prometheus.HistogramVec |
| 43 | } |
| 44 | |
| 45 | type QueryRangeSharderConfig struct { |
| 46 | ConcurrentRequests int `yaml:"concurrent_jobs,omitempty"` |
nothing calls this directly
no outgoing calls
no test coverage detected