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

Is it possible to read all rows of Cassandra partition in one Spark worker?

I am trying to optimize Zipkin Dependencies Spark job to run in fewer stages by minimizing the number of reduceByKey steps it does. The data is read from the following table: CREATE TABLE IF NOT EXISTS zipkin.traces ( trace_id bigint, ts …
0
votes
1 answer

Zipkin failing to start

I am trying to install Zipkin on CentOS. When I try to run bin/collector, I get the following errors: [info] Loading project definition from /home/vagrant/zipkin/project [warn] Multiple resolvers having different access mechanism configured with…
mangusbrother
  • 3,988
  • 11
  • 51
  • 103
0
votes
1 answer

Issue while installing twitter zipkin

I am trying to install zipkin, after following the steps given (https://github.com/twitter/zipkin/blob/master/doc/install.md), when I access http://localhost:8080/ on the web browser, instead of the zipkin UI, it gives, *Channel Exception* at remote…
Aman Jain
  • 3
  • 2
-1
votes
1 answer

Is there a way to automatically remove old trace Zipkin entries in Cassandra?

This is specifically for Zipkin's Cassandra storage connector. Is there a way of automatically removing old traces? I've search on the Web but I didn't find information about this.
-1
votes
1 answer

ApplicationContextAware is not working in spring-boot

I'm trying to use Brave Tracer Inside the non component class. This code is working fine in main project, setting context and getting context both are printing. But when I generate jar file and import it to different project 2 and run it, Only…
-1
votes
1 answer

How to specify which paths should be traced by Sleuth with Zipkin?

I'm looking for some information about how to specify which endpoints should be traced by Sleuth. By far, all i've found in sleuth docs was information about how to specify which endpoints shouldn't be traced. I'm going in the opposite direction,…
-1
votes
1 answer

configure zipkin to store in MySQL

I am currently trying to configure Zipkin to store data in MySQL. I am running zipking using jar zipkin-xx.xx.x-exec.jar MySQL connection has been tested. after I start Zipkin with the parameters: java -jar zipkin-xx.xx.x-exec.jar STORAGE_TYPE=mysql…
Luke Mao
  • 87
  • 6
-1
votes
1 answer

How to retrieve spanid using java in Sleuth version 2.0.4

I need to know the SpandId in java code but I don't know how to get it. I had been searching and I found that many people refer to Tracer class, but it is not available at sleuth 2.0.4. Does anybody know how to get the SpandId using sleuth…
-1
votes
1 answer

Tracing of spring boot microservice application

what are the best practices in tracing of spring boot 2 microservice applications? I found some 2 years old tutorials where tracing server was as another spring boot application with following dependencies:
-1
votes
1 answer

Spring-Cloud-Zipkin runs incorrectly about 'Exception in thread "main" java.lang.ClassNotFoundException'

I am new in spring-cloud.My projects are about spring-cloud-config, spring-cloud-eureka, spring-cloud-zipkin,I am running projects locally and it is normal.When I put my projects in Ubuntu, the project 'spring-cloud-zipkin' runs incorrectly. The…
zppcc
  • 1
-1
votes
1 answer

Zipkin Slueth generate different traces for same different thread(in Same request)

I am using Zipkin Slueth with Spring boot. Now my zipkin is working fine in normal case but when I spawn 3 new threads from main thread, it generate different traces and not 1 trace. So i am unable to see the complete request. Same starts working…
Ankit Bansal
  • 2,162
  • 8
  • 42
  • 79
-1
votes
1 answer

use Zipkin+ElasticSearch+Sleuth+rabbitMQ can't find "services"

SpringCloud version:Dalston.SR1, rabbitMQ version:3.6.10,ElasticSearch version:6.2.4 There was nothing unusual when I use MySQL as a storage. Now I use ElasticSearch.I can't find any services. I lost something? here is the…
-1
votes
1 answer

hosting zipkin inside proxy/zuul-gateway

zipkin is a tool for tracing request as well as tracking the span of time a service took to process the request useful in multi-service projects it doesnt require much effort for setting up u just have to add zipkin dependency in your services and…
RITESH GUPTA
  • 93
  • 2
  • 11
-1
votes
1 answer

Can spring Sleuth be used with Scala?

I'm developing event-driven Microservices which I use Java and Scala. I used Spring Sleuth and Zipkin for request tracing with Java services, can I use Spring Sleuth with Scala? if not how can I generate trace id and span id in Scala to be sent to…
Amr Khaled
  • 421
  • 1
  • 4
  • 5
-1
votes
1 answer

NiFi - Distributed Tracing capability

We have integrated NiFi within our product suits. We would like to track a user request by "Trace Id", which spans across different components. Do let me know whether NiFi have some capability to support something similar to ZipKin. Thanks Senthil.
1 2 3
29
30