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
0 answers
Opentelemetry instrumentation forr Postgres not working on Cloud Run
I'm trying to have some tracing enabled on my Fastify application within Cloud Run which is connected with Cloud SQL (Postgres) via a VPC connector. The instrumentation of this database doesn't seem to work. I did get this working on a local…

Glenn
- 61
- 5
0
votes
0 answers
Build opentelemetry-cpp results in errors
I am trying to compile opentelementry-cpp project (https://github.com/open-telemetry/opentelemetry-cpp) but it results in errors.
This are the commands I am running:
RUN git clone -b v1.1.1 https://github.com/open-telemetry/opentelemetry-cpp otel &&…

MrPython
- 162
- 1
- 8
0
votes
1 answer
Disable OpenTelemetry tracing on quarkus for vertx reactive
I am currently attempting to add openTelemetry tracing to my quarkus project. It is a lambda that reaches out to datasources and does some processing. Currently, we are using reactive pgadmin, but when I try to make queries when using the…

Konstantin Rezchikov
- 63
- 1
- 11
0
votes
2 answers
OpenTelemetry for Envoy traces
Has anyone got Envoy traces working with OpenTelemetry collector? I'd be very appreciative if you could share how that's done. Thank you very much!

Nico
- 11
- 3
0
votes
0 answers
How to export array/list of measurements using openTelemetry in Java
I have an array of metrics, some measurements related to my project written in Java 8.
I want to export it using openTelemetry to google to be able to get some statistical information about it.
I'm using openTelemetry for instrumentation not for…
0
votes
0 answers
Does OpenTelemetry support UWP
I tried to integrate OpenTelemetry .NET instrumentation with UWP and it consistently threw an exception in Sdk.CreateTracerProviderBuilder(). The exact same sample code works fine in a non UWP app. The error is:
System.TypeInitializationException:…

Fee Chin
- 1
0
votes
1 answer
How to send OpenTelemetry traces to Honeycomb.io directly from browser?
I've been trying to build an OpenTelemetry implementation which sends traces directly to Honeycomb.io.
// tracer.js
import { SimpleSpanProcessor } from '@opentelemetry/sdk-trace-base';
import { WebTracerProvider } from…

jonathan3692bf
- 1,398
- 1
- 12
- 14
0
votes
0 answers
OpenTelemetry for .NET 6 applications on Google Cloud Run
If I have an ASP.NET application running on .NET 6 instrumented with the standard OpenTelemetry libraries, is there any low-touch destination for my application to send all trace and logging information?
Perhaps something like a well known host and…

Alexander Trauzzi
- 7,277
- 13
- 68
- 112
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
DataDog to OpenTracing IDs - Converting 64-bit unsigned integer to 128-bit unsigned and 64-bit unsigned hex
I am attempting to correlate traces originating in DataDog's RUM SDK, which are hitting by BE instrumented with OpenTelemetry. Essentially trying to implement the reverse of DD's documentation on Connect OpenTelemetry Traces And Logs
OpenTelemetry…

coderdude123
- 311
- 2
- 7
0
votes
2 answers
OpenTelemetry JVM and System metrics
I have used micrometer.io for most of my career to collect metrics. One of the coolest micrometer features is binding to collect information about the host system and jvm: https://micrometer.io/docs/ref/jvm on the basis of which it was possible to…

dsinczak
- 217
- 1
- 10
0
votes
0 answers
How do you export node.js opentelementry from AWS Lambda to Elasticsearch?
Have a opentelementry lambda extension that is running waiting for events. Have the collector to export out to Elasticsearch. I am seeing the service map of the services that lambda is hitting, but not seeing trace data. I am following the…

Andy N
- 1,013
- 9
- 25
0
votes
1 answer
Using .NET Core to consume Protobuf serialized log messages in Kafka that were produced by OTEL agent
I'm using the OpenTelemetry collector agent to send logs to a Kafka streaming layer. I want to consume these log messages in a .NET Kafka consumer (for now), but I'm having a few issues. OTEL appears to use Protobuf serialization which is making it…

Ryan.Bartsch
- 3,698
- 1
- 26
- 52
0
votes
0 answers
With Opemtelemetry tracing, what's the best way to "explicitly" create a child span based on a trace id?
We use dapr, which sends requests against our api and each request contains a body including a traceid attribute. We want to use this trace id to build "contigous traces", something like this (pseudo-code):
@app.post("/api/doit")
def…

Trondh
- 3,221
- 1
- 25
- 34
0
votes
1 answer
Distributed tracing library - Custom trace id
As part of our spring application, we are using Spring Sleuth to inject traceid & spanid into the requests. This neatly works with SL4J via MDC integration to propagate to the logs as well.
But running into issues with our organization not using B3…

Srini M
- 196
- 3
- 16