[CONFIGURATION] Cleanup build targets and docs - #4486
Open
dbarker wants to merge 6 commits into
Open
Conversation
…et and update opentelemetry_configuration to be an interface target to all config libraries
dbarker
marked this pull request as ready for review
August 26, 2026 19:47
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4486 +/- ##
=======================================
Coverage 83.13% 83.13%
=======================================
Files 519 519
Lines 20256 20256
=======================================
Hits 16837 16837
Misses 3419 3419 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contributes to #4352
This PR is needed to maintain the CMake and Bazel target link interface for the declarative configuration component.
It implements the configuration build target cleanup proposed in #4352 (comment)
configuration (Interface to all configuration targets) ├── configuration_core (model, builder interfaces, registry, SdkBuilder, ConfiguredSdk) ├── configuration_yaml (yaml parser) │ ├── PUBLIC configuration_core │ └── PRIVATE ryml::ryml ├── configuration_trace_builders (default trace SDK builders) │ ├── PUBLIC opentelemetry_trace │ └── PUBLIC configuration_core ├── configuration_metrics_builders (default metrics SDK builders) │ ├── PUBLIC opentelemetry_metrics │ └── PUBLIC configuration_core ├── configuration_logs_builders (default logs SDK builders) │ ├── PUBLIC opentelemetry_logs │ └── PUBLIC configuration_core └── configuration_registry_factory (Create a Registry with all default builders ) ├── PUBLIC configuration_core ├── PRIVATE configuration_trace_builders ├── PRIVATE configuration_metrics_builders └── PRIVATE configuration_logs_buildersChanges
configuration_yamltarget and promotes theconfigurationtarget to be an interface to all config targets. This change is necessary to keep backwards compatibility with the 1.28 release. Users linking to opentelemetry-cpp::configuration will get all configuration targets needed to parse yaml and build an SDK.configurationinterface targetPlease provide a brief description of the changes here.
For significant contributions please make sure you have completed the following items:
CHANGELOG.mdupdated for non-trivial changes