Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 595 Bytes

File metadata and controls

39 lines (30 loc) · 595 Bytes

Distributed Tracing

GET -> http://localhost:8091/customer/500/contactdetails

Response

{
    "contactId": "500",
    "contactName": "Alexis Rose",
    "postalCode": "30010"
}

GET -> http://localhost:8092/customer/500/vehicledetails

Response

{
    "customerId": "500",
    "carType": "Lincoln Contential",
    "licensePlate": "SNUG30"
}

GET -> http://localhost:9090/customer/500

Response

{
    "contactId": "500",
    "contactName": "Alexis Rose",
    "postalCode": "30010",
    "carType": "Lincoln Contential",
    "licensePlate": "SNUG30"
}