opentelemetry-js icon indicating copy to clipboard operation
opentelemetry-js copied to clipboard

OpenTelemetry JavaScript Client

Results 635 opentelemetry-js issues
Sort by recently updated
recently updated
newest added
trafficstars

- [ /] This only affects the JavaScript OpenTelemetry library - [ /] This may affect other libraries, but I would like to get opinions here first Is there anyway...

signal:traces

## Description According to the spec a TracerProvider should return no-op tracer when shutdown. ## Steps to Reproduce Test for `BasicTracerProvider.test.ts` ```ts describe('.getTracer()', () => { it('should return no-op tracer...

never-stale
spec-inconsistency
sdk:traces

When setting up and operating a system that uses opentelemetry components, it is useful to have some insight into the metrics collection system itself, to see how many spans are...

feature-request
signal:metrics

- [x] This only affects the JavaScript OpenTelemetry library - [ ] This may affect other libraries, but I would like to get opinions here first In case a span...

Discussion
signal:traces

### What happened? ## Steps to Reproduce Follow steps in the readme example, but have the port already in use: ``` const { PrometheusExporter } = require('@opentelemetry/exporter-prometheus'); const { MeterProvider...

bug
priority:p1

### What happened? ## Steps to Reproduce When a cross-origin request is done (eg. `example.com` -> `resources.vendor.com`, but also `example.com` -> `static.example.com` or even `localhost:3000`(a webpack server) -> `localhost:8080` (API...

bug
priority:p2

### What happened? ## Steps to Reproduce * Create a Lambda function that uses the OTel Lambda layer and Node v14 runtime * Within that function use the API to...

bug
priority:p2

## Which problem is this PR solving? Provide the option of exporting traces using protobuf from the browser. Previously this package only supported Node, since this package now uses protobuf-js...

## Which problem is this PR solving? [As per the specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/http.md#http-client) `http.url` attribute should be "Full HTTP request URL in the form `scheme://host[:port]/path?query[#fragment]`." Currently if a XHR request is done...

Hi: I have a simple Node.js app the user the Open Telemetry Jaeger exporter to send trace information into Jaeger. It runs fine when I fire up the Jaeger as...