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
2
votes
0 answers

How to add docker volume for zipkin server

I'm trying to run Zipkin server with docker but how can I store the log files? or how can I store the volume? there is no clear documentation for that. Docker command : docker run -d -p 9411:9411 openzipkin/zipkin
Abd Abughazaleh
  • 4,615
  • 3
  • 44
  • 53
2
votes
0 answers

Spring cloud sleuth for propagating baggage with otel configuration

I am using spring cloud sleuth for propagating baggage with otel configuration. I want to send baggage with extra fields across applications. I am following this…
2
votes
0 answers

Unable to access Jaeger UI behind Traefik ingress

I have setup Jaeger as per the instructions from this post. I am unable to access the Jaeger UI in browser when I go to (http://myhost.com/jaeger). Instead of opening the dashboard the browser opens another website with domain myhost.com. I am…
Golide
  • 835
  • 3
  • 13
  • 36
2
votes
1 answer

TracingKafkaClientSupplier error "Implementations of KafkaClientSupplier should implement the getAdmin() method"

I'm upgrading a Spring Boot application to Boot 2.6.1, Cloud 2021.0.0 and Cloud Stream 3.2.1. This application has a bunch of KStreams such as: @Bean fun processEvent() = Function, KStream
2
votes
1 answer

Is there a better alternative to Zipkin dependency graph for springboot applications?

I am trying to find out if there exists a tool that can show realtime traffic flow for springboot + springcloud microservices for my architecture. While searching for such tool, I pondered upon Zipkin's dependency graph. Is it good enough? Or are…
Shayan Ahmad
  • 952
  • 8
  • 17
2
votes
1 answer

Spring Cloud Sleuth Traces w/ Gradle not showing up in Zipkin

I have a Spring Cloud Sleuth + Stream app working and sending to my local OpenZipkin (docker) when the app uses maven, however when I try to run an gradle spring boot app then Zipkin doesn't display the traces. The interesting thing is that the…
Mrc0113
  • 453
  • 3
  • 13
2
votes
1 answer

What's the valid traceId for Brave?

What is valid traceId in Brave? As I understand 16 and 32 length values are valid: https://github.com/openzipkin/brave/blob/master/brave/README.md#128-bit-trace-ids If service receives 15 lengths (or less) traceId in the header. Is it valid for…
Vojik
  • 21
  • 2
2
votes
2 answers

Add Service name in the Opentelemetry for a JavaScript application

I am trying to integrate Opentelemetry (Otl) in my Angular application to trace the frontend calls. Everything works fine and I am able to see the calls in the Zipkin. But the only problem is that it is showing it as "unknown_service" in the Zipkin…
Raja
  • 3,477
  • 12
  • 47
  • 89
2
votes
1 answer

Disable Brave tracing library?

I'm setting up an application that uses Brave to perform tracing of processing spans. Configuring it to send traces is relatively straightforward, but what I want to do is make tracing optional - that is, most of the time, nobody wants or cares…
nsayer
  • 16,925
  • 3
  • 33
  • 51
2
votes
0 answers

Is there any way to disable sampling decision made by istio envoy proxy (zipking)?

Is there any way to disable sampling decision made by istio envoy proxy (zipking) ?
2
votes
2 answers

Spring Boot 2.4.4 failed to start after upgrading

I am upgrading Spring boot application, which is currently working on 2.1.13 to 2.4.4. After upgrade, spring boot application is not starting. Few of the modules used in application are as…
2
votes
3 answers

Opentelemetry with Zipkin exporter is not working as expected. Throws StatusRuntimeException: UNAVAILABLE: io exception

I am very new to using OpenTelemetry and have just tried configuring it to send traces to my Zipkin server. Unfortunately , after configuring the agent by specifying zipkin exporter details , I could see an exception in the console. I used Petclic…
Kokki
  • 63
  • 1
  • 8
2
votes
1 answer

Java Spring Sleuth Zipkin - X-Span-Export not being displayed

Small question as I am not able to see X-Span-Export in my logs please. I have an app, which is Java based, with Springboot 2.4.2, with Sleuth and Zipkin. In my log4j2.xml, I configured such: %d{MM-dd…
PatPanda
  • 3,644
  • 9
  • 58
  • 154
2
votes
1 answer

Spring cloud sleuth 3.0.1 generate traceid & spanid in logs using logback

I am using spring-cloud-starter-sleuth:3.0.1 and spring-cloud-sleuth-zipkin:3.0.1 to generate traceId and spanId in log file. I was able to get those in logs using 2.2.7.RELEASE version. I have tried using logback but not able to have with 3.0.1…
Ronak
  • 21
  • 3
2
votes
2 answers

Zipkin is not connecting to RabbitMQ

Please, notice that this question can seem a duplicate of this one, but it's not the case. Below I include my rational I'm trying to add Sleuth/Zipkin trace to my project. For this I have followed this tutorial. My project is already using RabbitMQ…
Sourcerer
  • 1,891
  • 1
  • 19
  • 32