Add diagram for the main chaos page sample#2484
Merged
martincostello merged 2 commits intoFeb 8, 2025
Merged
Conversation
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
This was referenced Jan 1, 2026
This was referenced Jan 13, 2026
This was referenced Jun 2, 2026
This was referenced Jun 9, 2026
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.
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