We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following is the templating composition of config.yaml for the whole tempo-distributed from the values file :
config.yaml
query_frontend: max_outstanding_per_tenant: {{ .Values.queryFrontend.config.max_outstanding_per_tenant }} max_retries: {{ .Values.queryFrontend.config.max_retries }} search: target_bytes_per_job: {{ .Values.queryFrontend.config.search.target_bytes_per_job }} concurrent_jobs: {{ .Values.queryFrontend.config.search.concurrent_jobs }} trace_by_id: query_shards: {{ .Values.queryFrontend.config.trace_by_id.query_shards }}
The traceql metrics options can be seen here : https://grafana.com/docs/tempo/latest/operations/traceql-metrics/#set-traceql-metrics-query-options Setting traceql query options is not possible . Can the helm template be future ready with by modifying the above templated config with something like the pseudo helm :
# values file queryFrontend: extraConfig : metrics: concurrent_jobs: 42
query_frontend: max_outstanding_per_tenant: {{ .Values.queryFrontend.config.max_outstanding_per_tenant }} max_retries: {{ .Values.queryFrontend.config.max_retries }} search: target_bytes_per_job: {{ .Values.queryFrontend.config.search.target_bytes_per_job }} concurrent_jobs: {{ .Values.queryFrontend.config.search.concurrent_jobs }} trace_by_id: query_shards: {{ .Values.queryFrontend.config.trace_by_id.query_shards }} {{ .Values.queryFrontend.extraConfig }}
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The following is the templating composition of
config.yaml
for the whole tempo-distributed from the values file :The traceql metrics options can be seen here : https://grafana.com/docs/tempo/latest/operations/traceql-metrics/#set-traceql-metrics-query-options
Setting traceql query options is not possible . Can the helm template be future ready with by modifying the above templated config with something like the pseudo helm :
The text was updated successfully, but these errors were encountered: