Run Jaeger's all-in-one using Docker. See: https://www.jaegertracing.io/docs/1.14/getting-started/.
docker run --rm --name jaeger -p6831:6831/udp -p16686:16686 jaegertracing/all-in-one:latest
Run the example opentracing-clj project using the Clojure CLI. Note the environment variables set for usage with testing Jaeger tracing.
JAEGER_SAMPLER_TYPE=const JAEGER_SAMPLER_PARAM=1 JAEGER_SERVICE_NAME=example-service clj -m example