Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
0 replies
44 views

I have been using: "@opentelemetry/api": "=1.4.1",    " @opentelemetry/exporter-jaeger": "^1.13.0",     "@opentelemetry/instrumentation-express": &...
Lexter Seoul's user avatar
0 votes
0 answers
126 views

I'm developing a Node library which collects certain usage data and sends it over OTLP to my collector. Inside the library, I'm initializing OTEL like this: const sdk = new NodeSDK({ ...
ataha322's user avatar
0 votes
0 answers
101 views

I'm working with a large single-page application that has a complex, multi-stage bootstrap process. I'm facing a challenge getting the standard auto-instrumentations (like instrumentation-fetch) to ...
gritaman's user avatar
0 votes
0 answers
59 views

Currently I'm setting up a t3 web application next js as front and trpc as my backend, and auth js with session of database strategy. I'm currently using Azure as cloud. Here I'm trying to set up ...
HSIEH YU HAO's user avatar
0 votes
0 answers
200 views

I'm trying to setAttributes() on the first Span in the current Trace that has the same host.name attribute as the active span (trace.getSpan(context.active())). How do I walk the tree of Spans up? I ...
Ivan Rubinson's user avatar
0 votes
1 answer
110 views

I have a front-end application (React) that would like to send logs to a collector. The problem is in my current setup I set my token at init, and can't seem to find a smooth way to update my token (...
Cedervall's user avatar
  • 2,059
0 votes
0 answers
248 views

I want to replace OTLPTraceExporter URL every time my web app receive a new request. Is this even possible?. My current instrumentation file looks like this: async function getTracer(nameWorkflow, ...
Emmanuel_Arreola's user avatar
0 votes
0 answers
112 views

I am trying to instrument OTel in JavaScript. I am getting this error: TypeError: Cannot read properties of undefined (reading 'spanContext') otel.js: const { PrometheusExporter } = require("@...
Faran's user avatar
  • 9
1 vote
0 answers
206 views

I'm working on a Node.js application and need to implement tracing to monitor interactions with another service that consumes messages from Kafka, following the outbox pattern. Is it possible to ...
RobertoBoberto's user avatar
1 vote
1 answer
2k views

I am super impressed by the OpenTelemetry project and would like to learn more about it and experiment with it. This is super flexible and I am not even locked in to a vendor. Currently I am working ...
DevInSpe's user avatar
1 vote
1 answer
2k views

I have worked with OpenTelemetry on React projects, but now I want to see if we can add traces and gather telemetry data with React Native apps? I tried looking up on the internet, it doesn't show ...
Neil Nitin's user avatar
0 votes
1 answer
1k views

Using this as my starting point: https://opentelemetry.io/docs/languages/js/instrumentation/ I'm trying to pre-load opentelemetry instrumentation into my Express app using --require. I added this to ...
Jun-Dai Bates-Kobashigawa's user avatar
1 vote
2 answers
6k views

I deployed open-telemetry collector on my GKE cluster and want to send it traces from browser app, therefor I need to expose it behind GW , the GW require healthcheck endpoint that return an health ...
Feiga Lubow's user avatar
0 votes
1 answer
1k views

The following code is inside a instrumentation.js file: const { NodeSDK } = require('@opentelemetry/sdk-node'); const sdk = new NodeSDK({ resource: new Resource({ [SemanticResourceAttributes....
dayuloli's user avatar
  • 17.2k