Amir Blum
Amir Blum
[The spec for tracing](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#spancontext) includes a trace flags in the context: > TraceFlags contain details about the trace. Unlike TraceState values, TraceFlags are present in all traces. The current version...
**Description of the bug** This is not actually a bug. I investigate heavy traces with many many active record spans and found the following: 1. active record instrument the public...
**Description of the bug** When instrumenting a sidekiq "perform_async" call, two spans are generated, one for sidekiq, and another for the underlying operation to redis (assuming that redis instrumentation is...
### What happened? ## Steps to Reproduce seems that `BasicTracerProvider ` constructor always attempts to `_buildExporterFromEnv` [here](https://github.com/open-telemetry/opentelemetry-js/blob/db0ecc37683507c8ef25b07cfbb5f25b3e263a53/packages/opentelemetry-sdk-trace-base/src/BasicTracerProvider.ts#L84). This get's executed even when the user supplies his own exporter in code,...
Currently odigos nodejs instrumentation agent includes [a few resource detectors](https://github.com/keyval-dev/odigos/blob/f33d40dd1113177e1c7a2bd76a6684881563b2aa/odiglet/agents/nodejs/package.json#L22). ``` "@opentelemetry/resource-detector-alibaba-cloud": "0.28.1", "@opentelemetry/resource-detector-aws": "1.3.1", "@opentelemetry/resource-detector-container": "0.3.1", "@opentelemetry/resource-detector-gcp": "0.29.1", ``` Those resource detectors are installed as dependencies, but I think...
Currently, users can add new destination and add configuration options for them. If there is an issue with the configuration, for example if the endpoint is invalid, odigos auto-scaler component...
Odigos currently supports sending traces to honeycomb. According to [honeycomb documentation](https://docs.honeycomb.io/getting-data-in/otel-collector/#metrics-and-logs-signals), the can also inject metrics and logs. This issue is for adding relevant configs for the gateway collector to...
Work in progress - should add tests and verify in various cases
renovate opened up #2095 to upgrade `mysql2` package to a new version 3. While we only use it for tests, the security warning is not a concern for us, but...
Tedious current latest major is 16. Since tedious 16 dropped support for node 14, it makes our CI fail currently. I attempted to fix that in #1638 in few ways,...