-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add diagram for the main chaos page sample #2484
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
martincostello
merged 2 commits into
App-vNext:main
from
peter-csala:Add-diagrams-for-chaos-samples
Feb 8, 2025
Merged
Add diagram for the main chaos page sample #2484
martincostello
merged 2 commits into
App-vNext:main
from
peter-csala:Add-diagrams-for-chaos-samples
Feb 8, 2025
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
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2484 +/- ##
=======================================
Coverage 85.36% 85.36%
=======================================
Files 312 312
Lines 7466 7466
Branches 1121 1121
=======================================
Hits 6373 6373
Misses 908 908
Partials 185 185
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
martincostello
approved these changes
Feb 8, 2025
This was referenced Nov 24, 2025
Open
This was referenced Dec 8, 2025
This was referenced Dec 15, 2025
Closed
This was referenced Dec 29, 2025
Closed
This was referenced Jan 1, 2026
Closed
This was referenced Jan 12, 2026
Closed
Merged
This was referenced Jan 19, 2026
Closed
This was referenced Jan 29, 2026
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.
Pull Request
The issue or feature being addressed
This is the follow up for:
Details on the issue fix or feature implementation
Preview
sequenceDiagram actor C as Caller participant P as Pipeline participant F as Fault participant L as Latency participant O as Outcome participant B as Behavior participant D as DecoratedUserCallback C->>P: Calls ExecuteAsync P->>F: Calls ExecuteCore %% Fault Chaos activate F F-->>F: Determines Injection deactivate F alt 2% chance <br/>to inject: 🙈 F->>P: Throws injected Fault P->>C: Propagates Exception else 98% chance <br/>to continue: 🐵 F->>L: Calls ExecuteCore end %% Delay Chaos activate L L-->>L: Determines Injection deactivate L alt 50% chance <br/>to inject: 🙈 L->>L: Injects delay L->>O: Calls ExecuteCore else 50% chance <br/>to continue: 🐵 L->>O: Calls ExecuteCore end %% Outcome Chaos activate O O-->>O: Determines Injection deactivate O alt 10% chance <br/>to inject: 🙈 O->>O: Injects outcome O->>L: Returns result L->>F: Returns result F->>P: Returns result P->>C: Returns result else 90% chance <br/>to continue: 🐵 O->>B: Calls ExecuteCore end %% Behavior Chaos activate B B-->>B: Determines Injection deactivate B alt 1% chance <br/>to inject: 🙈 B->>B: Injects behavior B->>D: Invokes else 99% chance <br/>to continue: 🐵 B->>D: Invokes end D->>B: Returns result B->>O: Returns result O->>L: Returns result L->>F: Returns result F->>P: Returns result P->>C: Returns resultConfirm the following