了解 SOAP UI 负载测试中的指标

Understanding metrics within SOAP UI Load Test

我正在 SOAP UI 中进行一些负载测试,需要一些帮助来理解一些指标及其工作原理。下面是我完成的负载测试的屏幕截图:

看看上面的内容,我 correct/incorrect 相信上面的指标是什么意思吗?

限制:100 秒 - 这是否意味着负载测试将持续 1 分 40 秒?那么假设我希望负载测试持续 10 分钟,我可以通过设置 1000 秒来设置它吗?

分钟:- 这是测试步骤 运行 中最快的吗?也是以毫秒为单位吗?

Max - 这是最长的测试步骤 运行 吗?也是以毫秒为单位吗?

avg - 这是平均测试步骤 运行 吗?也是以毫秒为单位吗?

bytes - 这是总共占用了多少内存还是用于最新测试 运行?

谢谢,

根据屏幕截图,您使用的是简单策略,但当然还有其他策略。

https://www.soapui.org/load-testing/simulating-different-types-of-load.html#1-Simple-Strategy---Baseline--Load-and-Soak-Testing

简单的策略因以下原因而闻名:

The Simple Strategy runs the specified number of threads with the specified delay between each run to simulate a breathing space for the server. For example if you want to run a functional test with 10 threads with 10 seconds delay, set Threads to 10, delay to 10000 and random to how much of the delay you want to randomize (i.e. setting it to 0.5 will result in delays between 5 and 10 seconds). When creating a new LoadTest this is the default strategy and set at a relatively low load (5 threads with 1000ms delay).

极限是我相信你的测试什么时候会被削减,即使它可以继续进行进一步的运行。这是总时间。

但这只是因为您使用的是基于时间的限制。 这在这里解释:

https://www.soapui.org/load-testing/creating-and-running-loadtests.html#1-1-LoadTest-Execution

关于您的进一步问题: min: 该步所用的最短时间(以毫秒为单位)
max: 该步走的最长时间(以毫秒为单位)
avg: 测试步骤的平均时间(以毫秒为单位)
bytes:测试步骤处理的字节数

我想你可以在这里阅读所有详细信息:

https://www.soapui.org/load-testing/reference/loadtest-window.html