feat(modules): add C++20 module files for kcenon.monitoring#318
Merged
Conversation
Create C++20 module structure for monitoring_system as part of the C++20 module migration effort (Issue #310). Module partitions: - kcenon.monitoring.core: Core types, interfaces, and utilities - kcenon.monitoring.collectors: Metric collector implementations - kcenon.monitoring.adaptive: Adaptive monitoring features - kcenon.monitoring: Primary module interface CMake changes: - Add MONITORING_ENABLE_MODULES option (requires CMake 3.28+) - Add monitoring_system_modules library target - Module support is opt-in during transition period This implementation follows the module structure defined in the parent epic (common_system#256) and maintains header-based build compatibility.
Document the C++20 module implementation for kcenon.monitoring in both English and Korean changelogs. Changes documented: - Module partitions (core, collectors, adaptive) - CMake configuration options - Transition period support for header-based builds
kcenon
added a commit
that referenced
this pull request
Apr 13, 2026
* feat(modules): add C++20 module files for kcenon.monitoring Create C++20 module structure for monitoring_system as part of the C++20 module migration effort (Issue #310). Module partitions: - kcenon.monitoring.core: Core types, interfaces, and utilities - kcenon.monitoring.collectors: Metric collector implementations - kcenon.monitoring.adaptive: Adaptive monitoring features - kcenon.monitoring: Primary module interface CMake changes: - Add MONITORING_ENABLE_MODULES option (requires CMake 3.28+) - Add monitoring_system_modules library target - Module support is opt-in during transition period This implementation follows the module structure defined in the parent epic (common_system#256) and maintains header-based build compatibility. * docs: add C++20 module support to CHANGELOG Document the C++20 module implementation for kcenon.monitoring in both English and Korean changelogs. Changes documented: - Module partitions (core, collectors, adaptive) - CMake configuration options - Transition period support for header-based builds
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.
Summary
Create C++20 module files for
kcenon.monitoringas part of the Tier 3 libraries migration effort.kcenon.monitoring.core: Core types, interfaces, concepts, and utilitieskcenon.monitoring.collectors: Metric collector implementations and registrykcenon.monitoring.adaptive: Adaptive monitoring, alerts, and load-based adaptationkcenon.monitoringMONITORING_ENABLE_MODULES)Related Issues
Closes #310
Part of C++20 Module Migration Epic (common_system#256)
Module Structure
CMake Configuration
Usage Example
Prerequisites Status
Note: The module files are ready but dependent module imports are commented out until Tier 0/1/2 modules are available.
Test Plan
Breaking Changes
None. Module support is opt-in and header-based builds remain the default.