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