-
Notifications
You must be signed in to change notification settings - Fork 693
[Backport stable/8.7] feat: HealthMonitor reports arbitrarily nested component in a tree-like structure #36806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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
Please cherry-pick the changes locally and resolve any conflicts. git fetch origin backport-23929-to-stable/8.7
git worktree add --checkout .worktree/backport-23929-to-stable/8.7 backport-23929-to-stable/8.7
cd .worktree/backport-23929-to-stable/8.7
git reset --hard HEAD^
git cherry-pick -x 4fe0324a8902fce33f91d2a03d88c6d3ae913bc1 d894274b72edd020a31104f904a674981b614781 42dc62d82a5704355ca151941694a87a7d2765b7
git push --force-with-lease |
…ke structure CriticalHealthMonitor recursively updates registered components in order to aggregate their health status into a single recursive data-type HealthReport has been refactored by adding a children field that makes it recursive. Small refactoring has been done, primarily moving some functions from CriticalComponentHealthMonitor into HealthReport. HealthStatus has been extended with a comparator, so that it's possible to take the "maximum" of a collection of HealthStatus in a way that returns the "worst" HealthStatus. relates #16454 (cherry picked from commit 4fe0324)
(cherry picked from commit d894274)
4177fd1
to
4713521
Compare
…er one (cherry picked from commit 42dc62d)
4713521
to
c390e09
Compare
npepinpe
approved these changes
Aug 14, 2025
Successfully created backport PR for |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
backport stable/8.6
Backport a pull request to stable/8.6
component/operate
Related to the Operate component/team
component/optimize
Related to Optimize component/team
component/tasklist
Related to the Tasklist component/team
component/zeebe
Related to the Zeebe component/team
version:8.6.25
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.
Description
Backport of #23929 to
stable/8.7
.relates to #16454