Questions tagged [jaeger]

Jaeger is a modern, secured, distributed, highly-scalable, SPoF avoided tracing system ( open sourced ). It can be used for monitoring microservice-based architectures with a Javascript / React Web UI and Cloud deployed collection of Docker images, operating as the system-backend.

The WHY part :

The majority of operational problems that arise when moving to a distributed architecture are ultimately grounded in two areas:
networking and
observability.
It is simply an orders of magnitude larger problem to network and debug a set of intertwined distributed services versus a single monolithic application.

enter image description here

Git: https://github.com/jaegertracing/jaeger
Doc: https://jaegertracing.io/docs/

402 questions
3
votes
1 answer

How to remove old indices of Jaeger in Elasticsearch?

I use Jaeger with Elasticsearch and I want to remove old indices. I tried jaeger-es-index-cleaner, see Remove old data: Remove old data The historical data can be removed with the jaeger-es-index-cleaner that is also used for daily indices. docker…
dur
  • 15,689
  • 25
  • 79
  • 125
3
votes
0 answers

Configuring OpenTelemetry Collector to Export Zipkin traces

I'm attempting to configure the open telemetry collector in Kubernetes. I took the jaeger all in one deployment which is here: https://www.jaegertracing.io/docs/1.22/opentelemetry/ and ported it to kubernete running on my minikube. The problem is I…
Kevin
  • 2,852
  • 6
  • 21
  • 33
3
votes
1 answer

How to send trace data to Jaeger through OpenTelemetry in front end app?

Background I am trying to trace in a front end app. I am not be able to use @opentelemetry/exporter-jaeger since I believe it is for Node.js back end app only. So I am trying to use @opentelemetry/exporter-collector. 1. Succeed to print in browser…
Hongbo Miao
  • 45,290
  • 60
  • 174
  • 267
3
votes
0 answers

OpenTracing + Jaeger: SQL traces not getting reported

I am following all the instructions mentioned here: https://github.com/opentracing-contrib/java-jdbc I assumed that with these steps the traces related to JDBC operations will automatically start getting reported. However, in the logs, I only see…
curious_brain
  • 391
  • 2
  • 17
3
votes
0 answers

Spring Boot app with Spring Cloud Sleuth integration with Jaeger in Istio

I would like to know what's the minimal configuration for a spring-boot app in terms of dependencies if I need to report traces to Jaeger in Istio. I was expecting that by adding only org.springframework.cloud
3
votes
0 answers

python opentracing with jaeger extract span not logging in UI using microservices

I have a problem using the jaeger open tracing project within our microservice system. The config I use is as below. config = Config( config={ 'sampler': { 'type': 'const', …
3
votes
0 answers

Application with Spring Cloud Sleuth reporting to Jaeger with OpenTracing is not using the BraveTracer

Following Spring Cloud Sleuth's documentation I've set up a Spring Boot application with a Zipkin client: Gradle config: "org.springframework.cloud:spring-cloud-starter-sleuth", "org.springframework.cloud:spring-cloud-starter-zipkin" With this I…
codependent
  • 23,193
  • 31
  • 166
  • 308
3
votes
3 answers

How to deploy Jaeger on Kubernetes GKE

I have added these fields in application.yml of microservices and dependency in pom.xml.Jaeger running on my local is abl to identify the services as well opentracing.jaeger.udp-sender.host=localhost opentracing.jaeger.udp-sender.port=6831 I have…
HMT
  • 2,093
  • 1
  • 19
  • 51
3
votes
3 answers

jaeger configuration in spring boot application when both of them are deployed on kubernetes

So, I am trying to trace logs of my spring boot application with jaeger so what are the steps that should be perform if my application and jaeger is deploy on kubernetes. I have successfully deployed jaeger and spring boot application now how will…
iron_man
  • 523
  • 3
  • 13
3
votes
2 answers

Spring Boot Jaeger create new Span for given TraceId

so I'm playing aroung with Jaeger and OpenTracing to trace the requests between my Spring Boot microservices. I have setup all necessary configurations and added the dependency: io.opentracing.contrib
Spark
  • 31
  • 1
  • 2
3
votes
1 answer

What weights represent in Jaegar dependencies DAG view?

I'm unable to find what these edge weights(red circle) represent inside my DAG view. Any of you know what they try to represent?
Menyus
  • 6,633
  • 4
  • 16
  • 36
3
votes
1 answer

Jaeger space between spans

I'm using jaeger with spring boot to trace a test application, sometimes I get some extra space or overlap that appears between spans in a single-threaded trace that takes up to 20ms. I am confused about this extra space because there aren't any…
Mojtaba Yeganeh
  • 2,788
  • 1
  • 30
  • 49
3
votes
2 answers

Micronaut and OpenTracing of method calls

We are building a web-app using Micronaut (v1.2.0) which will be deployed in a Kubernetes cluster (we are using Istio as the service-mesh). We would like to instrument the critical method calls so that they can generate their own spans within a…
mithrandir
  • 1,323
  • 4
  • 18
  • 39
3
votes
2 answers

Configuring Jaeger in Spring application

I would like to configure Jaeger in my Spring application. Somehow I cannot find a proper way to do this. Almost all Spring-Jaeger-related documentation is for Spring Boot where most of the properties are auto configured. Here's my approach. Maven…
gmode
  • 3,601
  • 4
  • 31
  • 39
3
votes
2 answers

Language neutral trace format

I am looking for a programming language neutral file format for call traces. I am looking for a trace similar to set -x in the bash shell. Or like the output of python-hunter First step would be to store all method calls and every line which gets…
guettli
  • 25,042
  • 81
  • 346
  • 663