Questions tagged [zipkin]

Zipkin is an open source distributed tracing system created by Twitter.

Zipkin is a distributed tracing system created and open-sourced by Twitter. It is modelled on Google Dapper. It is used to trace events passing through a distributed system.

Applications are instrumented to report timing data to Zipkin.

The Zipkin UI also presents a Dependency diagram showing how many traced requests went through each application. If you are troubleshooting latency problems or errors, you can filter or sort all traces based on the application, length of trace, annotation, or timestamp.

Once you select a trace, you can see the percentage of the total trace time each span takes which allows you to identify the problem application.

437 questions
-2
votes
1 answer

Create traceID in a non-Spring application

Small question on how to create traceID, but when the app is not Spring-based please. My application is the first, the initiator of a HTTP call. Therefore, the app can be considered as client. The destinations, the servers, are all Spring Boot…
PatPanda
  • 3,644
  • 9
  • 58
  • 154
-3
votes
1 answer

After I add spring-cloud-sleuth-zipkin-stream into pom.xml. The app can start.But i can't invoke my controller

First I want to integrate zipkin + rabbitmq into my project. So my pom.xml is below: org.springframework.cloud spring-cloud-sleuth-zipkin-stream
1 2 3
29
30