-
-
Save Jiveloper/a343cb5e677237eb17ae175a0dbf05f1 to your computer and use it in GitHub Desktop.
성능테스트 블로깅
This file contains 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
# 테스트 실행 시간 | |
k6 run test.js --duration 10s | |
# 스크립트 반복 횟수 | |
k6 run test.js --iterations 100 | |
k6 run test.js -i 100 | |
# 가상 사용자 수 | |
# 가상 사용자 및 테스트 시간과 반복 횟수 설정 | |
k6 run test.js --vus 10 --duration 1m | |
k6 run test.js -u 10 --iterations 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment