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 Zipkin server data retention period

I am using Spring cloud Zipkin to trace calls with sample percentage 0.4. I am not using any persistent storage like MySQL or Cassandra. Could you please let me know how to set data retention period in Zipkin server e.g. I want to check only 6…
Debopam
  • 3,198
  • 6
  • 41
  • 72
0
votes
1 answer

How to support multiple samplers for multiple reporters?

When using Tracing.newBuilder() to create tracing, I found I can only specify 1 sampler and 1 reporter. I'm trying to have: 100% sample for reporter A 1% sample for reporter B Is it doable? Thanks Leon
anuni
  • 889
  • 10
  • 26
0
votes
1 answer

zipkin tracing openstack and osprofiler example

everyone I am trying to use Zipkin to trace services in OpenStack. I know it is a huge project for me. So I wonder if there is an open source library for Zipkin tracing OpenStack. I think I searched it before and if my mind does not cheat me, there…
Yuan
  • 65
  • 7
0
votes
1 answer

Jax-rs and amqp zipkin integration

I've been roaming the depths of the internet but I find myself unsatisfied by the examples I've found so far. Can someone point me or, show me, a good starting point to integrate zipkin tracing with jaxrs clients and amqp clients? My scenario is…
0
votes
2 answers

Sleuth + Zipkins with Elasticsearch

Can anyone point me towards the required/working configuration to use Elasticsearch as a storage type with Zipkins with Sleuth? pom.xml ' Spring Boot Zipkin Server
0
votes
1 answer

JSR305 OSGi Exports brave

The brave core module has added exports for javax.annotation;version="[3.0.0,4)", this causing issue when deploying OSGi applications using brave in JBoss Fuse - as the System bundle already exports javax.annotation;version="1.0". Wondering why…
Kamesh
  • 115
  • 11
0
votes
1 answer

Spring Boot Sleuth not sending traces to Zipkin

I'm trying to integrate sleuth into a Spring Boot application so that it will talk to a zipkin server for tracing, but I'm not having much luck. I've followed a few tutorials (link to tutorial) and have no problems getting them to talk to zipkin,…
0
votes
2 answers

Cannot see trace details in zipkin

we are using elasticsearch as the storage of zipkin, the dependency are as follows: org.springframework.boot spring-boot-configuration-processor
leo yang
  • 1
  • 1
0
votes
1 answer

How to setup a sleuth span to enable reporting to Zipkin whenever it is closed

I am trying to create a tracer, then a span from the tracer. Performing work. Then closing the span. I would expect that the close action will call spanReporter.report, which should post the data to an available Zipkin server (default…
Shommo
  • 1
0
votes
2 answers

Zipkin not showing trace logs

Hi Hoping somebody can help am trying to get a very basic implementation of zipkin working to get to grips with distributed tracing. I am using the spring boot to do this but cannot seem to get it to work. Nothing appears in the zipkin UI when I…
user1107753
  • 1,566
  • 4
  • 24
  • 36
0
votes
1 answer

How to replace storage from MySQL to Elasticsearch to deploy Zipkin Kubernetes

I am using the Kubernetes to deploy and trace data from application using zipkin. I am facing issue in replacing MySQL with Elasticsearch since I am not able to get the idea. Even the replacement is done on command line basis, using…
0
votes
1 answer

Zipkin - Distributed tracing

I have several services. I am instrumenting them using Zipkin. In each module, in build.gradle is added a dependency to Zipkin: compile('org.springframework.cloud:spring-cloud-starter-zipkin') In each module, in application.properties file are…
Adrian
  • 395
  • 3
  • 13
0
votes
1 answer

Using Hawkular for Rest services built using CXF

I am new to Distributed Tracing / Hawkular. And would like to experiment tracing for my distributed cxf rest services using hawkular. Will it be possible to trace cxf servcies using hawkular and if any one has doc or reference sample app, that will…
M S
  • 27
  • 6
0
votes
1 answer

How to persist zipkin data in ES 5.0?

TL;DR: I want to persist data in ElasticSearch, how i can do this? I have zipkin and Kafka and ElasticSearch. Kafka as transport for traces. When i send trace to Kafka, i got it in zipkin UI, it is persistent in memory. I want to persist all traces…
dikkini
  • 1,184
  • 1
  • 23
  • 52
0
votes
1 answer

Should I modify zipkin service libraries to pass generic feature flags?

We're looking to implement Zipkin in our stack. As I look into Zipkin it makes sense to me to extend the Zipkin system to handle generic flags as well. Observations: Any implementation of Zipkin needs to capture "B3" tagged values (headers in…
Frobbit
  • 1,652
  • 17
  • 30