Skip to content

Latest commit

 

History

History

07-distributed-tracing-with-sleuth-and-zipkin

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Distributed Tracing with Sleuth and Zipkin

  • Start the zipkin
docker run -d -p 9411:9411 openzipkin/zipkin

  • HTTP GET - http://localhost:9090/student-service/api/student/getById/1

Response:

{
    "id": 1,
    "firstName": "Raj",
    "lastName": "Dave",
    "email": "raj_dave@yahoo.com",
    "addressResponse": {
        "addressId": 1,
        "street": "Delhi",
        "city": "Happy Street"
    }
}

Screenshot 2022-12-26 at 3 15 21 PM


  • You can also search by TraceId: 6bdc6fe79d0e92b7

Screenshot 2022-12-26 at 3 16 41 PM

Screenshot 2022-12-26 at 3 17 19 PM