Marc Alff
Marc Alff
Thanks for the report. Agreed, opentelemetry-cpp needs to have this. In more details: * OPENTELEMETRY_ABI_VERSION_NO 1 --> SONAME 1 * OPENTELEMETRY_ABI_VERSION_NO 2 --> SONAME 2
@sjinks Thanks for commenting on this. To clarify a few expectations, see details below. ## Typical library In a typical library, there are: * public API headers * a library...
Orthogonal discussion: Currently we ship different libraries for traces, metrics, logs, common libraries, etc for the SDK. These libraries have inter dependencies (error handler), and cross signal dependencies (metrics depends...
> My point was that > > > OPENTELEMETRY_ABI_VERSION_NO 1 --> SONAME 1 > > OPENTELEMETRY_ABI_VERSION_NO 2 --> SONAME 2 > > won't probably work :-( Every library will have...
> For example, between v1.16.1 and v1.17.0, the size of `absl::otel_v1::variant_internal::VariantStateBase` has increased from 24 to 48 bytes. @sjinks Do you have more details on this ? I am looking...
Thanks for the scripts. I tried to reproduce locally, and got this: The following command: ``` abi-compliance-checker -l libopentelemetry_common -old dumps/v1.16.1-libopentelemetry_common.so.dump -new dumps/v1.17.0-libopentelemetry_common.so.dump --extended ``` allocated up to 110 Gb...
functional tests in opentelemetry-cpp, which pull the latest docker image, started to fail 4 hours ago, at the same time opentelemetry-collector releases 0.116.0 See related: * https://github.com/open-telemetry/opentelemetry-cpp/pull/3213
> @sudarshan12s as we discussed during SIG meeting yesterday, please review the [requirements here for component ownership](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/CONTRIBUTING.md#component-ownership), as well as our [preferred approach for long-term maintenance of instrumentation libraries](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/CONTRIBUTING.md#new-instrumentation). To...
To investigate. Not sure there is an issue with the current code, but this could be a posible cleanup or improvement.
Thanks for raising the issue. The key point here is this comment: ``` /** * RuntimeContextStorage is used by RuntimeContext to store Context frames. * * Custom context management strategies...