opentelemetry-js
opentelemetry-js copied to clipboard
OpenTelemetry JavaScript Client
- [ /] This only affects the JavaScript OpenTelemetry library - [ /] This may affect other libraries, but I would like to get opinions here first Is there anyway...
## 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...
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...
- [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...
### 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...
### 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...
### 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...
## 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...