OpenTelemetry is a set of APIs, SDKs and other components (like the OpenTelemetry Collector or Operator) designed for the generation of high-quality telemetry data (traces, metrics, and logs) from cloud-native software. This tag is suitable for questions about operating OpenTelemetry components (such as the collector), instrumenting software or libraries to take advantage of it, or questions about writing new OpenTelemetry components.
Questions tagged [open-telemetry]
838 questions
0
votes
2 answers
How to create multiple services using opentelemetry java sdk?
I have an application which is made up of multiple services built in proprietary language. I want to collect traces and ingest into Jaeger or APM solution. There is no instrumentation library. However, these services produce traces in a proprietary…

Mac
- 497
- 5
- 22
0
votes
1 answer
How trace gRPC service (server side) in go using collector
I'm using a collector to trace my spans in my java services, this serivces are http and grpc. The collector endpoint is localhost:55680. This java services trace succesfully.
Now, I want to use this collector to trace my go service based on gRPC.
In…

victorpacheco3107
- 822
- 3
- 10
- 32
0
votes
1 answer
Open-Telemetry and autoinstrumentation of project libraries
I'm using a Java-Application and trying to use the OpenTelemetrys Java autoinstrumentation. It looks like, that the autoinstrumentation does only work ond code directly call from the application itself and dependencies are not instrumented?
The…

tafli
- 152
- 1
- 8
0
votes
1 answer
update label in opentelemetry prometheus exporter
While running the metrics example for the opentelemetry prometheus exporter got following expected
prometheus metrics:
# HELP ex_com_one A ValueObserver set to 1.0
# TYPE ex_com_one histogram
…

user3595144
- 45
- 2
- 9
0
votes
2 answers
Opentelemetry Java auto-instrumentation data to Jaeger
I'm new to the world of Opentelemetry and would like to send the Spring-petclinic instrumentation data to Jaeger which is running on my remote cloud system
Here is the bat file:
java -javaagent:opentelemetry-javaagent-all.jar -Dotel.exporter=jaeger…

Sai
- 309
- 1
- 4
- 15
0
votes
0 answers
How can I send traces directly to webservice without using opentelemtry collector using oltp exporter in http protocol?
I am trying to send 2 different microservice data to my web service using open telemetry-javaagent ,one with jaeger exporter and the other with otlp, it looks like all the traces of jaeger are sent successfully and otlp are dropped as my web service…

user6223368 iSubodh
- 81
- 1
- 9
0
votes
0 answers
Issues in while using Redis client for Golang (github.com/go-redis/redis)
I'm facing to following issues while using Redis client for Golang (https://github.com/go-redis/redis). Those issues are related to the movement of go.opentelemetry.io/otel/api/ form go.opentelemetry.io/otel. I would be thankful for anyone to…

G. Raven
- 77
- 8
0
votes
1 answer
Opentememetry Zuul integration
I'm trying with no success to integrate Opentelemetry with Zuul using Spring Boot. What I'm trying to do is to pass Opentelemetry context from Zuul to other microservices in the chain and when the response came into Zuul close the trace
(Create…

Ares91
- 506
- 2
- 8
- 27
0
votes
0 answers
Having trouble under Docker Compose getting OpenTelemetry trace information from my app into jaeger
I have a simple Node.js app the uses the Open Telemetry Jaeger exporter to send trace information into Jaeger. It runs fine when I fire up the Jaeger as a Docker container then run the code from my machine's command line against localhost. However,…

reselbob
- 365
- 3
- 13
0
votes
1 answer
How to set an OpenTelemetry span attribute for a FastAPI route?
Adding a tag to a trace's span can be very useful to later analyse the tracing data and slice & dice it by the wanted tag.
After reading the OpenTelemetry docs, I couldn't figure out a way to add a custom tag to a span.
Here is my sample FastAPI…

louis_guitton
- 5,105
- 1
- 31
- 33
0
votes
1 answer
How to use lightstep/otel-launcher-node as an OpenTelemetry exporter?
Before I was using lightstep/opentelemetry-exporter-js, I can use my own exporters and Lightstep exporter at same time.
import { CollectorTraceExporter } from '@opentelemetry/exporter-collector';
import { NodeTracerProvider } from…

Hongbo Miao
- 45,290
- 60
- 174
- 267
0
votes
1 answer
Jaeger integration for a Java low latency application
Most of the integrations I have come across uses the java-agent to push the traces to a central collector and in turn one can view traces in Jaeger. However in my case I can't use the java agent, hence I decided to go with the custom tracing api…

Anand Nadar
- 236
- 1
- 6
- 14
0
votes
1 answer
Configure Multiple JaegerGrpcSpanExporter to spring boot application
I tried to configure multiple JaegerGrpcExpanExporter (provided in Open-Telemetry framework) in my application to fulfill below use case:
JaegerGrpcExpanExporter with service name "controller",
JaegerGrpcExpanExporter with service name "service" and…

R.Singh
- 33
- 4
0
votes
1 answer
Usages of Opentracing tools like Jaeger
I have come to know about opentracing and is even working on a POC with Jaeger and Spring. We have around 25+ micro services in production. I have read about it but is a bit confused as how it can be really used.
I'm thinking to use it as a…

Rahul
- 637
- 5
- 16
0
votes
1 answer
Opentelemetry with nodejs
I wanna integrate open telemetry to my node.js and I have a few questions about this project.
I am particularly interested in metrics and tracing Is it worth it to go for open telemetry or just get a Prometheus exporter and Zipkin/jaeger?
Also, I am…

nettoaster
- 25
- 3