jmeter定时器使用

1、Constant Timer

 【 设定固定时长,用来模拟思考时间 ,单位是:毫秒 】

 

2、Uniform Random Timer

 【 均匀随机定时器:产生的延迟时间是个随机值,而各随机值出现的概率均等 】

  总延迟时间 = 随机延迟时间 + 固定延迟时间

 Sample Start: 2020-01-19 18:53:40 CST

 Sample Start: 2020-01-19 18:53:43 CST

 Sample Start: 2020-01-19 18:53:46 CST

3、Precise Throughput Timer

 【 精准吞吐量定时器 】

 

4、Constant Throughput Timer

 【 固定吞吐量定时器,

  this thread only: 设置每个线程的吞吐量。总的吞吐量=线程数*该值,

  all active threads in current thread group:吞吐量被分摊到当前线程组所有的活动线程上。每个线程将根据上次运行时间延迟 】

 

5、Gaussian Random Timer

 【 高斯随机定时器 】

     暂停时间会分布在300到400之间。

  总延迟时间 = 高斯分布值(平均0.0和标准偏差1.0)* 偏差值+固定延迟偏移

6、JSR223 Timer

7、Poisson Random Timer

 【 泊松随机定时器 】  

 每个线程请求之前按随机的时间停顿,大部分的时间间隔出现在一个特定的值,总的延迟就是泊松分布值和偏移值之和。

 下面表示暂停时间会分布在100到400毫秒之间:

8、Synchronizing Timer

    【 同步定时器 】

9、jp@gc - Throughput Shaping Timer

 【 吞吐量整形定时器 ,可以设计梯度的并发请求,并且每种并发请求量(RPS)都可以设定执行的时间 】

10、BeanShell Timer

猜你喜欢

转载自www.cnblogs.com/hd-test/p/12215357.html