Christian Neumüller
Christian Neumüller
# Bug Report This bug should be present in master and at least since [0.5.0-beta](https://github.com/open-telemetry/opentelemetry-dotnet/releases/tag/0.5.0-beta) (probably since the beginning) ## Symptom If the sampler returns a decision of DROP, StartActivity...
Currently when a span is created in SpanBuilderShim.start, we only have the parent OpenTracing spanContext available. This means that we lose the originial full context when calling SpanProcessor.OnStart (not yet...
ShouldSample receives as input all the known information about the Span to be created, see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.1.0/specification/trace/sdk.md#shouldsample, *except* the instrumentation library info and the Resources. Suppressing unwanted spans depending on the...
See https://github.com/open-telemetry/opentelemetry-specification/pull/263#issuecomment-544441748 and https://github.com/open-telemetry/opentelemetry-specification/pull/263#discussion_r329281769. We should find a way to represent information about the HTTP application (proposed name semantic attribute name `http.app`) *somewhere*, ideally somewhere where for each incoming HTTP...
**Add Context-scoped telemetry attributes which typically apply to all signals associated with a trace as it crosses a single service.** This OTEP aims to address various related demands that have...
The OTEP process defines the states `rejected` and `deferred` which lead to closing a PR without it being merged. It would be great if we had & assigned labels to...
Commit a3d23cc12df52cb10ee0102e50cd54eb943527e6 ensured that the thread context class loader is set when invoking the `service` method. However, the context class loader is currently still not set when invoking newInstance, causing,...
See also discussion on https://github.com/open-telemetry/opentelemetry-specification/pull/1412#issuecomment-776101910 The sampling alorithm for TraceIdRatioBasedSampler is unspecified. As a result, trace IDs that are sampled by some implementations might get non-sampled or re-sampled by SDKs...
https://stackoverflow.com/a/11807961/2128694 suggests there is a way to annotate a package so that fields and/or return values are `@Nonnull` by default, similarly to the `@ParametersAreNonnullByDefault` we already use. This answer is...
## Symptoms ### Steps to reproduce 1. Create a `std::locale` which uses an double byte character encoding. 2. Construct a `sf::String` from a string/character literal which contains characters represented as...