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

how to show http response in openTelemetry/jaeger?

I just follow this tutorial here https://quarkus.io/guides/opentelemetry to create a quarkus application with openTelemetry and jaeger. It works fine, I can see all my requests in jaeger, but there is no response body. My problem here is that I have…
Gilson
  • 478
  • 7
  • 14
0
votes
1 answer

Coursier command not found and Unable to access jarfile selenium-beta-4.jar

I run the selenium grid on container and would like to apply opentracing to this container.Here are my Dockerfile for test image and docker-compose file . Docker_compose file: version: "3" services: chrome: image: test shm_size: 4gb …
TonyLiu
  • 1
  • 1
  • 1
0
votes
1 answer

Jaeger query and collector pods do not start

While deploying jaeger 1.28.0 on Kubernetes version v1.21.2-1555+9e8f924492b7d7-dir OpenShift version 4.8.0-0.okd-2021-11-14-052418 Facing the below errors query and collector pods do not start. QUERY: MountVolume.SetUp failed for volume…
0
votes
0 answers

Where we can see microservice request/response payload(json) traffic in Istio

Istio looks very interesting to me, I am curious to know as like we can see traces in jaeger, Where we can also see microservice request/response payload(json) traffic along in Istio? I am not interested in the application logs, because its little…
Manish gour
  • 145
  • 3
  • 14
0
votes
1 answer

Jaeger distritubed tracing with application integrated with 3rd party APIs

Currently analysing a probable distributed tracing tool for our Event Driven Microservice architecture. Which currently looks somewhat similar to the picture below. As I understand all the application integrated with jaeger(spring boot application…
Anirudh
  • 2,286
  • 4
  • 38
  • 64
0
votes
0 answers

Quarkus error after compiling native with Jaeger Tracing

I am trying to compile an application in Quarkus Native and monitor it using Jaeger Traicing, however, I am encountering a problem that when compiling it is taking the wrong url and not the one I should use to work with opentracing: Example…
Cesar Justo
  • 707
  • 2
  • 11
  • 35
0
votes
1 answer

spring cloud sleuth otel - tracing data not visible to jaeger dashboard

I have followed multiple blogs to set-up working demo of Spring cloud Sleuth with OTEL. App ran successfully, trace and spanId are getting generated but service is not getting registered with local jaeger (dockerized) and hence not able to see any…
harshit2811
  • 827
  • 1
  • 7
  • 21
0
votes
1 answer

How to generate new documents in elastic from an insertion?

Currently I monitor my applications with Jaeger and as a backend it uses elastic search, I would like to be able to aggregate this information into new documents based on some criteria in order to generate some reports. From the insertion of a…
Vinicius Santos
  • 323
  • 4
  • 14
0
votes
0 answers

Integrating OpenTelemetry into my .netCore (with akka.net) framework: ActivitySource or Tracer?

I'm completely new to OTel and tracing and have been learning a bit the past few days. I've figured out, that Otel and .net have different names for the same things. ActivitySource in .Net is Tracer in OTel and Span in Otel is Activity in .Net. Is…
Oliver
  • 117
  • 2
  • 15
0
votes
1 answer

Jaeger with ElasticSearch: date-time parsing

We have an index in ElasticSearch that receives logs from both FluentD and Jaeger. The date-time column gets messed up, because apparently the two apps use a different format, FluentD uses ISO8601 whereas Jaeger uses Epoch-Millis. As a consequence,…
GID
  • 43
  • 1
  • 10
0
votes
2 answers

What is the difference between docker run --config vs docker compose config?

So what I am looking at is a docker run command being used in to create a docker container for open telemetry that passes in a config command, and the code looks like... $ git clone git@github.com:open-telemetry/opentelemetry-collector.git; \ …
0
votes
1 answer

Opentelemetry: javaagent jaeger exporter - add header

I have a problem with jaeger exporter, I have been looking for a solution for a long time and I understand that the solution is either not there or it has not been done yet. Is this at all possible to solve somehow? How to add header to jaeger…
JDev
  • 2,157
  • 3
  • 31
  • 57
0
votes
2 answers

Open tracer Jaeger Trace not getting reflect for apache camel

I am new to apache camel and open tracing with Jaeger, I trying to get the traces for apache camel in Jaeger UI but its not getting captured through Open Tracing. import org.apache.camel.CamelContext; import…
Rajesh Bhardwaj
  • 85
  • 3
  • 10
0
votes
1 answer

No dependencies found in Jaeger (openTelemetry-Go)

I have a test implementation of the client and server. OpenTelemetry-Go and Jaeger Exporter is used to collect statistics. Also otelGRPC instrumentation is used. Reports working correctly: Detailed information: But dependencies not found: Yes, I…
nexcode
  • 93
  • 6
0
votes
1 answer

Spring Boot application with Jaeger

I am using below GitHub link to setup opentracing with Jaeger for microservices hosted in kubernetes env and it works fine for Java apps like…