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

Elasticsearch: How to search with all inputs only

I am looking for a solution to the problem Problem: i have two records A:Trace(id, traceId, Tags) B:Trace(id,traceId, Tags) both records have same traceId and different tags for that i used should Clause which return data even if only record A have…
1
vote
0 answers

Is it possible to set a span start and end time in seperate requests in OpenTelemetry

Im trying to introduce tracing to workflows we have in azure logic apps. I was hoping to start a span as the first step in a logic app via a request to a function app that would return the traceid and spanid that could be past into further nested…
Spaceman
  • 1,319
  • 13
  • 42
1
vote
2 answers

I/O error on POST request for Connect timed out; nested exception is java.net.SocketTimeoutException: Connect timed out

I/O error on POST request for "http://localhost:9411/api/v2/spans": Connect timed out; nested exception is java.net.SocketTimeoutException: Connect timed out 2021-11-24 10:17:30.642 INFO [,,,] 7872 --- [ restartedMain]…
Ksha
  • 37
  • 1
  • 6
1
vote
0 answers

Error occurred when zipkin setup with ELK

I setup zipkin. Zipkin is deployed in a Kubernetes cluster. When it is running without ELK, there is no any backend errors. I setup zipkin with ELK. For that, I added below environment configuration to zipkin deployment. - name: STORAGE_TYPE …
prime
  • 769
  • 1
  • 13
  • 27
1
vote
1 answer

Spring Cloud Sleuth with MySQL

I am stucked to find any proper example which can demonstrate me to find out traces and store it in MySQL database locally. I have used zipkin server to visualize my distrubuted tracing of microservices. If any one worked with Spring Cloud Sleuth…
1
vote
0 answers

Spring Cloud Sleuth/Ziplin + Azure App Insight Integration

I am following below link for having distributed tracing in Azure App Insight- https://learn.microsoft.com/en-us/azure/spring-cloud/how-to-distributed-tracing?pivots=programming-language-java I have provided the App Insight JavaAgent as well to my…
1
vote
1 answer

Spring Cloud sleuth memory leak issue

I am facing issue with spring cloud sleuth as it is leaking memory as I have gone through the dumps of my applications: What does 13.05mb (40.3%) of Java Static org.springframework.cloud.sleuth.instrument.async.SleuthContextListener.CACHE Spring…
1
vote
0 answers

Using Spring Cloud Sleuth with OpenZipkin. GUI not showing all spans

I am trying to prototype getting Spring Cloud Sleuth working with Spring Cloud Stream microservices and sending tracing info to OpenZipkin. It seems to be working however for some reason I'm not seeing what I'd expect in the OpenZipkin GUI. I…
Mrc0113
  • 453
  • 3
  • 13
1
vote
2 answers

OpenTelemetry collector scaling

We are going to have a high load on telemetry service. I'm looking for solutions, which be able to scale collector and backend(zipkin) There is solution for scaling zipkin. Seems simple - just use internal balancing loadbalancing: protocol: …
1
vote
1 answer

Can I use together: Zipkin, Sleuth, MDC, ELK, Jaeger?

I really read many articles. I figure out that need to just include a starters in spring boot ))) Can anyone sort it out: is Sleuth create MDC (Mapped Diagnostic Context)? Is sleuth create a record's ID which used by Zipkin? Can I see this ID in…
J.J. Beam
  • 2,612
  • 2
  • 26
  • 55
1
vote
0 answers

zipkin added to spring boot app cause failure to startup Application

spring-boot 2.3.4-RELEASE Error is shown after adding the zipkin dependencies to a project and running with mvn spring-boot:run Cannot figure out the error causing it. Other spring-boot apps in the project are running fine with the same zipkin…
1
vote
1 answer

Make Zipkin (or any open-tracing framework) work with existing "trace id"

A bit of background: We have around 10 Spring boot microservices, which communicate with each other via kafka. The logs of each microservice are sent to Kibana, and in case of any errors, we have to sift through Kibana logs. The good thing is: at…
Somjit
  • 2,503
  • 5
  • 33
  • 60
1
vote
2 answers

Opentelemetry java Automatic Instrumentation with zipkin exporter option is using OtlpGrpcSpanExporter

I have a simple spring boot hello world application. Trying to send data to the Zipkin collector. But as per logs, it's trying to use OtlpGrpcSpanExporter. My application exposes a simple post rest API. Following Opentelemetry docs…
1
vote
0 answers

Spring Webflux 2.5.x + Spring Cloud + Zipkin: Not able to get Zipkin metrics

Small question regarding Spring Webflux project, with Spring Cloud please. In my small Spring Webflux app, I am currently using org.springframework.cloud
PatPanda
  • 3,644
  • 9
  • 58
  • 154
1
vote
1 answer

Modifying the micronaut tracing HttpClientSender DEFAULT_PATH to allow data send to New Relic Trace API

Micronaut has a zipkin tracing library where you can easily override the zipkin server http endpoint like this: tracing: zipkin: enabled: true http: urls: https://trace-api.eu.newrelic.com/trace/ Now by default it adds DEFAULT_PATH…