sudo npm install -g artillery@latest
artillery version
아래 스크립트를 적절히(?) 수정한다.
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
arrivalRate: 1
rampTo: 5
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"
- get:
url: "/pony"
- get:
url: "/armadillo"
count: 100
artillery run test.yaml
또는
artillery run --output report.json test.yaml
artillery report ./report.json
생성된 HTML 문서를 브라우저에서 확인한다.
VS Code의 Open in browser를 extention을 사용하면 쉽게 확인할 수 있다.
만약 스크립트 실행과 report 생성을 연속적으로 수행하고싶다면 아래 명령어를 실행한다.
artillery run --output report.json cpu-test.yaml && artillery report ./report.json
위 명령어는 테스트가 성공한 경우 리포트를 생성하는 코드다.