Document RuntimeInfoContributor in v4 Info actuator endpoint #415
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.
Documents the new
RuntimeInfoContributoradded in Steeltoe 4.1.0 that exposes runtime environment information.Changes
Added "Runtime info" section under Built-in Contributors documenting the 7 exposed properties:
runtimeName- .NET runtime name and versionruntimeVersion- CLR versionruntimeIdentifier- Platform RID (e.g., "linux-x64")processArchitecture- Process architecture (e.g., "X64", "Arm64")osArchitecture- OS architectureosDescription- OS descriptionosVersion- OS versionUpdated Sample Output to include the
runtimesection:{ "runtime": { "runtimeName": ".NET 10.0.0", "runtimeVersion": "10.0.0", "runtimeIdentifier": "linux-x64", "processArchitecture": "X64", "osArchitecture": "X64", "osDescription": "Ubuntu 22.04.3 LTS", "osVersion": "Unix 5.15.0.88" } }Original prompt
Summary
Update the v4 documentation for the Info actuator endpoint to document the new
RuntimeInfoContributorbeing added in SteeltoeOSS/Steeltoe#1640.Changes Required
Update the file
docs/docs/v4/management/info.mdwith the following content: