Skip to content
New issue

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

Added new Kiali Server Configuration settings for OpenTelemetry exporter #673

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions crd-docs/cr/kiali.io_v1alpha1_kiali.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,11 @@ spec:
enabled: true
port: 9090
tracing:
collector_type: "jaeger"
collector_url: "http://jaeger-collector.istio-system:14268/api/traces"
enabled: false
otel:
protocol: "http"
port: 20001
web_fqdn: ""
web_history_mode: ""
Expand Down
10 changes: 10 additions & 0 deletions crd-docs/crd/kiali.io_kialis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1269,12 +1269,22 @@ spec:
description: "Settings that control how the Kiali server itself emits its own tracing data."
type: object
properties:
collector_type:
description: "The collector type to use. Value must be one of: `jaeger` or `otel`."
type: string
collector_url:
description: "The URL used to determine where the Kiali server tracing data will be stored."
type: string
enabled:
description: "When true, the Kiali server itself will product its own tracing data."
type: boolean
otel:
description: "Specific properties when the collector type is `otel`."
type: object
properties:
protocol:
description: "Protocol. Supported values are: `http`, `https` or `grpc`."
type: string
port:
description: "The port that the server will bind to in order to receive console and API requests."
type: integer
Expand Down
3 changes: 3 additions & 0 deletions roles/default/kiali-deploy/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,11 @@ kiali_defaults:
enabled: true
port: 9090
tracing:
collector_type: "jaeger"
collector_url: http://jaeger-collector.istio-system:14268/api/traces
enabled: false
otel:
protocol: "http"
port: 20001
web_fqdn: ""
web_history_mode: ""
Expand Down
Loading