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
0
votes
1 answer

how to configure elastic search in jaeger without docker

I am trying to setup jaeger-all-in-one on one server. If I run the exe jaeger-all-in-one, everything works as expected (using in-memory). In order to see the options available with ES, I am not able to run a help command. Now, my requirement is to…
0
votes
1 answer

Set up Jaeger with OpenTelemetry

I have built a sample app to understand the trace and span using OpenTelemetry. I want to see them in Jaeger UI. How to set up Jaeger with my application which uses OpenTelemetry for tracing?
raman bhadauria
  • 145
  • 2
  • 11
0
votes
2 answers

Jaegerw with yaml-cpp Linking Errror

I have a c++ program which using Jaeger for tracing #include #include #include // #include #include namespace std { void init(const char *FilePath) { auto yaml…
Abhinav Singh
  • 302
  • 3
  • 15
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
2 answers

How can I get traces of Nservicebus using Jaeger?

I have gone through Jaeger Documentation. They have specified that how will Jaeger will work the HTTP request kind of scenario but if I want to get traces of Nservicebus's to publish/subscribe method then How will I get using Jaeger? Is it possible?…
0
votes
1 answer

How to configure istio-proxy to log traceId?

I am using istio with version 1.3.5. Is there any configuration to be set to allow istio-proxy to log traceId? I am using jaeger tracing (wit zipkin protocol) being enabled. There is one thing I want to accomplish by having traceId logging: - log…
Agung Pratama
  • 3,666
  • 7
  • 36
  • 77
0
votes
1 answer

jaeger endpoint isnt recieving data using jaeger Node.js client

Was trying to connect to jaeger using HTTP request using nodejs but the spans are not reaching the jaeger endpoint. please help with this code snippet., var initTracer = require('jaeger-client').initTracer; var config = { 'serviceName':…
Rajkumar Cj
  • 13
  • 1
  • 6
0
votes
1 answer

Jaeger traceID in response headers

I'm playing with JaegerTracing in Django using tutorial https://github.com/contino/jaeger-django-docker-tutorial. Now I don't know how to take out traceId from response headers because it's not there. When finding traces in Jaeger UI it returns…
0
votes
1 answer

quarkus reactive-postgresql-client with jaeger opentracing support

Based on this and this How would I enable tracing for reactive-sql-clients ? Now use %dev.quarkus.datasource.url=vertx-reactive:postgresql://dev-db-server:5432/mydb - it works, but no tracing support though. I can see racing for my rest calls but…
ses
  • 13,174
  • 31
  • 123
  • 226
0
votes
1 answer

Tracer sending a span

I am trying to use instrumentation in Go with Jaeger. I am running the Jaeger backend with docker like this (as explained in https://www.jaegertracing.io/docs/1.15/getting-started/): docker run -d --name jaeger \ -e COLLECTOR_ZIPKIN_HTTP_PORT=9411…
TPPZ
  • 4,447
  • 10
  • 61
  • 106
0
votes
0 answers

Handle Jaeger errors

I am planning to use Jaeger tracing in on my Golang server. Everything is ok but I haven't found a way to handle Jaeger errors. I want to catch, for example, connection error to Jaeger backend while sending trace and write it to loggly. Code…
IvanSpk
  • 137
  • 1
  • 12
0
votes
1 answer

How can I deploy Istio Jaeger UI tracing in production without using kubectl port forwarding

I am trying to deploy Istio Jaeger UI for distributed tracing. Currently I am using kubectl port forwarding using the command kubectl port-forward -n monitoring prometheus-prometheus-operator-prometheus-0 9090. But it runs on http://localhost:port…
user7614723
0
votes
1 answer

How to export multiple microservices jaeger metrics stored in elasticsearch to prometheus

We are able to get latency metrics of multiple microservices using Jaeger. Currently Jaeger stores application metrics in elasticsearch. My usecase is to get the latency of application from elasticsearch to prometheus. Is there anyway to read the…
Ram
  • 43
  • 1
  • 5
0
votes
1 answer

Inject the OpenTracing's SpanContext in a Spring RestTemplate

I have the necessity to manually inject a SpanContext into a Spring RestTemplate. For reasons that are irrelevant to the question, I can't just use "opentracing-spring-web-starter" because that would conflict with other starters I have set up and…
Roberto
  • 3
  • 2
0
votes
1 answer

Can't see Istio metrics in Apache SkyWalking

Couldn't see in skywalking ui data from istio metrics. Using below guide to installed istio and skywalking backend to Kubernetes: https://github.com/apache/skywalking/tree/master/docs/en/setup/istio. Made all steps in the guide and deployed app.…