Two components of the {TempoShortName}, the querier and query frontend, manage queries. You can configure both of these components.
The querier component finds the requested trace ID in the ingesters or back-end storage. Depending on the set parameters, the querier component can query both the ingesters and pull bloom or indexes from the back end to search blocks in object storage. The querier component exposes an HTTP endpoint at GET /querier/api/traces/<trace_id>
, but it is not expected to be used directly. Queries must be sent to the query frontend.
Parameter | Description | Values |
---|---|---|
|
The simple form of the node-selection constraint. |
type: object |
|
The number of replicas to be created for the component. |
type: integer; format: int32 |
|
Component-specific pod tolerations. |
type: array |
The query frontend component is responsible for sharding the search space for an incoming query. The query frontend exposes traces via a simple HTTP endpoint: GET /api/traces/<trace_id>
. Internally, the query frontend component splits the blockID
space into a configurable number of shards and then queues these requests. The querier component connects to the query frontend component via a streaming gRPC connection to process these sharded queries.
Parameter | Description | Values |
---|---|---|
|
Configuration of the query frontend component. |
type: object |
|
The simple form of the node selection constraint. |
type: object |
|
The number of replicas to be created for the query frontend component. |
type: integer; format: int32 |
|
Pod tolerations specific to the query frontend component. |
type: array |
|
The options specific to the Jaeger Query component. |
type: object |
|
When |
type: boolean |
|
The options for the Jaeger Query ingress. |
type: object |
|
The annotations of the ingress object. |
type: object |
|
The hostname of the ingress object. |
type: string |
|
The name of an IngressClass cluster resource. Defines which ingress controller serves this ingress resource. |
type: string |
|
The options for the OpenShift route. |
type: object |
|
The termination type. The default is |
type: string (enum: insecure, edge, passthrough, reencrypt) |
|
The type of ingress for the Jaeger Query UI. The supported types are |
type: string (enum: ingress, route) |
|
The monitor tab configuration. |
type: object |
|
Enables the monitor tab in the Jaeger console. The |
type: boolean |
|
The endpoint to the Prometheus instance that contains the span rate, error, and duration (RED) metrics. For example, |
type: string |
TempoStack
CRapiVersion: tempo.grafana.com/v1alpha1
kind: TempoStack
metadata:
name: simplest
spec:
storage:
secret:
name: minio
type: s3
storageSize: 200M
resources:
total:
limits:
memory: 2Gi
cpu: 2000m
template:
queryFrontend:
jaegerQuery:
enabled: true
ingress:
route:
termination: edge
type: route