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

OTEL Collector with OTLP/HTTP Exporter giving 400

I am trying to export data from OTEL collector to custom exporter but it is failing with 400. Example Reference https://github.com/open-telemetry/opentelemetry-java-docs/tree/main/otlp/docker OTEL Configuration receivers: otlp: protocols: …
SRJ
  • 2,092
  • 3
  • 17
  • 36
0
votes
1 answer

Micrometer Tracing, Spring Boot 3.0, OTLP exporter class not found error

I have Spring Boot 3.0 based project, Kotlin and Micrometer Tracing (which superseded Spring Cloud Sleuth) Trying to connect Micrometer tracing to OTLP collector, which is part of Jaeger. The configuration class: @Configuration class…
0
votes
1 answer

OpenTelemetry Collector not exporting data to OTEL/HTTP exporter

I am using the example from here https://github.com/open-telemetry/opentelemetry-java-docs/tree/main/otlp/docker I have modified the OTEL config and now it looks like this. I have added otelhttp and otel exporter configuration. OTEL…
SRJ
  • 2,092
  • 3
  • 17
  • 36
0
votes
1 answer

Can't send traces to Jaeger in Azure container instances: remote connection closed in .NET application

I have deployed Jaeger on Azure Container Instances and successfully exposed the required ports for Jaeger to receive and display traces. While I can access the Jaeger UI without any issues, I'm encountering a problem when sending traces from my…
0
votes
1 answer

How can I automate data deletion in jaeger and elasticsearch?

I want to automate the process of removing old data from elastic search container. I have written a docker-compose file to run elastic search, jaeger collector, agent, and query containers and then configured jaeger with elastic search. Now I want…
0
votes
1 answer

opentelemetry-javaagent.jar issue with spring boot application

In my spring boot application using Jaeger UI to track the logs.We are using 'bootbuildimage' plugin to build and push the image. due to this not using 'Docker' file and only using 'docker-compose.yml' only. due to this the following details given…
0
votes
1 answer

Open Telemetry CORS issue exporting trace data to Jaeger

I'm trying to send trace data from client application by @opentelemetry/exporter-collector to jaeger-collector, but the calls are blocked by CORS. I was trying to setup exporter-collector headers to solve the issue but it didn't help. I'm not…
Piotr O
  • 427
  • 1
  • 5
  • 16
0
votes
1 answer

Jaeger duration measurement

Can't find anywhere in Jaeger docs or GitHub what duration represents as a measurement unit. I guess it's milliseconds. Can anyone confirm? I've looked over the internet and tried to find what duration in Jaeger represents but with no success.
0
votes
0 answers

Service not loading in Jaeger UI after deployment in AWS with same image name

Jaeger UI is integrated to trace the logs of spring boot application micro service. But after deployment (using docker compose up) of new image in AWS with same image name the service is not loading in Jaeger UI. If we push service with new image to…
Nithin U S
  • 44
  • 2
0
votes
2 answers

Export OTLP traces to Jaeger

When I attempt to export OTLP traces to Jaeger, I get this error: OpenTelemetry trace error occurred. Exporter otlp encountered the following error(s): the grpc server returns error (Unknown error): , detailed error message: Service was not ready:…
Tom01098
  • 93
  • 6
0
votes
1 answer

Jaeger + ElasticSearch setup

I'm currently setting up an opentelemetry project, which sends data to jaeger to view the created spans. As long as I am using the jaeger-all-in-one with in memory storage it works. As soon as I use elastic for persistent data storage it stops…
dgrs
  • 57
  • 6
0
votes
1 answer

Simple question for Jaeger demo: what are the bare minimum working components

I am trying out Jaeger on a Linux VM: The all-in-one version works perfectly with Demo hotrod app. However when starting up the jaeger collector and query separately (I used the binaries with --span-storage.type=memory) it does not seem to work: No…
Mark S
  • 1
  • 1
0
votes
0 answers

Distributed Tracing -JaegerUi not showing service name

I'm trying to implement distributed tracing in .net 6. I am running jaeger from cmd by using .\jaeger-all-in-one.exe. I am able to run and i can view through http://localhost:16686/. now I added below code in…
0
votes
0 answers

Jaeger with Go Application only shows one span

I am currently trying to integrate Jaeger into my application. This works to the point that all metrics are sent to Jaeger and plotted there as well. The only thing that doesn't work properly is the rendering of calls from one service to another. So…
TheBohne
  • 79
  • 1
  • 10
0
votes
0 answers

Opentelemetry & Jaeger error SEVERE: Failed to export spans. The request could not be executed. Failed to connect to localhost/0:0:0:0:0:0:0:1:4317

I've configured 2 simplest yamls to deploy on Openshift with my application. My jaeger yml : apiVersion: jaegertracing.io/v1 kind: Jaeger metadata: name: my-jaeger My collector yml: apiVersion: opentelemetry.io/v1alpha1 kind:…
mononoke83
  • 342
  • 2
  • 16