Skip to content

Files

Latest commit

2f73502 · Dec 5, 2022

History

History
37 lines (27 loc) · 809 Bytes
·

README.md

File metadata and controls

37 lines (27 loc) · 809 Bytes
·

Jaeger Example

This is a simple example that demonstrates how to use the OpenTelemetry SDK to instrument a simple application and export to a Jaeger backend.

How to run

Prerequisites

  • Java 1.8+
  • Docker 19.03
  • Jaeger 1.16 - Link

1 - Compile

../gradlew shadowJar

2 - Run Jaeger

docker run --rm -it --name jaeger\
  -e COLLECTOR_OTLP_ENABLED=true \
  -p 4317:4317 \
  -p 16686:16686 \
  jaegertracing/all-in-one:1.39

3 - Start the Application

java -cp build/libs/opentelemetry-examples-jaeger-0.1.0-SNAPSHOT-all.jar io.opentelemetry.example.jaeger.JaegerExample http://localhost:4317

4 - Open the Jaeger UI

Navigate to http://localhost:16686