Document RuntimeInfoContributor in v4 Info actuator endpoint#415
Merged
Conversation
Copilot
AI
changed the title
[WIP] Update v4 documentation for Info actuator endpoint
Document RuntimeInfoContributor in v4 Info actuator endpoint
Jan 23, 2026
bart-vmware
reviewed
Jan 26, 2026
bart-vmware
reviewed
Jan 26, 2026
6c035b7 to
34eb416
Compare
bart-vmware
previously approved these changes
Jan 30, 2026
Preview link: https://www-steeltoe-pr-415.azurewebsites.net
|
Co-authored-by: TimHess <3947063+TimHess@users.noreply.github.com>
34eb416 to
6d18f3e
Compare
bart-vmware
approved these changes
Jan 30, 2026
There was a problem hiding this comment.
Pull request overview
This PR updates the v4 Info actuator documentation to cover the new RuntimeInfoContributor in Steeltoe 4.1.0 and adjusts the build-and-stage GitHub Actions workflow.
Changes:
- Adds a “Runtime info” built-in contributor section documenting the runtime-related properties exposed by the
RuntimeInfoContributor. - Extends the Info endpoint sample JSON output to include the new
runtimesection with the documented properties. - Updates the
build-and-stageworkflow to newer major versions of core GitHub Actions and expands the set of installed .NET SDK versions.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| docs/docs/v4/management/info.md | Documents the RuntimeInfoContributor and its properties and updates the sample Info actuator JSON to include a runtime object. |
| .github/workflows/build-and-stage.yml | Bumps actions/checkout, actions/setup-dotnet, and actions/upload-artifact versions and configures the workflow to install .NET SDKs 8.0, 9.0, and 10.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
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: