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

Why Jaeger Opentelemetry traces does not show correct Database Query execution Time?

I am using Spring JdbcTemplate and SybaseDB along with OpenTelemetry traces enabled. I am using an aspect logger around JdbcTemplate query and execute method that logs time taken to execute those methods. What I observed that the time that the time…
0
votes
0 answers

Opentelemtry trace not emitted - no error in console

I have this ruby code to test opentelemtry require 'uri' require 'net/http' require 'opentelemetry/sdk' require 'opentelemetry/instrumentation/all' require 'opentelemetry/exporter/otlp' require "opentelemetry-api" OpenTelemetry::SDK.configure do…
newduino
  • 179
  • 1
  • 6
  • 16
0
votes
0 answers

Opentracing proper way to inject/extract span context

I have 2 applications communicating via grps. When I try to send a span context, I always get null in extracted. Map tracingMetadata = new HashMap<>(); tracingMetadata.put("trace-id", traceId); …
0
votes
0 answers

Node application is not exporting tracings to Jaeger monitor page

i'm implementing tracings in a node (NestJS) application and i'm using opentelemetry and jaeger as my tracing stack. I'm trying to export my application tracing to jaeger "monitor" page. Already configured otel-collector, jaeger, but i still can not…
0
votes
1 answer

How does k8s operators implement images for other resources

I wonder how does a kubernetes operator such as the jaeger operator call other images. A problem I am having with the Jaeger operator for instance, is when I set up a new instance and the operator creates the required components, it calls images for…
Tiriyon
  • 65
  • 8
0
votes
0 answers

Sending Traces to Grafana Tempo

I've been trying to get into this for about 2 days. I have a .Net6.0 web application that needs to send tracing to a Grafana Tempo instance. Already configured is Jaeger for tracing, which is to be replaced. Unfortunately nothing I am trying is…
0
votes
1 answer

Accessing Jaeger /tracing on from k8s cluster returns index.html and 503 Service Unavailable

I have a Kubernetes cluster which runs with Istio as a service mesh and load balancing provided by Metallb. I have 4 Istio addons (Prometheus, Kiali, Grafana, and Jaeger) running on the cluster in the istio namespace, but running firefox on the…
Cole Maly
  • 1
  • 2
0
votes
1 answer

failed to parse field [duration] of type [long] in document

In a kuberenetes cluster, when pushing the data of jaeger-tracing to elasticsearch i am getting the below error in the jaeger-tracing-collector, I do not have any filter like logstash/filebeat in between. The jaeger data is direclty pushed into…
0
votes
0 answers

Java Jaeger control span activate based on flags

I'm just beginner with Jaeger implementation and want to know how can I controll if span can be instantiated based on flag=true Below, is sample logic I'm trying to put behind the flag condition? try (Scope scope =…
Swapnil Kotwal
  • 5,418
  • 6
  • 48
  • 92
0
votes
0 answers

How to integrate jaeger in opentelemetry python, where jaeger is running on different server or system?

It's my first time of implementing opentelemetry using OTLPExporter and jaeger UI. I'm passing opentelemetry traces to jaeger UI using OLTP protocol,it's working fine on locally.I've a question that, is it possible to pass opentelemetry data to…
Shweta
  • 1
0
votes
0 answers

new service in jaeger UI not showing up

I have created a new service through python open-telemetry library, I'm trying to run the python file the message in command prompt is seen but nor the traces or new service which is created through python both are not showing up in Jaeger UI. (It…
0
votes
2 answers

Ferrying OpenTelemetry span/context via org.apache.cassandra.net.Message.Header

Lately I endeavored to integrate Jaeger with Cassandra. However, the only way to reliably sent messages across modes requires specifying a ParamType, which is limited only to an UUID, which is not enough to sent both the 128-bit spanId and parent,…
0
votes
0 answers

How to create many instances of the TracerProvider class within a python application instrumented with open-telementry?

Currently, I'm instrumenting a python application using open-telemetry and jaeger. I was wondering if there is a way or a workaround to instantiate many instances of the the TraceProvider class, within the same multi-threaded application. I know I…
0
votes
0 answers

ERR_CONNECTION_RESET azure container instance

I need to host jaeger in azure container instance and currently host is running in azure container instance but when i go to Ip address in browser it shows Error connection reset same result in DNS also. Im using jaegertracing/all-in-one:latest as…
Umesh Shende
  • 83
  • 1
  • 10
0
votes
0 answers

How can I get source(e.g. ip) of opentelemery trace from Jaeger?

New to distributed tracing. I'm using jaeger to collect trace from multiple opentelemetry instances(ipfs nodes). Need to find which node have outliers, but I found no source infomation in jaeger webui. Any idea how can I get source node? Thanks.
Ian.Zhang
  • 151
  • 1
  • 10