Created
October 24, 2021 09:25
-
-
Save agusrichard/2f26c965c6c3493a3157163eddbd3fae to your computer and use it in GitHub Desktop.
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
export const options = { | |
stages: [ | |
{ duration: '2m', target: 100 }, // below normal load | |
{ duration: '5m', target: 100 }, | |
{ duration: '2m', target: 200 }, // normal load | |
{ duration: '5m', target: 200 }, | |
{ duration: '2m', target: 300 }, // around the breaking point | |
{ duration: '5m', target: 300 }, | |
{ duration: '2m', target: 400 }, // beyond the breaking point | |
{ duration: '5m', target: 400 }, | |
{ duration: '10m', target: 0 }, // scale down. Recovery stage. | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment