그중에 접근성이 좋고, 설정파일도 yml 형식이라 간단해보이는 Artillery를 선택하게 되었다.
Artillery의 특징 및 사용 방법을 알아가보자.
Artillery
Artillery는 성능 테스트 및 부하 테스트를 위한 오픈소스 툴
Node.js 기반에서 실행
API, 웹 애플리케이션, 서버의 성능을 검증하는 데 유용하며, 특히 HTTP, WebSocket, GraphQL, Socket.io, Kinesis 등의 프로토콜을 지원
-> Artillery는 가볍고 설정이 간편한 성능 테스트 툴로, YAML 기반의 설정 파일을 활용하여 다양한 시나리오를 쉽게 정의할 수 있는게 특징이다.
실행
docker를 활용하여 실행
docker image 제공 : artilleryio/artillery:latest
docker run --rm -it -v /home/scripts \
artilleryio/artillery:latest \
run /scripts/test_script.yaml
설정파일
위에 실행 명령어를 보면 알수있듯이 어떠한 동작을 수행해달라고 요청하는 스크립트가 필요하다.
config:
# This is a test server run by team Artillery
# It's designed to be highly scalable
target: http://asciiart.artillery.io:8080
phases:
- duration: 60 # 테스트 진행 시간 60초
arrivalRate: 1 # 첫 가상유저수 1명
rampTo: 5 # 위의 duration 동안 첫 가상유저수부터 해당 값까지 차츰 증가
name: Warm up phase
- duration: 60
arrivalRate: 5
rampTo: 10
name: Ramp up load
- duration: 30
arrivalRate: 10
rampTo: 30
name: Spike phase
# Load & configure a couple of useful plugins
# https://docs.art/reference/extensions
plugins:
ensure: {}
apdex: {}
metrics-by-endpoint: {}
apdex:
threshold: 100
ensure:
thresholds:
- http.response_time.p99: 100
- http.response_time.p95: 75
scenarios:
- flow:
- loop:
- get:
url: '/dino'
- think: 0.5
- get:
url: '/pony'
- get:
url: '/armadillo'
count: 100
config와 scenarios 두 부분으로 구성
config는 로드 테스트 실행 방법(예: 테스트 중인 시스템의 URL, 생성되는 부하량, 사용할 플러그인 등)을 정의하는 부분