当前位置:   article > 正文

jmeter 中线程数和 ramp uptime的设置_jmeter runup time 设置

jmeter runup time 设置
  1. 线程数:表示在一次测试中启动多少个线程

  2. ramp up period: 表示在多少时间内发光这些交易

    公式:每秒的交易=线程数/ramp uptime
    即 每秒5交易 = 100线程 / 20 秒发完

  3. 验证服务器版(python)
    import socket
    import datetime

     def tcpServer():
         s=socket.socket()
         host=socket.gethostname()
         port=1234
         s.bind((host,port))
         s.listen(10)
         print( 'Listening')
         while (True):
             try:
                 c, addr=s.accept()
                 c.settimeout(5)  #设置超时时间
                 print( 'Got connection from', addr)
                 req=c.recv(1024).decode()
                 print ('Message received: %s' % req)
                 if req == ":shutdown":
                     c.send(":shuttingdown_down")
                     c.close()
                     break
                 rep=req+datetime.datetime.now().strftime('%Y.%m.%d %H:%M:%S.%f')
                 c.send(rep.encode())
                 # c.close()
             except Exception as e:
                 print(e)
             finally:
                 c.close()
                 print("msg sent, connection closed")
     
     tcpServer()  # 启动这个服务器
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
  4. 建立 jmeter 客户端参考此文 :https://www.cnblogs.com/zhengah/p/4876918.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/498353
推荐阅读
相关标签
  

闽ICP备14008679号