Created
October 24, 2021 09:31
-
-
Save agusrichard/c23bc00016b71e0343069478cfebced2 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: '10s', target: 100 }, // below normal load | |
{ duration: '1m', target: 100 }, | |
{ duration: '10s', target: 1400 }, // spike to 1400 users | |
{ duration: '3m', target: 1400 }, // stay at 1400 for 3 minutes | |
{ duration: '10s', target: 100 }, // scale down. Recovery stage. | |
{ duration: '3m', target: 100 }, | |
{ duration: '10s', target: 0 }, | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment