add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/jmeter.md Normal file
View File

@@ -0,0 +1,20 @@
# jmeter
> 一个开源的Java应用程序旨在进行负载测试功能行为和性能测量。
> 更多信息:<https://jmeter.apache.org>。
- 在无GUI模式下运行特定的测试计划
`jmeter --nongui --testfile {{path/to/file.jmx}}`
- 使用特定日志文件在无GUI模式下运行测试计划
`jmeter --nogui --testfile {{path/to/file.jmx}} --logfile {{path/to/logfile.jtl}}`
- 使用特定代理在无GUI模式下运行测试计划
`jmeter --nongui --testfile {{path/to/file.jmx}} --proxyHost {{127.0.0.1}} --proxyPort {{8888}}`
- 使用特定JMeter属性在无GUI模式下运行测试计划
`jmeter --jmeterproperty {{key}}='{{value}}' --nongui --testfile {{path/to/file.jmx}}`