Valentin Marchaud
Valentin Marchaud
https://github.com/google/pprof-nodejs/blob/master/ts/src/sourcemapper/sourcemapper.ts
see https://github.com/open-telemetry/opentelemetry-js/pull/2014/files#r598699521 Some packages where `private` is used: - https://github.com/open-telemetry/opentelemetry-js/blob/main/packages/opentelemetry-instrumentation-fetch/src/fetch.ts#L119 - https://github.com/open-telemetry/opentelemetry-js/blob/main/packages/opentelemetry-instrumentation-xml-http-request/src/xhr.ts#L102 - https://github.com/open-telemetry/opentelemetry-js/blob/main/packages/opentelemetry-core/src/trace/sampler/TraceIdRatioBasedSampler.ts
Re-opening following https://github.com/open-telemetry/opentelemetry-js/pull/2640 + https://github.com/open-telemetry/opentelemetry-js/pull/2763 I'm marking this as draft since we have a semi problem with this: its really not easy to test this. Granted there wasn't a lot...
When a server reboot, the pid id change. PMX resolve the pid id when it start but not after. So when you restart a server that is tracked by pid,...
Metrics SDK: 0.32.0 ```ts metrics.workersQueueWaitTime.addCallback(({ observe }) => { observe(this.drawWorkers.waitTime.p50, { percentile: 'p50', type: 'draw' }) }) ``` yield: ``` TypeError: Cannot read properties of undefined (reading '_descriptor') at observe...
This topic was raised at some point back in days in the spec repo without clear answer, simply put we currently propagate context with whatever users are pushing into it...
I'm collecting `runTime` and `waitTime` metrics for my pool with otel: ```ts const metrics = { workersQueueWaitTime: meter.createObservableGauge('content_workers_queue_wait_time'), workersQueueLatency: meter.createObservableGauge('content_workers_queue_latency') } as const // later on const percentiles = ['p50',...