1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00
Files
openshift-docs/modules/ossm-config-query.adoc

68 lines
1.4 KiB
Plaintext

// Module included in the following assemblies:
//
// * service_mesh/v2x/ossm-reference-jaeger.adoc
:_mod-docs-content-type: REFERENCE
[id="ossm-config-query_{context}"]
= Query configuration options
Query is a service that retrieves traces from storage and hosts the user interface to display them.
.Parameters used by the {JaegerName} Operator to define Query
[options="header"]
[cols="l, a, a, a"]
|===
|Parameter |Description |Values |Default value
|spec:
query:
replicas:
|Specifies the number of Query replicas to create.
|Integer, for example, `2`
|
|===
.Configuration parameters passed to Query
[options="header"]
[cols="l, a, a, a"]
|===
|Parameter |Description |Values |Default value
|spec:
query:
options: {}
|Configuration options that define the Query service.
|
|
|options:
log-level:
|Logging level for Query.
|Possible values: `debug`, `info`, `warn`, `error`, `fatal`, `panic`.
|
|options:
query:
base-path:
|The base path for all jaeger-query HTTP routes can be set to a non-root value, for example, `/jaeger` would cause all UI URLs to start with `/jaeger`. This can be useful when running jaeger-query behind a reverse proxy.
|/<path>
|
|===
.Sample Query configuration
[source,yaml]
----
apiVersion: jaegertracing.io/v1
kind: "Jaeger"
metadata:
name: "my-jaeger"
spec:
strategy: allInOne
allInOne:
options:
log-level: debug
query:
base-path: /jaeger
----