feat(api): expose runtime parameters over admin rpc - #83
Open
317787106 wants to merge 2 commits into
Open
Conversation
317787106
marked this pull request as ready for review
August 7, 2026 09:54
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.
What does this PR do?
Adds the
admin_getRuntimeParametersmethod on top of the Admin RPC and IPC transport introduced by #82.@Exportableallowlist from the active runtime parameter implementation.eventPluginConfig.dbConfigand recursively redacts fields with secret-like names, including DNS publishing credentials.Why is this separate?
Runtime configuration export has a wider review surface than the Admin RPC transport itself: it defines a public allowlist, traverses nested configuration objects, filters secrets, and requires consistency while dynamic configuration is being reloaded. Keeping it in a stacked PR makes the transport changes in #82 easier to review independently.
Dependency
This PR is based on
feature/admin_rpcand should be reviewed and merged after #82. Once #82 is merged, the base can be changed todevelop.Testing
CommonParameterExporterTestDynamicArgsTestRelayServiceTestEffectiveCheckServiceTestIpcClientTestIpcServiceTestcheckstyleMainandcheckstyleTestAll listed tests and checks pass locally on JDK 17 / aarch64.