Skip to content

Commit d09d87f

Browse files
authored
docs: Document how to ship OTEL traces (#781)
* docs: Document how to ship OTEL traces * typo
1 parent 7044ae9 commit d09d87f

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
= OpenTelemetry
2+
:description: Ship Trino traces and logs to OpenTelemetry
3+
:trino-docs: https://trino.io/docs/470/admin/opentelemetry.html
4+
5+
Trino supports sending OpenTelemetry traces as stated in {trino-docs}[the documentation].
6+
7+
To enable traces you need to add the following configOverrides.
8+
Please check the {trino-docs}[Trino documentation] on other settings you can configure.
9+
10+
[source,yaml]
11+
----
12+
spec:
13+
coordinators:
14+
configOverrides: &configOverrides
15+
config.properties:
16+
tracing.enabled: "true"
17+
tracing.exporter.endpoint: http://jaeger-collector.default.svc.cluster.local:4317
18+
workers:
19+
configOverrides: *configOverrides
20+
----

docs/modules/trino/partials/nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
** xref:trino:usage-guide/security.adoc[]
1111
** xref:trino:usage-guide/monitoring.adoc[]
1212
** xref:trino:usage-guide/log_aggregation.adoc[]
13+
** xref:trino:usage-guide/OpenTelemetry.adoc[]
1314
** xref:trino:usage-guide/query.adoc[]
1415
** xref:trino:usage-guide/overrides.adoc[]
1516
** xref:trino:usage-guide/catalogs/index.adoc[]

0 commit comments

Comments
 (0)