Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
ganny26 committed Mar 9, 2022
1 parent 1338a75 commit 00521b6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### Distributed Tracing Java Sample

This project demonstrates how to implement distributed tracing in java spring boot application with the help for below microservices

- [order-service](order-service)
- [payment-service](payment-service)
- [user-service](user-service)
Expand All @@ -27,6 +28,7 @@ Run `http://localhost:8761`
Start individual microservice using below commands

1. UserService

```
cd user-service
mvn clean install -Dmaven.test.skip
Expand All @@ -35,6 +37,7 @@ sh ./script/start.sh
```

2. OrderService

```
cd order-service
mvn clean install -Dmaven.test.skip
Expand All @@ -43,15 +46,27 @@ sh ./script/start.sh
```

3. PaymentService

```
cd payment-service
mvn clean install -Dmaven.test.skip
sh ./script/start.sh
```

4. Demo UI

To capture traces from above microservice run the [sample-ui](ui) application using below commands

```
npm install -g serve
serve -l 9090 ui
```

Open http://localhost:9090 and perform actions that will capture traces to signoz

![DemoUI](demo-ui.png)

View traces, logs and metrics:

- View the metrics in signoz, go to http://localhost:3301/application
- View the metrics in signoz, go to http://localhost:3301/application
Binary file added demo-ui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 00521b6

Please sign in to comment.