22 lines
944 B
Markdown
22 lines
944 B
Markdown
jmeter -n -t tsel-simswap.jmx -l tsel-simswap.csv -e -o tsel-simswap
|
|
|
|
===============prompt================
|
|
adjust it so it will run 50 tps, for 10 minutes and max 3000 request
|
|
|
|
===============prompt================
|
|
now i have files like this
|
|
|
|
jmeter-scripts/lastlocation_20tps_10min_3000req.jmx
|
|
jmeter-scripts/lastlocation_50tps_10min_3000req.jmx
|
|
jmeter-scripts/lastlocation_100tps_10min_3000req.jmx
|
|
index.js
|
|
|
|
make me a nodejs app, that will check the system clock every second to run the files in jmeter-scripts based on the time
|
|
1. 23.00-23.10: jmeter-scripts/lastlocation_20tps_10min_3000req.jmx
|
|
2. 23.15-23.25: jmeter-scripts/lastlocation_50tps_10min_3000req.jmx
|
|
3. 23.30-23.40: jmeter-scripts/lastlocation_100tps_10min_3000req.jmx
|
|
|
|
i have prepare shelljs so when the time has come, it will run jmeter command like this
|
|
```bash
|
|
jmeter -n -t [jmx-file] -l [result-csv-file in a new folder] -e -o [output folder same as result-csv-file]
|
|
``` |