I want to send an HTTP request every fifteen seconds, e.g.:
我想每15秒发送一次HTTP请求,例如:
- Send an HTTP request to the first user at T+0 (e.g. 10:00:00 AM)
- Send the same HTTP request to user 2 at T+15sec (e.g. 10:00:15 AM)
- Send this request to user 3 at T+30
在T + 0向第一个用户发送HTTP请求(例如,上午10:00:00)
在T + 15秒(例如上午10:00:15)向用户2发送相同的HTTP请求
在T + 30将此请求发送给用户3
1 个解决方案
#1
If you want to start the test at a specific time, you can use JMeter scheduler
. If the Start Time
is future time, JMeter will wait & start the test @ that time.
如果要在特定时间开始测试,可以使用JMeter调度程序。如果开始时间是未来时间,JMeter将等待并开始测试@那个时间。
If you need to add users for every 15 seconds, use the Ramp Up
period. For ex: total no of users are going to be 10, you need 1 user for every 15 seconds, ramp up period should be 150 seconds (15*10).
如果需要每15秒添加一次用户,请使用“加速”时间段。例如:用户总数不会是10,每15秒需要1个用户,加速时间应为150秒(15 * 10)。
#1
If you want to start the test at a specific time, you can use JMeter scheduler
. If the Start Time
is future time, JMeter will wait & start the test @ that time.
如果要在特定时间开始测试,可以使用JMeter调度程序。如果开始时间是未来时间,JMeter将等待并开始测试@那个时间。
If you need to add users for every 15 seconds, use the Ramp Up
period. For ex: total no of users are going to be 10, you need 1 user for every 15 seconds, ramp up period should be 150 seconds (15*10).
如果需要每15秒添加一次用户,请使用“加速”时间段。例如:用户总数不会是10,每15秒需要1个用户,加速时间应为150秒(15 * 10)。