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
1
vote
0 answers

How to generate and propagate traceId for zipkin js

I use Zipkin js to get insight into how a particular service is too slow. But I don't have a view of the whole architecture because the b3 headers are not propagated between apps. On each app, a new traceid and spanid are generated. So, I'd like to…
jonn
  • 660
  • 2
  • 7
  • 18
1
vote
1 answer

How to deal with the build error while using sping cloud sleuth?

I am working on one project which uses java messaging service(JMS) and it uses activemq connection factory implementation for it. Now I want to use spring-cloud-starter-sleuth to instrument the application for tracing. But I am not able to do it as…
1
vote
0 answers

unable to see 'dependencies' inside zipkin UI dependencies tab

I am using opentelemetry java agent to send the traces from a java application to zipkin and i am able to see all the traces as expected. But when I click on "Dependencies" tab in zipkin UI, i dont see any dependency metrics on it. Can someone…
Roopesh
  • 17
  • 3
1
vote
1 answer

Increase Java HeapSpace in Zipkin Docker Container

I am using a docker command to run zipkin and increase the heap space. The command I am using is: docker run \ -e JAVA_OPTS="Xms1g -Xmx1g -XX:+ExitOnOutOfMemoryError" \ --name zipkin -p 2005:9411 -d openzipkin/zipkin:latest The output is…
Umang Mundhra
  • 133
  • 1
  • 1
  • 8
1
vote
0 answers

how to solve kong first reqtest delay problem, how to restrict access to some routes, how to do instrumentaion

I have a microservices structure with a few services based on python/Django The structure is as below: user <===> kong <===> alpha <===> kong <===> beta <===> kong <===> gamma this is my kong.yml declarative configuration: _format_version:…
Amin Ba
  • 1,603
  • 1
  • 13
  • 38
1
vote
1 answer

SpringBoot Sleuth/Zipkin Tracing: Issue adding a client, for Zipkin Server

Small question regarding a Java 11 + SpringBoot 2.6.7 web application, in the context of Zipkin please. I have a very simple micro services architecture SpringBoot repo that can be found here:…
PatPanda
  • 3,644
  • 9
  • 58
  • 154
1
vote
0 answers

Zipkin : zipkin2.reporter.AsyncReporter$BoundedAsyncReporter flush Dropped 1 spans due to SocketTimeoutException(connect timed out)

Small Zipkin question, how to set the time out please? I am writing a very simple piece of code, where I am the client, and sending requests to a server. import brave.Span; import brave.Tracing; import zipkin2.reporter.AsyncReporter; import…
PatPanda
  • 3,644
  • 9
  • 58
  • 154
1
vote
1 answer

Java Brave Zipkin: TraceId unchanged for each different http requests

Small tracing question regarding Java and Brave/Zipkin please. I am having a very small program, using Java 11 and Brave with versions as follow: io.opentracing.brave
PatPanda
  • 3,644
  • 9
  • 58
  • 154
1
vote
1 answer

Opentelemetry set up for Angular Project- Export to Zipkin Problem

I have a hello-world Angular project that I'm trying to set up opentelemetry on it. There is no back end and I just want to see the traces for the frontend. I followed the instruction provided by the following library but I don't get the traces on…
Matt
  • 33
  • 5
1
vote
2 answers

Sleuth not able to generate traces for JDBCTemplate access

I am exploring slueth for enabling tracing in our Apps. I get the API to API call logs in zipkin but I don't get any other JDBC calls logged. I have added below to my application.yml spring: sleuth: jdbc: # enable logging for…
Tarun Lalwani
  • 142,312
  • 9
  • 204
  • 265
1
vote
0 answers

TCP 127.0.0.1:9411: connect: connection refused - DOCKER COMPOSE - WINDOWS

I have spring application running with Build Ops (opentelemetry-javaagent) generating otel scans. And working on to export traces into Jaeger/Zipkin and Splunk Collector. my docker-compose file: version: "3.3" services: zipkin: image:…
naveen
  • 11
  • 4
1
vote
0 answers

Zipkin Combining Spans

I am new to Zipkin and am trying to understand how to view all spans in a trace. On the trace query page for Zipkin I am seeing a trace come through with the expected 5 spans. The problem is that when I click "SHOW" to view the individual spans, it…
FreakyDan
  • 559
  • 1
  • 7
  • 24
1
vote
1 answer

How to get request duration from sleuth tracer

I have my setup with sleuth (spring-cloud-starter-sleuth) and zipkin (spring-cloud-sleuth-zipkin) which works perfectly fine. At the same time I would like to log to ELK duration of the requests. I was trying to get this information from currentSpan…
Bartek
  • 41
  • 2
1
vote
0 answers

How can I view a summary(average time of individual services) of all traces over zipkin containing 3 services(with node js)?

I have a node js application which includes 3 API calls (3 services). I am sending the traces to zipkin UI. There I can view individual traces and time spans of particular services. But I want to view the average time of any of the 3 services over a…
1
vote
1 answer

Create a new trace id everytime a scheduled runnable task is invoked

In my code I have scheduled a runnable task using the schedule method of task schedular. I went through this link -…
Shubhangi
  • 11
  • 3