Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 663 Bytes

File metadata and controls

20 lines (17 loc) · 663 Bytes

OpenTelemetry

Trino supports sending OpenTelemetry traces as stated in the documentation.

To enable traces you need to add the following configOverrides. Please check the Trino documentation on other settings you can configure.

spec:
  coordinators:
    configOverrides: &configOverrides
      config.properties:
        tracing.enabled: "true"
        tracing.exporter.endpoint: http://jaeger-collector.default.svc.cluster.local:4317
  workers:
    configOverrides: *configOverrides