You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Possible test types include smoke, stress, spike, soak and load.
5
+
// Smoke: verify system can habdle a minimal load w/o issues.
6
+
// Stress: determine breaking point by increading number of VUs until the API starts returning errors or response times degrade significantly.
7
+
// Spike: test how the system handles sudden spikes in load. A sudden increase in the number of VUs to simulate a traffic spike, followed by a return to normal load.
8
+
// Soak (endurance): test the system's stability and performance over an extended period. Running a constant load for several hours or days to identify memory leaks or performance degradation over time.
9
+
// Load: test the system under expected peak load conditions. Running a constant load for a period of time to verify that the system can handle the expected number of users.
10
+
exportletoptions={
11
+
stages: [
12
+
{duration: '1m',target: 10},// Ramp-up to 10 users over 1 minute
13
+
{duration: '3m',target: 10},// Stay at 10 users for 3 minutes
14
+
{duration: '1m',target: 0},// Ramp-down to 0 users over 1 minute
0 commit comments