Stress test

Tin9oo·2024년 2월 19일
0

1. Artillery

Artillery Docs

1. artillery를 설치한다. (사전에 node.js 설치 필요)

sudo npm install -g artillery@latest

2. 버전 확인

artillery version

3. test.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
      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

4. 실행

artillery run test.yaml

또는

artillery run --output report.json test.yaml

5. Report

artillery report ./report.json

생성된 HTML 문서를 브라우저에서 확인한다.

VS Code의 Open in browser를 extention을 사용하면 쉽게 확인할 수 있다.

만약 스크립트 실행과 report 생성을 연속적으로 수행하고싶다면 아래 명령어를 실행한다.

 artillery run --output report.json cpu-test.yaml && artillery report ./report.json 

위 명령어는 테스트가 성공한 경우 리포트를 생성하는 코드다.

profile
🚙 HMG SOFTEER 3rd | 💻 BE

0개의 댓글

관련 채용 정보