Skip to content

Commit

Permalink
Adding Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
amrutprabhu committed Apr 15, 2023
1 parent e2735fe commit f2f9955
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions distributed-tracing-spring-boot-opentelemetry-jaeger/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Distributed Tracing with OpenTelemetry and Jaeger

In this project I have figured out how we can integrate distributed tracing in a Spring Boot application.
We are using OpenTelemetry to export traces to Jaeger.

You can read about this on my website [https://refactorfirst.com](https://refactorfirst.com)

Once you build the application using `mvn clean verify`, You can start the application as two service instances.

Service 1
```
java -jar \
target/Distributed-Service-0.0.1-SNAPSHOT.jar \
--spring.application.name=Service-1 \
--server.port=8080
```

Service 2
```
java -jar \
target/Distributed-Service-0.0.1-SNAPSHOT.jar \
--spring.application.name=Service-2 \
--server.port=8090
```

0 comments on commit f2f9955

Please sign in to comment.