We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Installing Jaeger

The first thing we'll need to begin tracing is the Jaeger web service. Jaeger provides the frontend we'll be using to search for and interact with our gathered traces.

Assignment

Add Jaeger to your local stack so Linko can export traces.

  1. jaeger:
      image: jaegertracing/all-in-one:latest
      ports:
        - "16686:16686"
        - "4317:4317"
        - "4318:4318"
    
  2. docker compose up
    

There's no data to view just yet – we'll explore the interface more fully after we've set up instrumentation.

Run and submit the CLI tests from the root of the Linko repo.