Carlos Aguni

Highly motivated self-taught IT analyst. Always learning and ready to explore new skills. An eternal apprentice.


[Jaeger] Dmytro - Quarkus Backend development with Java and GraalVM

02 Sep 2021 »
docker run -dit --name jaeger \
    -p 5775:5775/udp \
    -p 6831:6831/udp \
    -p 6832:6832/udp \
    -p 5778:5778 \
    -p 16686:16686 \
    -p 14268:14268 \
    jaegertracing/all-in-one:latest
mvn io.quarkus:quarkus-maven-plugin:1.3.0.Final:create \
    -DprojectGroupId=tech.donau \
    -DprojectArtifactId=opentracing \
    -DclassName="tech.donau.opentracing.TracedResource" \
    -Dpath="/hello" \
    -Dextensions="quarkus-smallrye-opentracing"
quarkus.jaeger.service-name=myservice
quarkus.jaeger.sampler-type=const
quarkus.jaeger.sampler-param=1
quarkus.log.console.format=%d{HH:mm:ss} %-5p traceId=%X{traceId}, spanId=%X{spanId}, sampled=%X{sampled} [%c{2.}] (%t) %s%e%n