JMeter 中的如何区分 Server Time 和 Network Time

2021-06-23 16:06

阅读:517

标签:request   read   occurs   group   文件中   sample   com   有一个   测试结果   

在 LR 中是有一个“网页细分图”的,通过这个图,你可以比较容易的区分哪些请求的响应时间最长,如果响应时间过程,是消耗在server处理的时候,还是消耗在网络传输过程中——也就是所谓的 Server time 和 Network time。
JMeter 并没有提供这么详细的区分——至少目前尚未发现,但是在 JMeter 的执行结果中也有一个字段可以利用一下。如果想看到这一项,首先要设置将 JMeter 运行结果保存到 XML 格式。

在 JMeter.properties 中找到 
JMeter.save.saveservice.output_format=csv   改为
JMeter.save.saveservice.output_format=xml

重新启动 JMeter ,执行一个脚本并保存测试结果。
使用任何一个文本编辑工具打开 .jtl 文件,内容如下:

 1 
 2 
 3 
 4 
 5 
 6 
 7 
 8 
 9 
10 
11 
12 
13 
14 

15 
找到 lt 这一项。

结合 JMeter 的几篇文章和 email,解释一下 lt 的意思。
lt = latency time (ms)

在 JMeter 中执行一个脚本时,大概的过程如下:

Start timer
Send Request
Wait for data
Initial (first) response packet occurs - this is latency
more data
...
end of response
Stop timer - this is the response time

这里可以看到 lt 是接收到响应的第一个包的时间。
而上面的 XML 文件中,t 这一项表示的是 elapsed time。也就是一个请求从发出到收到完整的响应的时间。
那么 lt 就相当于 LR 中的 Server time,而 t-lt 就相当于 LR 中的 Netwrok time。

JMeter 中的如何区分 Server Time 和 Network Time

标签:request   read   occurs   group   文件中   sample   com   有一个   测试结果   

原文地址:http://www.cnblogs.com/Oliver.net/p/7160355.html

上一篇:PHP substr() 函数

下一篇:js の 计时器


评论


亲,登录后才可以留言!