Marc Alff
Marc Alff
In file: `sdk/test/trace/sampler_benchmark.cc` tests `BM_SpanCreation()` and `BM_NoopSpanCreation()` are identical. This is because helper `BenchmarkSpanCreation()` ignores the sampler parameter passed. Fix: use the sampler, so that the tests measure what is...
Implement the following spec change: * https://github.com/open-telemetry/opentelemetry-specification/pull/3566
The spec for file configuration is shaping up, opentelemetry-cpp needs to start planning for this. * https://github.com/open-telemetry/oteps/pull/225 * https://github.com/open-telemetry/opentelemetry-specification/pull/3805 * https://github.com/open-telemetry/opentelemetry-specification/pull/3840 * https://github.com/open-telemetry/opentelemetry-specification/pull/3850 * https://github.com/open-telemetry/opentelemetry-specification/pull/3948 * https://github.com/open-telemetry/opentelemetry-specification/pull/3804 * https://github.com/open-telemetry/opentelemetry-specification/pull/3802 *...
Fixes #2481 Request For Comments (Proof of concept code for now) Start with examples/yaml/main.cc Features implemented: * https://github.com/open-telemetry/opentelemetry-configuration * Full support for propagators * Full support for traces, including recursive...
Per: https://opentelemetry.io/docs/reference/specification/metrics/data-model/#opentelemetry-protocol-data-model-producer-recommendations > Producers SHOULD prevent the presence of multiple Metric identities for a given name with the same Resource and Scope attributes. Producers are expected to aggregate data for...
List of PR to fix for release 1.14.0. Required: * #2442 * PR #2451 added new options, after release 1.13.0 * Spec PR defined official names in the mean time...
Initialy reported in PR #2415 When building with bazel, CURL is not compiled with SSL. The following need to be fixed: * the bazel build itself * running at least...
In this code: ``` struct BatchSpanProcessorOptions { /** * The maximum buffer/queue size. After the size is reached, spans are * dropped. */ size_t max_queue_size = 2048; /* The time...
This is needed for security audits on the code. Parent issue: #2282
The OTLP HTTP exporter uses JSON by default. According to the spec, the export format by default should be BINARY instead. https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md#specify-protocol > If no configuration is provided the default...