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

Disabling Istio/Zipkin interceptor for a single request?

We are using Istio/Zipkin as a tracing system on our server to add the dynamic headers through Istio sidecar proxy for tracing the request later on using Zipkin. Is there anyway we could disable istio for a certain request. Problem is, we are…
Omar Bahir
  • 1,237
  • 5
  • 20
  • 48
0
votes
1 answer

How do I specify an external zipkin collector in istio?

I want to use stackdriver trace as a back end for distributed tracing in istio. I installed Docker on the VM of GCP, and run the image of zipkin-gcp. docker run -d -p 9411:9411 -e STORAGE_TYPE=stackdriver -e STACKDRIVER_PROJECT_ID=my-project…
yu saito
  • 125
  • 7
0
votes
2 answers

Apache camel losing trace id and span id after camel split eip

I need to have trace id and span id available in all my logs. However I am observing that after the first splitter in my camel route, I can no longer see the trace id and span id in my logs. [traceId: spanId:] INFO --- Is there any way to enable…
0
votes
2 answers

ContinueSpan does not work for local method call in Micronaut

I have adapted the sample from Micronaut Users Guide V1.2.10 chapter Tracing Annotations. @NewSpan("hello-world") public String hello(@SpanTag("person.name") String name) { return greet("Hello " + name); } @ContinueSpan public String…
Horowitzathome
  • 359
  • 3
  • 13
0
votes
1 answer

Configure tracing backend to be Zipkin in Istio

I am trying to configure Istio control Plane to use zipkin as tracing backend, but I can't. In their docs, they state that in order to do this, I just have to pass the following parameters when installing Istio: --set values.tracing.enabled=true and…
suren
  • 7,817
  • 1
  • 30
  • 51
0
votes
0 answers

Issue in passing data in zipkin via kafka - Could not convert message

2020-01-10 15:21:24.988 INFO [tracing-zipkin-server,,,] 13752 --- [ -C-1] o.a.k.c.c.internals.ConsumerCoordinator : Setting newly assigned partitions [sleuth-0] for group sleuth 2020-01-10 15:21:24.997 INFO [tracing-zipkin-server,,,]…
0
votes
1 answer

How to capture the logs in zipkins in springboot application

How to capture the logs of a springboot application in zipkins?
0
votes
3 answers

Zipkin Server giving Whitelabel Error Page

While creating a Zipkin Server with Spring Boot(v2), I am facing Whitelabel Error Page. " Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Wed Oct 30…
0
votes
1 answer

Sending SpringBoot / Sleuth Zipkin Traces to Honeycomb.io

Sending traces from an existing instrumented Spring Boot application to honeycomb-opentracing-proxy is failing with the following error in the proxy console: time="2019-10-25T02:51:55Z" level=info msg="error unmarshaling spans" error="json: cannot…
Patrick Bray
  • 552
  • 2
  • 7
  • 20
0
votes
1 answer

Exclude specific controllers from sleuth / brave to trace

we are using brave api in our spring boot application. We are able to trace all controllers and services. But issue is we are getting traces in some controllers which we do not want to trace like health check controller. Is there any way to specify…
viren
  • 1,073
  • 1
  • 17
  • 41
0
votes
0 answers

Propagating extra fields/New fields distributed tracing solution for SpringCloud. configuring in BootClass

Added dependency for cloud sleuth and zipkin dependency of version below in pom.xml Pom.xml org.springframework.boot spring-boot
Raj
  • 93
  • 1
  • 10
0
votes
2 answers

docker-compose: zipkin cannot connect to elasticsearch

I try to setup zipkin, elasticsearch, prometheus and grafana with docker-compose.yml When I run dockers, see in the log: dependencies_zipkin | 19/09/30 14:37:09 ERROR NetworkClient: Node [172.28.0.2:9200] failed (java.net.ConnectException:…
Jon Leb
  • 37
  • 1
  • 9
0
votes
1 answer

Load data to zipkin with curl post request

I use zipking for testing with curl post. Examples for post https://zipkin.io/zipkin-api/#/default/post_spans $ curl -X POST "http://localhost:9411/api/v2/spans" -H "accept: application/json" -H "content-type: application/json" -d "[ { \"traceId\":…
0
votes
0 answers

How to config zipkin mysql in windows with cmd?

What is the corresponding command for “STORAGE_TYPE=mysql MYSQL_USER=root java -jar zipkin.jar” under cmd? I succeeded in Ubuntu, but the cmd in Windows has never been successful.
0
votes
1 answer

spring-cloud-starter-zipkin clash with jdbc?

My spring boot application has some problem. Zipkin and jdbc can not coexist together. It is normal to have only one zipkin or jdbc. Maven dependency: org.springframework.cloud
Yongs
  • 1