Replies: 3 comments 2 replies
-
Hey there, @eilaytal! I'm here to assist you with any bugs, questions, or contributions you have. Let's tackle this migration together! To migrate from a Jaeger Agent to a Collector-only setup using OTLP as a DaemonSet, you'll need to update your configuration and be aware of some potential issues. Configuration Update
Potential Issues
If these functionalities are required, consider deploying an OpenTelemetry Collector as a host agent [1][2]. By addressing these configuration changes and potential issues, you can successfully migrate to a Collector-only setup using OTLP as a DaemonSet. |
Beta Was this translation helpful? Give feedback.
-
@dosu I've updated my configuration as follows: agent:
enabled: false
collector:
enabled: true
strategy: DaemonSet
image:
repository: jaegertracing/jaeger-collector
service:
type: ClusterIP
otlp:
grpc:
port: 4317
name: otlp-grpc
http:
port: 4318
name: otlp-http However, the collector is not deploying as a DaemonSet. Could you provide any insights on what I might be missing? I appreciate your help! |
Beta Was this translation helpful? Give feedback.
-
Hi all,
I’m using Jaeger with the agent running as a DaemonSet to collect traces from each node and forward them to the collector. Here's my current config:
Since the agent may be deprecated, I’m looking to migrate to a collector-only setup (using OTLP) as a DaemonSet.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions