Querier handlers queries.
| 54 | |
| 55 | // Querier handlers queries. |
| 56 | type Querier struct { |
| 57 | services.Service |
| 58 | |
| 59 | cfg Config |
| 60 | |
| 61 | liveStorePool *ring_client.Pool |
| 62 | partitionRing *ring.PartitionInstanceRing |
| 63 | |
| 64 | engine *traceql.Engine |
| 65 | store storage.Store |
| 66 | limits overrides.Interface |
| 67 | |
| 68 | externalClient *external.Client |
| 69 | |
| 70 | subservices *services.Manager |
| 71 | subservicesWatcher *services.FailureWatcher |
| 72 | } |
| 73 | |
| 74 | // New makes a new Querier. |
| 75 | // |
nothing calls this directly
no outgoing calls
no test coverage detected