common/v*: add and update Korean translation (#14557)

* common/v*: add and update Korean translation

* pages.ko/common/volta: fix typo

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* pages.ko/common/volta: fix typo

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* pages.ko/common/vue-build: fix typo

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
코드싸이
2024-11-04 02:12:43 +09:00
committed by GitHub
parent 4c5454d1bf
commit 4b89d6b43b
50 changed files with 1056 additions and 10 deletions

29
pages.ko/common/vegeta.md Normal file
View File

@@ -0,0 +1,29 @@
# vegeta
> HTTP 부하 테스트를 위한 명령줄 도구 및 라이브러리.
> 같이 보기: `ab`.
> 더 많은 정보: <https://github.com/tsenart/vegeta>.
- 30초 동안 공격 시작:
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}}`
- 자체 서명된 HTTPS 인증서가 있는 서버에 대한 공격 시작:
`echo "{{GET https://example.com}}" | vegeta attack -insecure -duration={{30s}}`
- 초당 10개의 요청 비율로 공격 시작:
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} -rate={{10}}`
- 공격을 시작하고 보고서 표시:
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} | vegeta report`
- 공격을 시작하고 결과를 그래프에 플롯(시간에 따른 지연):
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} | vegeta plot > {{경로/대상/결과.html}}`
- 파일에 있는 여러 URL에 대한 공격 시작:
`vegeta attack -duration={{30s}} -targets={{requests.txt}} | vegeta report`