Tracing Oracle Helidon Application with Zipkin
Hello Folks,
Today I'm sharing my learning on "Tracing Helidon Application with Zipkin".
Tracing is a easy concept where where we can trace our application request-responses.
Step 1:
Add maven dependencies.
<dependency>
<groupId>io.helidon.microprofile.tracing</groupId>
<artifactId>helidon-microprofile-tracing</artifactId>
</dependency>
<dependency>
<groupId>io.helidon.tracing</groupId>
<artifactId>helidon-tracing-zipkin</artifactId>
</dependency>
Step 2:
add one statement in microprofile-config.properties

Comments
Post a Comment