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
0
votes
1 answer

Problem with Jaeger, logback and Sleuth working together

I was developing a Spring Boot application in which the loging is done by logback and Jaeger is integrated for instrumentation. Myservice.java @SpringBootApplication public class Myservice{ public static void main(String[] args) { …
das
  • 669
  • 2
  • 12
  • 22
0
votes
1 answer

Project build error: 'dependencies.dependency.version' for io.zipkin.java:zipkin-autoconfigure-ui:jar is missing

I am developing Microservices specifically "zipkin-service". I have taken a reference from link: https://www.baeldung.com/tracing-services-with-zipkin. Could anyone please guide what's the issue ? When I added below dependencies, then I get the…
Jeff Cook
  • 7,956
  • 36
  • 115
  • 186
0
votes
1 answer

Zipkin Integration With RabbitMQ for tracing

I have two Microservices (Spring boot application) . For tracing I am using spring-cloud-sleuth-zipkin along with zipkin. Service A is producer and send message using RabbitMQ broker. On other hand Service B is the…
Noshaf
  • 207
  • 7
  • 21
0
votes
1 answer

Spring Initializer - Zipkin dependencies missing?

In spring initializer i couldn't find following dependencies zipkin ui, zipkin stream, stream rabbit.I know it was available but i don't know why they've deprecated those dependencies. Are there any other alternatives dependencies spring initializer…
Bala
  • 461
  • 7
  • 16
0
votes
0 answers

Spring Cloud Sleuth is using same trace Id

I have enabled the sleuth in my application, and I started getting the log with traceId and spanId but I am getting the same traceId for all the various logs. My input source is a message Listener, so it might be all handled with a single thread, so…
krmanish007
  • 6,749
  • 16
  • 58
  • 100
0
votes
1 answer

Docker-compose: Exposing Prometheus metrics on Openzipkin

I am running open-zipkin with docker-compose for testing purposes. The end goal is to have open-zipkin running so that I can successfully do a curl localhost:9411/prometheus on the zipkin container itself and view prometheus metrics. How can I…
thewooster
  • 807
  • 1
  • 9
  • 23
0
votes
1 answer

The message attribute in the JSON log has backslash

I am using spring boot in a project and currently exploring the logging behaviour. For that I'm using the zipkin service. My logback.xml is as follows:
Swapnil Pandey
  • 577
  • 3
  • 8
  • 25
0
votes
1 answer

zipkin asynch span every second

We have a spring-boot application (spring-boot-starter-parent-2.0.0.RELEASE) using spring-cloud-starter-zipkin for writing "spans" to zipkin. We use spring-integration too (through spring-boot-starter-integration) and we have added an integration…
jalogar
  • 1,604
  • 19
  • 27
0
votes
1 answer

Send log messages as JSON

I am using spring boot in a project and currently exploring the logging behaviour. For that I'm using the zipkin service. I have exported my logs to a json file using proper…
Swapnil Pandey
  • 577
  • 3
  • 8
  • 25
0
votes
0 answers

spring-cloud-sleuth with Zipkin with Kafka

I'm using spring-cloud's sleuth with zipkin with kafka. here is my pom.xml configure. org.springframework.cloud spring-cloud-starter-zipkin
0
votes
1 answer

Name an external dependency in Zipkin to have it drawn

I am using Zipkin with Spring Sleuth to display traces. When I use it locally, http://localhost:9411/zipkin/dependency/ displays a nicely created graph of dependencies within the eco-system. Sometimes, backends from outside that eco-system get…
user3105453
  • 1,881
  • 5
  • 32
  • 55
0
votes
1 answer

Sleuth instrumentation of Spring cloud stream messages is lost when using zipkin + kafka

I have the following setup : several Spring Cloud Edgware services with most notably the spring-cloud-starter-zipkin and spring-cloud-stream-binder-kafka dependencies. a Zipkin server running the openzipkin/zipkin:2.8 docker image I see traces…
0
votes
1 answer

Spring Cloud Zipkin with RabbitMQ not persisting in MYSQL

I have done all the possible matches and mix-up of dependency and still not able to record traces in zipkin ans store it in MYSQL using RabbitMQ. Still i can see the trace and span id's in console and nothing beyond this. Someone please take a look…
0
votes
1 answer

Jaeger tracing with stackdriver

I am hosting my application on GCP and I want to use stackdriver as my backend storage for trace spans with jaeger collectors. I can't seem to find anything related to that. In GCP I can find clearly that they support zipkin. I am not sure what to…
thelinuxer
  • 658
  • 1
  • 8
  • 28
0
votes
1 answer

Span Customization with Google Cloud Sleuth 2

Is there a way to customize the Span inject and extractor for spring cloud sleuth 2? In the documentation of the version 1.2 i found a way that is not available on the new version(2). I think is because now its use Zipkin brave to take care of Span,…