mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-24 01:22:10 +02:00
16 lines
524 B
Markdown
16 lines
524 B
Markdown
# loadtest
|
|
|
|
> 선택한 HTTP 또는 WebSockets URL에 대해 부하 테스트를 실행.
|
|
> 더 많은 정보: <https://github.com/alexfernandez/loadtest>.
|
|
|
|
- 동시 사용자 및 초당 요청 수를 지정하여 실행:
|
|
|
|
`loadtest --concurrency {{10}} --rps {{200}} {{https://example.com}}`
|
|
|
|
- 사용자 지정 HTTP 헤더와 함께 실행:
|
|
|
|
`loadtest --headers "{{accept:text/plain;text-html}}" {{https://example.com}}`
|
|
|
|
- 특정 HTTP 메서드를 사용하여 실행:
|
|
|
|
`loadtest --method {{GET}} {{https://example.com}}`
|