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

Jaeger error No suitable sender found. Using NoopSender

I am using below example of OpenTracing, Jaeger https://github.com/yurishkuro/opentracing-tutorial/tree/master/csharp/src/lesson01 I have my Jaeger UI running for which I used the below command. docker run -d --name jaeger -e…
user804401
  • 1,990
  • 9
  • 38
  • 71
0
votes
0 answers

Jaeger configuration for class library

I am trying to incorporate Jaeger and OpenTracing into my Class Library project in .Net core. Most of the Jaeger documentation shows how to configure Jaeger for Web API's in Startup.cs file. The below configuration works for .Net core API project …
user804401
  • 1,990
  • 9
  • 38
  • 71
0
votes
1 answer

Open tracing instrumentation for ForkJoinPool.commonPool()

My application extensively uses CompletableFuture.supplyAsync(() -> someService(context, args)); & we rely on supplyAsync to use ForkJoinPool.commonPool() thread pool to get the service run in its own thread. Is there a way to instrument someService…
opuser1
  • 427
  • 7
  • 29
0
votes
1 answer

Jaeger traces not capturing for spring-data

Jaeger traces to spring-boot application are not able to capture traces for the DB calls made using spring-data. All other calls like RESTTemplate are able to have the traces captured. Using springboot version 2.2.2.RELEASE and added below jaeger…
Venkata Madhu
  • 93
  • 1
  • 14
0
votes
1 answer

EKS connection refused when trying to talk to Jaeger agent daemonset

I recently deployed the jaeger agent as a daemonset on my k8s cluster alongside a collector. When trying to send spans to the agent using: - name: JAEGER_AGENT_HOST valueFrom: fieldRef: fieldPath: status.hostIP When looking at the…
0
votes
1 answer

how to setup jaeger backend when services are running in different hosts?

I'm following this tutorial: https://github.com/yurishkuro/opentracing-tutorial/tree/master/java/src/main/java/lesson03. What need to be set so that services running in different hosts can send the data to the same backend?
user1532146
  • 184
  • 2
  • 14
0
votes
2 answers

Is OpenTracing enabled for Reactive Routes in Quarkus?

I have recently changed my Quarkus application from RestEasy to Reactive Routes to implement my HTTP endpoints. My Quarkus app had OpenTracing enabled and it was working fine. After changing the HTTP resource layer I can not see any trace in…
Sergio Rodríguez Calvo
  • 1,183
  • 2
  • 16
  • 32
0
votes
1 answer

Grafana cloud datasource - How to get datasource URL

I'm trying to set up a Jaeger datasource in grafana cloud. In Jaeger datasource page - URL field is empty, my question is: Where can I find the required URL? I have tried to write an imaginary URL, for test purpose, and when I clicked on 'Save &…
user2055886
  • 99
  • 2
  • 10
0
votes
1 answer

GitLab integration with Jaeger in Azure kubernetes service

I have installed Gitlab in AKS cluster, and I also installed Jaeger. Both the applications are up and running. I want to integrate GitLab with jaeger. I searched for any documentation on how to do in AKS , but didnt find any. Any suggestion is…
Umesh Kumar
  • 1,387
  • 2
  • 16
  • 34
0
votes
1 answer

Istio zipkin address configuration problem when using Jaeger Agent as Daemonset

I have question regarding global.tracer.zipkin.address while deploying istio. I am using Jaeger, and have Jaeger Agents deployed in DaemonSet. As I have each Jaeger Agents (on each nodes), Jaeger Collector, and Jaeger Query, I believe…
Piljae Chae
  • 987
  • 10
  • 23
0
votes
2 answers

"Configuration config = new Configuration": 'Configuration' is a namespace but is used like a type

very new to .net and this seems like a simple questions. Trying to get this code to work from the Jaeger website: https://ocelot.readthedocs.io/en/latest/features/tracing.html services.AddSingleton(sp => { var loggerFactory =…
0
votes
0 answers

Having trouble under Docker Compose getting OpenTelemetry trace information from my app into jaeger

I have a simple Node.js app the uses the Open Telemetry Jaeger exporter to send trace information into Jaeger. It runs fine when I fire up the Jaeger as a Docker container then run the code from my machine's command line against localhost. However,…
reselbob
  • 365
  • 3
  • 13
0
votes
1 answer

How to troubleshoot communication with a kubernetes service

Setting up jaeger tracing...So previously I had a binary executable (jaeger-agent) running on a Linux CentOS 8 box alongside a server side application. The tracing spans were being sent to the jaeger-collector service (setup by kubernetes) on port…
Nona
  • 5,302
  • 7
  • 41
  • 79
0
votes
2 answers

Link docker containers in the Dockerfile

I have a Jaeger running in a docker container in my local machine. I've created a sample app which sends trace data to Jaeger. When running from the IDE, the data is sent perfectly. I've containerized my app, and now I'm deploying it as a container,…
Juliano Costa
  • 2,175
  • 2
  • 18
  • 30
0
votes
1 answer

Jaeger log warning messages saying no sender factories available

I am trying to set up Jaeger to collect traces from a spring boot application. When my app starts up, I am getting this warning message warn io.jaegertracing.internal.senders.SenderResolver - No sender factories available. Using NoopSender, meaning…
user1729409
  • 587
  • 2
  • 6
  • 10