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

Deserialize Jaeger span reports

For testing purposes, I'm trying to receive Jaeger reports in localhost and check that some values are what they should. I set up Jaeger like this: def setup_env(tracing_enabled, tracing_port): os.environ['JAEGER_DISABLED'] = 'false' …
Guillermo Ares
  • 197
  • 1
  • 12
0
votes
1 answer

How to add tags into process for Jaeger span

I am using Python3.8 with opentelemetry libraries and I am able to create some basic spans. I need to add tags for the backend processor pick them. For E.G something like "hostname". For this to happen I need to somehow add tags to the process. I am…
Kishan
  • 45
  • 5
0
votes
0 answers

Istio with Elastic Stack for Observability

I am currently using Istio as service mesh with Kubernetes. I want to implement observability infrastructure with Elastic Stack , I know Istio is supported for jaeger and Prometheus, But I have to capture distributed tracing and matrices via Elastic…
KDS
  • 99
  • 1
  • 16
0
votes
0 answers

Spring Opentracing Jaeger header forwarding with Istio

I'm running Spring with the opentracing-spring-jaeger-web-starter in Istio with jaeger, even when I enable b3-propagation and w3c-propagation, jaeger is breaking the spans. Is there a way to validate what the sidecar receives? I tried using…
leoconco
  • 253
  • 3
  • 15
0
votes
1 answer

WSO2 EI 6.4.0 publish in Jaeger

I am trying to publish the flow traces of the wso2 EI 6.4.0 messages in Jaeger. My question is: Does Jaeger support WSO2 EI version 6.4.0? Are there other alternatives for this version of WSO2? Thank you very much and greetings
0
votes
1 answer

Does Jaeger support Grafana Tempo backend?

im starting with tracing tools. I would like to use Grafana Tempo backend storage and as UI Jaeger. Is possible that this stack will work together? Im running that in docker via official docker-compose files. I checked Jaeger documentation and did…
0
votes
1 answer

kubernetes jaeger deploy returns unknown field "template"

The phrase "unknown field template" appears when Kubernetes tries to create a jaeger deployment. jaeger deployment yaml apiVersion: jaegertracing.io/v1 kind: Jaeger metadata: name: simple-prod labels: app: jaeger spec: strategy:…
Kim sung
  • 19
  • 7
0
votes
1 answer

Jaeger vs APM tracing performance

I have setup OpenTracing for a microservice solution that uses .Net5. Whent with a full chain: MicroService -> Jaeger Agent -> Jaeger Collector -> Kafka -> Jaeger Injester -> ElasticSearch -> JaegerUI+Kafka But lately I found ElasticSearch APM also…
Dmitry
  • 2,033
  • 1
  • 22
  • 31
0
votes
0 answers

Jaeger: failed to init storage factory

I'm enabling tracing for istio using jaeger but the pod keep crashing "CrashLoopBackoff" and when checking the logs I get this error. so it looks like a problem with storage (not sure tho) and I've tried to increase it but still not working! as…
SlimenTN
  • 3,383
  • 7
  • 31
  • 78
0
votes
2 answers

Integrate Jaeger open tracing in my django project

In my Django project i would to integrate open tracing tecnique using Jaeger. I installed a Jaeger operator on my kubernetes cluster: So in my django project i install some packages as: django-opentracing jaeger-client opentracing then in my…
Manuel Santi
  • 1,106
  • 17
  • 46
0
votes
1 answer

how can i get trace using gRPC, istio, jaeger, Spring-boot, Java?

my code: https://github.com/nikita111100/gRPC-vs-REST i cant get a trace of all services I guess grpc-spring-boot-starter can do this without propagate headers
0
votes
1 answer

Why I cannot log into jaeger-agent docker container?

The only container that I cannot get into and check what's inside is jaeger-agent, downloaded from here. Why is this so? How can I get inside? Ideally: docker exec -it jaeger-agent bash would let me in the container
gai-jin
  • 653
  • 2
  • 10
  • 24
0
votes
0 answers

Using OpenTelemetry, how we can inject trace details automatically to application logs written in Nodejs / Go

In python, there is an option to inject trace details(tracid,spanid) to application logs using environment variable (export OTEL_PYTHON_LOG_CORRELATION=true). Is there something similar in Nodejs or Go. I couldn't find any autoinstrumentaion for…
jaison
  • 83
  • 2
  • 8
0
votes
2 answers

how disable remoteReporter in quarkus-smallrye-opentracing

Request description:. I want disable jaeger client remoteReporter, I don't nee send to agent, Because istio would make it. Tried:. Add quarkus.jaeger.sender-factory prop in my application.properties but I not has lucky, and can't find when use this…
LeoKao
  • 47
  • 1
  • 6
0
votes
0 answers

How to understand span tag peer.address in zipkin?

I have deployed Jaeger on istio to monitor the bookinfo application. Then I want to analyze the trace data of Jaeger. However, I am confused by some span tags, such as, upstream_cluster and peer address. I found the meaning of peer.address from…
gxxxh
  • 95
  • 1
  • 1
  • 7