Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address jaeger receiver deprecation warning #4282

Closed
srikanthccv opened this issue Dec 22, 2023 · 1 comment
Closed

Address jaeger receiver deprecation warning #4282

srikanthccv opened this issue Dec 22, 2023 · 1 comment

Comments

@srikanthccv
Copy link
Member

2023-12-22T11:30:55.630Z\twarn\[email protected]/factory.go:49\tjaeger receiver will deprecate Thrift-gen and replace it with Proto-gen to be compatbible to jaeger 1.42.0 and higher. See open-telemetry/opentelemetry-collector-contrib#18485 for more details.\t{"kind": "receiver", "name": "jaeger", "data_type": "traces"}

@LHozzan
Copy link

LHozzan commented Feb 6, 2024

We are not using Jaeger and Zipkin, so, I disabled them. Looks like (working with "daemonset" and "deployment"):

ports:
  jaeger-compact:
    enabled: false
  jaeger-thrift:
    enabled: false
  jaeger-grpc:
    enabled: false
  zipkin:
    enabled: false
  metrics:
    enabled: true

config:
  exporters:
    logging:
      loglevel: info
    otlp:
      endpoint: opentelemetry-gateway:4317
      tls:
        insecure: true
  service:
    pipelines:
      traces:
        exporters:
          - otlp
        receivers:
          - otlp
    telemetry:
      logs:
        level: "warn"
  receivers:
    jaeger: null
    zipkin: null

The change get rid of the warning message.
Hope, that helps you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants