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

Traces not getting sampled in jaeger tracing

I'm new to using Jaeger tracing system and have been trying to implement it for a flask based microservices architecture. Below is my jaeger client config implemented in python: config = Config( config = { 'sampler': { …
NightOwl19
  • 419
  • 5
  • 24
0
votes
1 answer

Integrating Opentracing.io / jaegertracing.io with Spring MVC

I am trying to configure my Spring Boot Application so that it sends all the traces to my jaeger endpoint. I have use the following…
BigEndian32
  • 31
  • 1
  • 5
0
votes
1 answer

Problem with Jaeger, logback and Sleuth working together

I was developing a Spring Boot application in which the loging is done by logback and Jaeger is integrated for instrumentation. Myservice.java @SpringBootApplication public class Myservice{ public static void main(String[] args) { …
das
  • 669
  • 2
  • 12
  • 22
0
votes
1 answer

Does stopping jaeger collector stop OpenTracing

I have certain applications that run jaeger-client when I enable OpenTracing and start them. First I start Jaeger collector using the command- docker run -d -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 -p 5775:5775/udp -p 6831:6831/udp -p…
Swarnim Raj
  • 137
  • 2
  • 14
0
votes
1 answer

Instrument Spring-Boot application that's executed in Docker container with Jaeger tracing

I'm running a Spring-Boot application inside a docker container and want to instrument it with OpenTracing using the Jaeger client from Uber. For the instrumentation I'm using the OpenTracing Spring Web library in combination with the Jaeger…
TheManawaha
  • 303
  • 3
  • 9
0
votes
1 answer

Jaeger tracing with stackdriver

I am hosting my application on GCP and I want to use stackdriver as my backend storage for trace spans with jaeger collectors. I can't seem to find anything related to that. In GCP I can find clearly that they support zipkin. I am not sure what to…
thelinuxer
  • 658
  • 1
  • 8
  • 28
0
votes
2 answers

How to use jaeger-client from react component?

From react application (App.js ) imported jaeger-client. import jaegerClient from 'jaeger-client' Got exception 'TypeError: _fs2.default.readFileSync is not a function' from following line of…
Debmalya Jash
  • 301
  • 1
  • 11
0
votes
1 answer

uber/jaeger-client-node: backend wont receive data

I'm currently looking into different openTracing Tracer-Implementations. I want to use uber/jaeger-client-node but the backend won't receive my traces. Here is what I did: I started the all-in-one docker image: docker run -d -p5775:5775/udp…
Steju
  • 3
  • 2
-1
votes
1 answer

Spring-Webflux: Add jaeger traceId to log via MDC

I use Sping-Webflux and want to automatically add jaeger traceId into my @Slf4j log. I have an appender in my logback.xml with %X{traceId} pattern like this %d{yyyy-MM-dd HH:mm:ss} %X{traceId} -2048msg%n Following to this…
Mikhail Geyer
  • 881
  • 2
  • 9
  • 27
-1
votes
1 answer

Tracing with micronaut not resumed when there is a backend outage for a while

I am using micronaut for an application and exporting traces to jaeger backend. The traces export is working only if jaeger is available when application comesup. Say if jaeger is brought up after app, or say if jaeger gets restarted, the traces are…
user3602058
  • 219
  • 4
  • 10
-1
votes
1 answer

Light Step Integration for Open Tracing

I am exploring the various Tracing Systems. I was looking into Light Step recently. I have integrated my application for OpenTracing where I use the tracer from Light Step. Now how can view the traces I am generating. For example in Jaeger they had…
LokeshJoshi
  • 31
  • 1
  • 8
-3
votes
1 answer

Using centos7 as base image for Jaeger

I am trying to setup Jaeger using a CentOS base image instead of Alpine. The agent, collector, and Cassandra containers all work fine except for the query container. The Jaeger repository is here. After changing the base image to CentOS 7,…
crusadecoder
  • 651
  • 1
  • 11
  • 26
1 2 3
26
27