From 2d7c31cd89c854a7a768f03f6100e57051b8be12 Mon Sep 17 00:00:00 2001 From: BenitoVisone Date: Mon, 13 Nov 2023 12:37:02 +0100 Subject: [PATCH] edit test parameter --- ...10-get-token-ramping-and-constant-scenario.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/10-get-token-ramping-and-constant-scenario.js b/src/10-get-token-ramping-and-constant-scenario.js index 4b462d5..3a928a4 100644 --- a/src/10-get-token-ramping-and-constant-scenario.js +++ b/src/10-get-token-ramping-and-constant-scenario.js @@ -28,23 +28,23 @@ export const options = { { target: 70, duration: '1m' }, // // Continue starting 300 iterations per `timeUnit` for the following two minutes. - { target: 150, duration: '2m' } + { target: 200, duration: '2m' } ], }, constant: { executor: 'constant-arrival-rate', // test duration - duration: '2m', + duration: '4m', // test rate - rate: 150, + rate: 200, // It should start `rate` iterations per second timeUnit: '1s', // pre-allocate vu - preAllocatedVUs: 150, + preAllocatedVUs: 200, // max allowed vu maxVUs: 300, @@ -57,22 +57,22 @@ export const options = { executor: 'ramping-arrival-rate', // Start iterations per `timeUnit` - startRate: 150, + startRate: 200, // Start `startRate` iterations per seconds timeUnit: '1s', // Pre-allocate necessary VUs. - preAllocatedVUs: 150, + preAllocatedVUs: 200, // max allowed vu maxVUs: 300, - startTime: '6m', + startTime: '8m', stages: [ // Start 300 iterations per `timeUnit` for four minutes. - { target: 150, duration: '1m' }, + { target: 200, duration: '1m' }, // Linearly ramp-down to starting 100 iterations per `timeUnit` over the following two minutes. { target: 70, duration: '1m' },