Replies: 5 comments
-
Jaeger does not support OTLP protocol at the moment. If you want to use OTLP send data first to OTEL collector and then from collector to Jaeger. The response from Zipkin exporter shows 400 Bad Request. it is most likely related to cors configuration. Please take a look at
|
Beta Was this translation helpful? Give feedback.
-
I am closing this as it does not seem like a Jaeger bug but rather configuration issue. |
Beta Was this translation helpful? Give feedback.
-
I tried the flags and am still getting the 400 err. Also, Is there another way to export jaeger tracer from an angular app? |
Beta Was this translation helpful? Give feedback.
-
I've seen a few deployments where people export telemetry from client apps (mobile or web), and in all those cases the architecture was to have a dedicated endpoint implemented by your backend to receive telemetry and then forward that telemetry to the monitoring backends. This way you can reuse all the infra you may already have in place between the client app and your backend, such as auth, regional LBs, DoS prevention, whatever else. The telemetry endpoint acts as just a proxy. |
Beta Was this translation helpful? Give feedback.
-
@pavolloffay |
Beta Was this translation helpful? Give feedback.
-
Unable to export traces from angular web app to a jaeger backend/collector.
Steps to reproduce 400 error:
docker run -d --name jaeger \ -e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \ -p 5775:5775/udp \ -p 6831:6831/udp \ -p 6832:6832/udp \ -p 5778:5778 \ -p 16686:16686 \ -p 14250:14250 \ -p 14268:14268 \ -p 14269:14269 \ -p 9411:9411 \ jaegertracing/all-in-one:1.29
Steps to reproduce 501 error:
docker run -d --name jaeger \ -p 5775:5775/udp \ -p 6831:6831/udp \ -p 6832:6832/udp \ -p 5778:5778 \ -p 16686:16686 \ -p 14268:14268 \ -p 14250:14250 \ -p 9411:9411 \ -p 55680:55680 \ -p 55681:55681 \ -p 4318:55680 \ jaegertracing/opentelemetry-all-in-one
Expected behavior
Traces to be exported to collector.
Screenshots
Beta Was this translation helpful? Give feedback.
All reactions