Skip to content

Commit cd8aae3

Browse files
authored
Create readme.md
1 parent 402a95c commit cd8aae3

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

Diff for: 11.distributed-tracing/readme.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Distributed Tracing
2+
3+
GET -> `http://localhost:8091/customer/500/contactdetails`
4+
5+
Response
6+
7+
```json
8+
{
9+
"contactId": "500",
10+
"contactName": "Alexis Rose",
11+
"postalCode": "30010"
12+
}
13+
```
14+
15+
GET -> `http://localhost:8092/customer/500/vehicledetails`
16+
17+
Response
18+
19+
```json
20+
{
21+
"customerId": "500",
22+
"carType": "Lincoln Contential",
23+
"licensePlate": "SNUG30"
24+
}
25+
```
26+
27+
GET -> `http://localhost:9090/customer/500`
28+
29+
Response
30+
31+
```json
32+
{
33+
"contactId": "500",
34+
"contactName": "Alexis Rose",
35+
"postalCode": "30010",
36+
"carType": "Lincoln Contential",
37+
"licensePlate": "SNUG30"
38+
}
39+
```

0 commit comments

Comments
 (0)