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

Sleuth/zipkin with ControllerAdvice is not working

I found there is an old issue Sleuth/Zipkin tracing with @ControllerAdvice, but I meet the same problem with the latest version(spring-cloud-starter-zipkin:2.1.0.RELEASE), I debug it and find that the error is null, so zipkin just guess with…
Jay Fantasy
  • 23
  • 1
  • 4
0
votes
2 answers

send only info level logs to zipkin

In the micro-services based architecture , I have a services which helps me to fetch order details . Internally order details fetches - customer details , delivery details , product details . We have all services developed and the architecture is…
Ashish Shetkar
  • 1,414
  • 2
  • 18
  • 35
0
votes
2 answers

Docker swarm and communication between containers

I have a very big problem I'm struggling with for 3 days. I use docker swarm on the remote server. 20 microservices are in the same network NetA and stack StackA. Now I want to add Zipkin and Sleuth to my microservices to trace all requests. All…
Matley
  • 1,953
  • 4
  • 35
  • 73
0
votes
0 answers

Combining logs from two different servers

I have a distributed process which runs across two different servers (A and B) and I get two different log files A.log and B.log, I need this merged into a single file. I have referred to following links but I am unable to get a merged file from…
sah1
  • 380
  • 1
  • 6
  • 23
0
votes
2 answers

Dependency convergence from the same dependency

i have s basic spring boot/cloud application based on 1.5.17.RELEASE Camden.SR7 But i need spring-cloud-sleuth-zipkin with at least 1.3.x. By importing…
rom
  • 360
  • 1
  • 13
0
votes
1 answer

OpenTracing not activating for Sleuth-Zipkin in Spring Boot App

Spring Doc says Spring Cloud Sleuth is compatible with OpenTracing. If you have OpenTracing on the classpath, we automatically register the OpenTracing Tracer bean. If you wish to disable this, set spring.sleuth.opentracing.enabled to false I…
0
votes
3 answers

Monitoring application business logic with zipkin tracking information

Actually I have a microservice architecture as follows So I have 4 microservices and for every microservice I send a notification to zipkin when starts and finish it's objective. I have to monitor my product to make sure all requested checkouts…
deFreitas
  • 4,196
  • 2
  • 33
  • 43
0
votes
1 answer

How to name Span in Spring Sleuth in a reactive calling chaining

I have Spring Cloud Sleuth (2.0.2.RELEASE) working within a (partially) reactive class in some web based request/response system. The code is something like this: private static final Scheduler PROCESSING_SCHEDULER =…
0
votes
2 answers

Zipkin + Elasticsearch (ELK) not create index

Hi everyone! I have "ELK" (6.4.2) working perfectly with filebeat, metricbeat, packetbeat and winlogbeat in CentOS 7 x86_64 (Kernel 3.10.0-862.11.6.el7.x86_64). I'm trying to integrate zipkin + elk (see https://logz.io/blog/zipkin-elk/), but…
0
votes
1 answer

Group coordinator lookup failed: The coordinator is not available

i use zipkin with kafka zipkin.collector.kafka.bootstrap-servers: 172.16.5.147:9092,172.16.5.146:9092,172.16.5.145:9092 and work log: 2018-10-12 11:32:27.005 DEBUG 20073 --- [pool-5-thread-1] o.a.k.c.c.i.AbstractCoordinator : [Consumer…
Kerwin Bryant
  • 137
  • 1
  • 3
  • 11
0
votes
1 answer

Spring cloud sleuth how to allow certain URL pattern alone to export traces to zipkin

Requirement is to export traces for requests that matches url pattern to zipkin from apps. I got to know that there are options in sleuth properties to exclude traces from exporting. But my case is the opposite of it. Include traces for exporting…
adhithyan
  • 41
  • 6
0
votes
0 answers

Publish spans to Zipkin via Kafka using Sleuth

I have the following problem: i need to send traces to Zipkin via Kafka using Sleuth. Based on what i read in the…
Charles
  • 570
  • 11
  • 29
0
votes
2 answers

Deletion of service name in Zipkin dropdown list

I have the following problem: i have added numerous services in Zipkin but now i want to remove some of them. I keep the data in memory so no persistency involved there. Is there any way to delete a service name from Zipkin's service name dropdown…
Charles
  • 570
  • 11
  • 29
0
votes
1 answer

why services are not shown in zipkin?

I use Spring boot: 1.5.16 Spring cloud: Edgware.RELEASE Java: 1.8 My Sampler looks like that: @Bean public Sampler sampler(){ return new AlwaysSampler(); } In Eureka everything seems well: But my problem is that in Zipkin I can't…
grep
  • 5,465
  • 12
  • 60
  • 112
0
votes
2 answers

How to track the span through different dependencies with Sleuth?

I'm learning how to track my distributed processes through all the microservices. I've been playing with Sleuth, Zipkin and different microservices, and it works fantastic! But when I try to do the same in a project interacting between the different…
JUAN CALVOPINA M
  • 3,695
  • 2
  • 21
  • 37