raman bhadauria
raman bhadauria

Reputation: 155

Set up Jaeger with OpenTelemetry

I have built a sample app to understand the trace and span using OpenTelemetry. I want to see them in Jaeger UI. How to set up Jaeger with my application which uses OpenTelemetry for tracing?

Upvotes: 0

Views: 1273

Answers (1)

Constantin De La Roche
Constantin De La Roche

Reputation: 3320

To start a jaeger container:

docker run --rm --name jaeger -d -p 16686:16686 -p 6831:6831/udp jaegertracing/all-in-one

Then you should by able to access to the Jaeger UI at http://localhost:16686

Once you've have a Jaeger up and running, you need to configure a Jaeger exporter to forward spans to Jaeger. This will depends of the language used.

Here is the straightforward documentation to do so in python.

Upvotes: 3

Related Questions