website icon indicating copy to clipboard operation
website copied to clipboard

"Bring your own Jaeger" page uses incorrect OT collector schema

Open m1o1 opened this issue 4 years ago • 0 comments

The "Bring your own Jaeger" section suggests the following config:

jaeger:
  enabled: false

collector:
  config: |
    receivers:
      otlp:
        protocols:
          grpc:
          http:
      opencensus:
      zipkin:
      jaeger:
        protocols:
          grpc:
          thrift_http:
          thrift_compact:
          thrift_binary:
    processors:
      batch:
    extensions:
      health_check:
    exporters:
      jaeger:
        endpoint: my-jaeger-collector.my-jaeger-ns:14250
        insecure: true
    service:
      extensions: [health_check]
      pipelines:
        traces:
          receivers: [otlp,opencensus,zipkin,jaeger]
          processors: [batch]
          exporters: [jaeger]

However, the proper schema for the "insecure" field in the jaeger exporter is:

jaeger:
  tls:
    insecure: true

m1o1 avatar Apr 07 '22 22:04 m1o1