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

spring-cloud-sleuth Trace via spring-cloud-stream with rabbitmq-binder: how to finish the Trace

I have setup a demo project using spring-cloud-stream with RabbitMQ-binders and spring-cloud-sleuth. dependencies { annotationProcessor "org.springframework.boot:spring-boot-configuration-processor" // for @ConfigurationProperties, make sure…
Dirk Hoffmann
  • 1,444
  • 17
  • 35
0
votes
1 answer

zipkin spring integration error

I'm testing zipkin to spring boot integration but im facing error like below. The error seems to happen when it tries to send message to zipkin server java.lang.NoSuchMethodError: org.springframework.cloud.sleuth.Span.isShared()Z at…
Terry Cho
  • 608
  • 6
  • 14
0
votes
1 answer

how to exclude some calls with the Feign from tracing with the cloud sleuth

there's a microservice with spring-boot 1.5 which uses the Feign to communicate with others services, also there's spring-cloud-starter-zipkin which wrapped all calls through the Feign and sends tracing to zipkin server. The thing is i don't wanna…
slippery
  • 355
  • 2
  • 6
  • 13
0
votes
1 answer

ZipkinStreamServer via kafka, org.springframework.messaging.converter.MessageConversionException

I'm using spring-cloud-sleuth and zipkin. In the producer, it worked.I can see message in kafka topic see image. but in the consumer,some exception occur. 2018-02-07 16:40:06.466 ERROR 936 --- [ -L-1]…
yokv
  • 5
  • 3
0
votes
0 answers

Stackdriver Trace not showing traces from Zipkin by Express API correctly

In our cluster, we have set up a Zipkin collector for Stackdriver Trace (like this) so we can trace our apps. I am running the simple JavaScript web example that is offered. It works correctly when I configure the app to send the traces to the…
lennyklb
  • 1,307
  • 2
  • 15
  • 32
0
votes
1 answer

Heterogeneous Tracing in ZipKin

I have a heterogeneous(Java, php, python, C#.Net) micro-service system which was written by several teams. All communication happens over HTTP connections. I objective is to use Zipkin to trace the path of execution and identify the slowest…
Shawn
  • 2,679
  • 2
  • 15
  • 26
0
votes
1 answer

How do zipkin do to merge span for search trace request?

In the zipkin web ui, when the request url is http://10.19.138.169:9411/zipkin/api/v1/trace/ae60bd175a61e820 I find the return response is [ { "traceId": "ae60bd175a61e820", "id": "ae60bd175a61e820", "name": "client", …
wst_casd
  • 1
  • 1
0
votes
2 answers

How to set primary rabbit template and rabbit connection factory

I am facing some errors in a spring boot project where I am using spring integration to connect to RabbitMQ. I am doing the configuration for RabbitMQ in XML files like this:
0
votes
0 answers

Tracing entire route in Camel using Zipkin only works if trace headers are provided by the client

I'm using the camel-zipkin component to trace a request that flows between two different services: service-a: Camel application running on Spring Boot, acting as a simple HTTP proxy (for the purposes of this proof of concept). Zipkin support…
Chris Snyder
  • 437
  • 3
  • 14
0
votes
1 answer

how can i deploy a scaleable zipkin deployment?

I found that the bottleneck of zipkin is collector and API, are these two components stateless so i can deploy multi collectors and multi API? I want to deploy zipkin in kubernetes.
Pure White
  • 115
  • 1
  • 6
0
votes
1 answer

Zipkin stream server and client configuration where client is using multiple input/output channels

I have a client application with multiple channels as SOURCE/SINK. I want to send logs to Zipkin server. According to my understanding, if spring finds spring cloud stream in classpath, Zipkin client defaults to messaging instead of sending logs…
0
votes
1 answer

Is it possible to send x-request-id back when using istio with zipkin for distributed tracing?

Following the link Istio/Distributed tracing, I can get the tracing working with zipkin. Currently in order for the client/caller to know about the x-request-id (in case no id is sent, zipkin creates one), he needs to send it as a part of the…
Gaurav Abbi
  • 645
  • 9
  • 23
0
votes
1 answer

Could not connect zipkin docker container to mysql container

I have zipkin server running as spring boot app. I have exported jar to docker container. My dockerfile looks like: FROM openjdk:8-jdk-alpine WORKDIR / ADD zipkinmysql-0.0.1-SNAPSHOT.jar zipkinmysql-0.0.1-SNAPSHOT.jar EXPOSE 9411 CMD java -jar…
Gaurav
  • 117
  • 9
0
votes
1 answer

unable use spring cloud zipkin client

When I use: org.springframework.cloud spring-cloud-starter-zipkin The error log is: 2017-12-01 18:45:28,185:WARN main (AbstractApplicationContext.java:550) - Exception…
王世阳
  • 1
  • 1
0
votes
1 answer

Does AppDynamics log request and response

Can AppDynamics show the request or response being exchanged between different microservices systems. They show the call trace, but couldnt find the details of what is passing between the calls.
M S
  • 27
  • 6