Skip to content

docs: Document how to ship OTEL traces #781

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
20 changes: 20 additions & 0 deletions docs/modules/trino/pages/usage-guide/OpenTelemetry.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
= OpenTelemetry
:description: Ship Trino traces and logs to OpenTelemetry
:trino-docs: https://trino.io/docs/470/admin/opentelemetry.html

Trino supports sending OpenTelemetry traces as stated in {trino-docs}[the documentation].

To enable traces you need to add the following configOverrides.
Please check the {trino-docs}[Trino documentation] on other settings you can configure.

[source,yaml]
----
spec:
coordinators:
configOverrides: &configOverrides
config.properties:
tracing.enabled: "true"
tracing.exporter.endpoint: http://jaeger-collector.default.svc.cluster.local:4317
workers:
configOverrides: *configOverrides
----
1 change: 1 addition & 0 deletions docs/modules/trino/partials/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
** xref:trino:usage-guide/security.adoc[]
** xref:trino:usage-guide/monitoring.adoc[]
** xref:trino:usage-guide/log_aggregation.adoc[]
** xref:trino:usage-guide/OpenTelemetry.adoc[]
** xref:trino:usage-guide/query.adoc[]
** xref:trino:usage-guide/overrides.adoc[]
** xref:trino:usage-guide/catalogs/index.adoc[]
Expand Down