Skip to content
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
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