当前位置:   article > 正文

Locust性能测试教程_locust 性能测试

locust 性能测试

Locust性能测试1-环境准备与基本使用

前言

提到性能测试,大部分小伙伴想到的就是LR和jmeter这种工具,小编一直不太喜欢写这种工具类的东西,我的原则是能用代码解决的问题,尽量不去用工具。
python里面也有一个性能测试框架Locust,本篇简单的介绍Locust的基本使用

环境准备:
python3.6
windows电脑
locust

Locust简介

Locust是一款易于使用的分布式用户负载测试工具。它用于对网站(或其他系统)进行负载测试,并确定系统可以处理多少并发用户。
这个想法是,在测试期间,一群蝗虫(Locust)会攻击你的网站。您定义了每个蝗虫Locust(或测试用户)的行为,并且实时地从Web UI监视群集过程。这将有助于您在让真正的用户进入之前进行测试并识别代码中的瓶颈。
Locust完全基于事件,因此可以在一台计算机上支持数千个并发用户。与许多其他基于事件的应用程序相比,它不使用回调。相反,它通过协程(gevent)机制使用轻量级过程。每个蝗虫蜂拥到你的网站实际上是在自己的进程内运行(或者是greenlet)。这允许您在Py​​thon中编写非常富有表现力的场景,而不会使代码复杂化。

** gevent是第三方库,通过greenlet实现协程。greenlet是python的并行处理的一个库。 python 有一个非常有名的库叫做 stackless ,用来做并发处理, 主要是弄了个叫做tasklet的微线程的东西, 而greenlet 跟stackless的最大区别是greenlet需要你自己来处理线程切换, 就是说,你需要自己指定现在执行哪个greenlet再执行哪个greenlet。**

环境安装

Locust支持Python 2.7, 3.4, 3.5, and 3.6的版本,小编的环境是python3.6直接用pip安装就行

$ pip install locustio

安装完成后,使用pip查看版本号0.9.0

$ pip show locustio

使用--help查看帮助信息

$ locust --help

快速开始

locust里面请求是基于requests的,每个方法请求和requests差不多,请求参数、方法、响应对象和requests一样的使用,之前学过requests库的,这里就非常简单了

  • requests.get 对应client.get
  • requests.post 对应client.post
    1. # 保存为demo.py
    2. # coding:utf-8
    3. from locust import HttpLocust,TaskSet,task
    4. class BlogDemo(TaskSet):
    5. '''用户行为:打开我的博客首页demo'''
    6. @task(1)
    7. def open_blog(self):
    8. # 定义requests的请求头
    9. header = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36"}
    10. r = self.client.get("/yoyoketang", headers=header, verify=False)
    11. print(r.status_code)
    12. assert r.status_code == 200
    13. class websitUser(HttpLocust):
    14. task_set = BlogDemo
    15. min_wait = 3000 # 单位毫秒
    16. max_wait = 6000 # 单位毫秒
    17. # host = "http://localhost:8888" #(待测试的ip或者域名)
    18. if __name__ == "__main__":
    19. import os
    20. os.system("locust -f demo.py --host=https://www.cnblogs.com")

代码注解:
新建一个类BlogDemo(TaskSet),继承TaskSet,该类下面写一些准备请求的行为(访问的接口)
里面的self.client调用get和post方法,跟requests是一样的
@task装饰该方法表示为用户行为。括号里面参数表示该行为挑选执行的权重,数值越大,执行频率越高,不设置默认是1

WebsiteUser()类用于设置性能测试。
task_set :指向一个定义了的用户行为类。
min_wait :用户执行任务之间等待时间的下界,单位:毫秒。
max_wait :用户执行任务之间等待时间的上界,单位:毫秒。

启动locust

启动locust可以直接在pycharm里面执行上面的代码,运行后编辑器出现两行
[2018-09-12 23:23:57,500] DESKTOP-HJ487C8/INFO/locust.main: Starting web monitor at *:8089
[2018-09-12 23:23:57,500] DESKTOP-HJ487C8/INFO/locust.main: Starting Locust 0.9.0

也可以通过cmd执行

$ locust -f demo.py --host=https://www.cnblogs.com

  • -f 参数是指定运行的脚本
  • --host是指定运行项目的host地址,这里用的https://www.cnblogs.com,代码里面get访问的是"/yoyoketang",拼接起来就是完整地址了

8089是该服务启动的端口号。由于是在本机上搭建的locust,所以可以直接在浏览器输入http://localhost:8089/打开,
如果是在其它机器上搭建的locust服务,那就通过http://其它机器IP:8089/打开

  • Number of users to simulate 设置虚拟用户总数
  • Hatch rate (users spawned/second) 每秒启动虚拟用户数
  • 点击Start swarming 开始运行性能测试

效果展示

设置虚拟用户数30,每秒启动5个用户,点击Start swarming 开始运行

  • Type:请求类型;
  • Name:请求路径;
  • requests:当前请求的数量;
  • fails:当前请求失败的数量;
  • Median:中间值,单位毫秒,一般服务器响应时间低于该值,而另一半高于该值;
  • Average:所有请求的平均响应时间,毫秒;
  • Min:请求的最小的服务器响应时间,毫秒;
  • Max:请求的最大服务器响应时间,毫秒;
  • Content Size:单个请求的大小,单位字节;
  • reqs/sec:每秒钟请求的个数。

点stop可以停止测试

New test可以重新设置用户数

Charts图标展示

三个图标分别是

  • 吞吐量/每秒响应事务数(rps)实时统计
  • 平均响应时间/平均事务数实时统计
  • 虚拟用户数运行

Locust性能测试2-先登录场景案例

前言

有很多网站不登录的话,是无法访问到里面的页面的,这就需要先登录了
实现场景:先登录(只登录一次),然后访问页面->我的地盘页->产品页->项目页

官方案例

下面是一个简单的locustfile.py的简单示例:

  1. from locust import HttpLocust, TaskSet
  2. def login(l):
  3. l.client.post("/login", {"username":"ellen_key", "password":"education"})
  4. def logout(l):
  5. l.client.post("/logout", {"username":"ellen_key", "password":"education"})
  6. def index(l):
  7. l.client.get("/")
  8. def profile(l):
  9. l.client.get("/profile")
  10. class UserBehavior(TaskSet):
  11. tasks = {index: 2, profile: 1}
  12. def on_start(self):
  13. login(self)
  14. def on_stop(self):
  15. logout(self)
  16. class WebsiteUser(HttpLocust):
  17. task_set = UserBehavior
  18. min_wait = 5000
  19. max_wait = 9000

这里我们定义了许多Locust任务,它们是带有一个参数(Locust类实例)的普通Python callables 。这些任务收集在tasks属性的TaskSet类下 。然后我们有一个代表用户的 类,我们在其中定义模拟用户在执行任务之间应该等待多长时间,以及哪个 类应该定义用户的“行为”。 类可以继承HttpLocust、TaskSet、TaskSet

HttpLocust类从继承 Locust的类,并把它添加一个客户端属性,它是的一个实例 HttpSession,可用于使HTTP请求。

可以声明任务的方法,通常是更方便,就是使用 @task装饰器。以下代码与上述代码相同:

  1. from locust import HttpLocust, TaskSet, task
  2. class UserBehavior(TaskSet):
  3. def on_start(self):
  4. """ on_start is called when a Locust start before any task is scheduled """
  5. self.login()
  6. def on_stop(self):
  7. """ on_stop is called when the TaskSet is stopping """
  8. self.logout()
  9. def login(self):
  10. self.client.post("/login", {"username":"ellen_key", "password":"education"})
  11. def logout(self):
  12. self.client.post("/logout", {"username":"ellen_key", "password":"education"})
  13. @task(2)
  14. def index(self):
  15. self.client.get("/")
  16. @task(1)
  17. def profile(self):
  18. self.client.get("/profile")
  19. class WebsiteUser(HttpLocust):
  20. task_set = UserBehavior
  21. min_wait = 5000
  22. max_wait = 9000

在Locust类(以及HttpLocust 因为它是一个子类),也可以让一个在指定最小和最大等待时间毫秒,每个模拟用户之间的任务执行(min_wait和MAX_WAIT)以及其他用户的行为。默认情况下,时间是在min_wait和max_wait之间统一随机选择的,但是可以通过将wait_function设置为任意函数来使用任何用户定义的时间分布。例如,对于指数分布的等待时间平均为1秒:

  1. import random
  2. class WebsiteUser(HttpLocust):
  3. task_set = UserBehaviour
  4. wait_function = lambda self: random.expovariate(1)*1000

项目实例

上面的官方案例只是一些伪代码,不能在真实的环境中跑起来,接下来把上面的理论执行用到真实的项目环境中
http协议是无状态的,所以登录请求和登录后的请求它是独立的,但是登录后的请求需要依赖先登录拿到cookies,才能保持登录状态,这个在之前python接口自动化里面可以用session来解决

s = requests.session()

HttpLocust类从继承 Locust的类,并把它添加一个客户端属性,它是的一个实例 HttpSession,可用于使HTTP请求,这就相当于它自动使用了session机制,类似于client = requests.session()
所以后面的请求,直接拿client.get()、client.post()请求就可以了

  1. # 保存为locustfile.py
  2. # coding=utf-8
  3. from locust import HttpLocust, TaskSet, task
  4. '''
  5. 实现场景:先登录(只登录一次),然后访问->我的地盘页->产品页->项目页
  6. 访问我的地盘页面权重为2,产品页和项目页权重各为1
  7. ***作者:上海-悠悠 QQ群:588402570**
  8. '''
  9. class UserBehavior(TaskSet):
  10. '''蝗虫行为类'''
  11. def _login(self):
  12. '''登录方法'''
  13. # host = 'http://192.168.x.xx:80' # 禅道的服务器地
  14. loginUrl ="/zentao/user-login.html/"
  15. h = {
  16. "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0",
  17. "Content-Type": "application/x-www-form-urlencoded",
  18. }
  19. body = {"account": "yoyo", # 你自己的账号
  20. "password": "******", # 你自己的密码
  21. "keepLogin[]": "on",
  22. "referer": "/zentao/my/"
  23. }
  24. r = self.client.post(loginUrl, data=body, headers=h)
  25. print(r.text)
  26. assert "parent.location='/zentao/index.html'" in r.text
  27. def on_start(self):
  28. '''任务开始准备工作:只登录一次'''
  29. self._login()
  30. # 任务1-我的地盘
  31. @task(2)
  32. def zentao_my(self):
  33. print("---访问页面-我的地盘---")
  34. r = self.client.get("/zentao/my/")
  35. assert "我的地盘" in r.text
  36. # 任务2-产品页
  37. @task(1)
  38. def zentao_product(self):
  39. print("---访问页面-产品页---")
  40. r = self.client.get("/zentao/product-browse.html/")
  41. assert "需求列表" in r.text
  42. # 任务3-项目
  43. @task(1)
  44. def zentao_prject(self):
  45. print("---访问页面-项目---")
  46. r = self.client.get("/zentao/project/")
  47. assert "项目首页" in r.text
  48. class WebsiteUser(HttpLocust):
  49. task_set = UserBehavior
  50. min_wait = 1000
  51. max_wait = 1000
  52. if __name__ == "__main__":
  53. import os
  54. os.system("locust -f locustfile.py --host=http://192.168.x.xx:80")

设置1个虚拟用户,每秒启动1个服务,点start后运行结果

从结果可以看到登录的请求只访问了一次,然后是“我的地盘”页面的次数差不多是产品页、项目页请求次数的2倍(这个只是概率上讲是2倍,不完全等于2倍)
定义on_start()相当于用例的准备操作,当然还有on_stop用于数据清理操作

Locust性能测试3-no-web模式和csv报告保存

前言

前面是在web页面操作,需要手动的点start启动,结束的时候也需要手工去点stop,没法自定义运行时间,这就不太方便。
locust提供了命令行运行的方法,不启动web页面也能运行,这就是no-web模式启动

无web-UI模式

在没有Web UI的情况下运行locust - 可以打开cmd 通过使用--no-web参数,

  • -c指定要生成的Locust用户数
  • -r每秒启动虚拟用户数

先cd到脚本当前目录,然后执行指令

locust -f locustfile.py --host=http://192.168.x.xx:80 --no-web -c 1 -r 1

设置运行时间

如果要指定测试的运行时间,可以使用--run-time

locust -f locustfile.py --host=http://192.168.x.xx:80 --no-web -c 1 -r 1 --run-time 10

或使用-t参数

locust -f locustfile.py --host=http://192.168.x.xx:80 --no-web -c 1 -r 1 -t 10

运行时间单位,如果不写单位默认是s,也可以指定小时h,分钟m,可以参考以下时间格式

  • 10s 10秒(不写单位默认s)
  • 5m 表示5分钟
  • 1h 1小时
  • 1m30s 1分30秒

导出csv格式报告

您可能希望通过CSV文件保存的Locus结果。在这种情况下,有两种方法可以做到这一点。

首先,使用Web UI运行Locust时,您可以在“下载数据”选项卡下点击下载CSV文件。

  • Download request statistics CSV
  • Download response time distribution CSV
  • Download exceptions CSV

也可以可以使用命令行志--no-web模式运行Locust,加上--csv=example参数保存前面两个CSV文件。

locust -f locustfile.py --host=http://192.168.x.xx:80 --no-web --csv=example -c 1 -r 1 -t 10s

使用--csv=example会自动保存两个文件到当前脚本目录example_distribution.csv、example_requests.csv

example_requests.csv打开效果展示

 

Locust性能测试4-参数关联

前言

前面【Locust性能测试2-先登录场景案例】讲了登录的案例,这种是直接传账号和密码就能登录了,有些登录的网站会复杂一点,
需要先从页面上动态获取参数,作为登录接口的请求参数,如【学信网:https://account.chsi.com.cn/passport/login】的登录接口请求参数

请求参数

需要先发个get请求,从返回的html页面中解析出需要的数据

  • lt : LT-277623-5ldGTLqQhP4foKihHUlgfKPeGGyWVI
  • execution: e1s1

备注:
lt 参数是每次打开浏览器,访问登录首页时服务端会返回一个新的数据
execution 参数是表示网站刷新次数,可以刷新下再登录,就变成 e2s1了

  1. <input class="btn_login" name="submit" accesskey="l" value="登录" tabindex="4" type="submit" title="登录" />
  2. <div class="account-oprate clearfix">
  3. <a class="find-yhm" href="https://account.chsi.com.cn/account/password!rtvlgname">找回用户名</a>
  4. <a class="find-mm" href="https://account.chsi.com.cn/account/password!retrive">找回密码</a>
  5. <a href="https://account.chsi.com.cn/account/preregister.action?from=account-login" class="regist-btn">注册</a>
  6. </div>
  7. <input type="hidden" name="lt" value="LT-279621-fnisPBt0FVGNFrfWzJJqhTEyw6VkfH" />
  8. <input type="hidden" name="execution" value="e2s1" />
  9. <input type="hidden" name="_eventId" value="submit" />

locustfile3.py代码

前面用篇专门讲了requests实现接口的参数关联案例,这里直接转化成locust脚本就行了

  1. # coding:utf-8
  2. from locust import HttpLocust, TaskSet, task
  3. from lxml import etree
  4. class LoginDemo(TaskSet):
  5. '''用户行为描述'''
  6. def get_it_execution(self):
  7. result = {}
  8. h1 = {
  9. "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36",
  10. }
  11. self.client.headers.update(h1)
  12. r = self.client.get("/passport/login", verify=False)
  13. # 从返回html页面,解析出lt、execution
  14. dom = etree.HTML(r.content.decode("utf-8"))
  15. try:
  16. result["lt"] = dom.xpath('//input[@name="lt"]')[0].get("value")
  17. result["execution"] = dom.xpath('//input[@name="execution"]')[0].get("value")
  18. print(result)
  19. except:
  20. print("lt、execution参数获取失败!")
  21. return result
  22. def login(self, user, psw):
  23. result = self.get_it_execution()
  24. loginurl = "/passport/login"
  25. h2 = {
  26. "Referer": loginurl,
  27. "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36",
  28. "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
  29. "Origin": "https://account.chsi.com.cn",
  30. "Content-Length": "119",
  31. "Cache-Control": "max-age=0",
  32. "Upgrade-Insecure-Requests": "1",
  33. "Content-Type": "application/x-www-form-urlencoded"
  34. }
  35. body = {
  36. "username": user,
  37. "password": psw,
  38. "rememberMe": "true",
  39. "lt": result["lt"],
  40. "execution": result["execution"],
  41. "_eventId": "submit"
  42. }
  43. self.client.headers.update(h2)
  44. print(self.client.headers)
  45. r1 = self.client.post(loginurl, data=body, verify=False)
  46. # print(r1.text)
  47. @task(1)
  48. def test_login(self):
  49. # 测试数据
  50. user = "13888888888"
  51. psw = "111111"
  52. self.login(user, psw)
  53. class websitUser(HttpLocust):
  54. task_set = LoginDemo
  55. host = "https://account.chsi.com.cn"
  56. min_wait = 3000 # 单位毫秒
  57. max_wait = 6000 # 单位毫秒
  58. if __name__ == "__main__":
  59. import os
  60. os.system("locust -f locustfile3.py")

 

Locust性能测试5-参数化批量注册

前言

实现场景:所有并发虚拟用户共享同一份测试数据,并且保证虚拟用户使用的数据不重复。
例如,模拟10用户并发注册账号,总共有100个手机号,要求注册账号不重复,注册完毕后结束测试

准备数据

虚拟用户locust1locust2locust3locust4locust5locust6locust7locust8locust9locust10
共享数据tel1tel2tel3tel4tel5tel6tel7......tel99tel100

虚拟用户数,可以在启动的时候设置,这里先装备好注册需要用到的手机号,可以用list生成

  1. # 生成测试手机号
  2. demo = 13812120000
  3. teldatas = [str(demo+i) for i in range(100)]
  4. print(teldatas)

将测试数据加到队列

  1. import queue
  2. # 生成测试手机号
  3. demo = 13812120000
  4. teldatas = [str(demo+i) for i in range(100)]
  5. # print(teldatas)
  6. # 添加到队列
  7. telqueue = queue.Queue()
  8. for i in teldatas:
  9. telqueue.put_nowait(i)

注册demo参考

以下是一个简单的demo模型,具体的注册接口替换过去就可以了

  1. # 保存为 locustfile4.py
  2. # coding=utf-8
  3. from locust import HttpLocust, TaskSet, task
  4. import queue
  5. class test_taskset(TaskSet):
  6. @task
  7. def register(self):
  8. try:
  9. tel = self.locust.telqueue.get() # 获取队列里的数据
  10. print(tel)
  11. except queue.Empty: # 队列取空后,直接退出
  12. print("no data exist")
  13. exit(0)
  14. print("当前注册手机号:%s" % tel)
  15. # body = {
  16. # "username": tel,
  17. # "psd": "123456",
  18. # }
  19. # self.client.post("/register", data=body) # POST方法发送请求
  20. class test_run(HttpLocust):
  21. host = 'http://192.168.1.xxx:80'
  22. task_set = test_taskset
  23. # 生成测试手机号
  24. teldatas = [str(13812120000+i) for i in range(100)]
  25. # 添加到队列
  26. telqueue = queue.Queue()
  27. for i in teldatas:
  28. telqueue.put_nowait(i)
  29. if __name__ == "__main__":
  30. import os
  31. os.system("locust -f locustfile4.py")

cmd命令行启动

$ locust -f locustfile4.py

打开web页面,输入10个用户, 可以看到控制台的打印

[2018-09-21 00:00:58,013] DESKTOP-HJ487C8/INFO/stdout: 当前注册手机号:13812120096
[2018-09-21 00:00:58,013] DESKTOP-HJ487C8/INFO/stdout:
[2018-09-21 00:00:58,015] DESKTOP-HJ487C8/INFO/stdout: 13812120097
[2018-09-21 00:00:58,015] DESKTOP-HJ487C8/INFO/stdout:
[2018-09-21 00:00:58,015] DESKTOP-HJ487C8/INFO/stdout: 当前注册手机号:13812120097
[2018-09-21 00:00:58,015] DESKTOP-HJ487C8/INFO/stdout:
[2018-09-21 00:00:58,015] DESKTOP-HJ487C8/INFO/stdout: 13812120098
[2018-09-21 00:00:58,015] DESKTOP-HJ487C8/INFO/stdout:
[2018-09-21 00:00:58,015] DESKTOP-HJ487C8/INFO/stdout: 当前注册手机号:13812120098
[2018-09-21 00:00:58,015] DESKTOP-HJ487C8/INFO/stdout:
[2018-09-21 00:00:58,017] DESKTOP-HJ487C8/INFO/stdout: 13812120099
[2018-09-21 00:00:58,017] DESKTOP-HJ487C8/INFO/stdout:
[2018-09-21 00:00:58,017] DESKTOP-HJ487C8/INFO/stdout: 当前注册手机号:13812120099
[2018-09-21 00:00:58,017] DESKTOP-HJ487C8/INFO/stdout:

 

Locust性能测试6-命令行参数详解

前言

当我们在linux上使用locust工具压测的时候,会使用no-web模式,然后需要收集运行的日志,方便查找问题。

命令行参数

输入locust --help 查看所有的命令行参数

  1. > locust --help
  2. Usage: locust [options] [LocustClass [LocustClass2 ... ]]
  3. Options:
  4. -h, --help show this help message and exit
  5. -H HOST, --host=HOST Host to load test in the following format:
  6. http://10.21.32.33
  7. --web-host=WEB_HOST Host to bind the web interface to. Defaults to '' (all
  8. interfaces)
  9. -P PORT, --port=PORT, --web-port=PORT
  10. Port on which to run web host
  11. -f LOCUSTFILE, --locustfile=LOCUSTFILE
  12. Python module file to import, e.g. '../other.py'.
  13. Default: locustfile
  14. --csv=CSVFILEBASE, --csv-base-name=CSVFILEBASE
  15. Store current request stats to files in CSV format.
  16. --master Set locust to run in distributed mode with this
  17. process as master
  18. --slave Set locust to run in distributed mode with this
  19. process as slave
  20. --master-host=MASTER_HOST
  21. Host or IP address of locust master for distributed
  22. load testing. Only used when running with --slave.
  23. Defaults to 127.0.0.1.
  24. --master-port=MASTER_PORT
  25. The port to connect to that is used by the locust
  26. master for distributed load testing. Only used when
  27. running with --slave. Defaults to 5557. Note that
  28. slaves will also connect to the master node on this
  29. port + 1.
  30. --master-bind-host=MASTER_BIND_HOST
  31. Interfaces (hostname, ip) that locust master should
  32. bind to. Only used when running with --master.
  33. Defaults to * (all available interfaces).
  34. --master-bind-port=MASTER_BIND_PORT
  35. Port that locust master should bind to. Only used when
  36. running with --master. Defaults to 5557. Note that
  37. Locust will also use this port + 1, so by default the
  38. master node will bind to 5557 and 5558.
  39. --heartbeat-liveness=HEARTBEAT_LIVENESS
  40. set number of seconds before failed heartbeat from
  41. slave
  42. --heartbeat-interval=HEARTBEAT_INTERVAL
  43. set number of seconds delay between slave heartbeats
  44. to master
  45. --expect-slaves=EXPECT_SLAVES
  46. How many slaves master should expect to connect before
  47. starting the test (only when --no-web used).
  48. --no-web Disable the web interface, and instead start running
  49. the test immediately. Requires -c and -r to be
  50. specified.
  51. -c NUM_CLIENTS, --clients=NUM_CLIENTS
  52. Number of concurrent Locust users. Only used together
  53. with --no-web
  54. -r HATCH_RATE, --hatch-rate=HATCH_RATE
  55. The rate per second in which clients are spawned. Only
  56. used together with --no-web
  57. -t RUN_TIME, --run-time=RUN_TIME
  58. Stop after the specified amount of time, e.g. (300s,
  59. 20m, 3h, 1h30m, etc.). Only used together with --no-
  60. web
  61. -L LOGLEVEL, --loglevel=LOGLEVEL
  62. Choose between DEBUG/INFO/WARNING/ERROR/CRITICAL.
  63. Default is INFO.
  64. --logfile=LOGFILE Path to log file. If not set, log will go to
  65. stdout/stderr
  66. --print-stats Print stats in the console
  67. --only-summary Only print the summary stats
  68. --no-reset-stats [DEPRECATED] Do not reset statistics once hatching has
  69. been completed. This is now the default behavior. See
  70. --reset-stats to disable
  71. --reset-stats Reset statistics once hatching has been completed.
  72. Should be set on both master and slaves when running
  73. in distributed mode
  74. -l, --list Show list of possible locust classes and exit
  75. --show-task-ratio print table of the locust classes' task execution
  76. ratio
  77. --show-task-ratio-json
  78. print json data of the locust classes' task execution
  79. ratio
  80. -V, --version show program's version number and exit

Locust性能测试6-命令行参数详解

参数说明

参数名称 | 参数值 | 参数说明

  • | :- | :-
    -h, --help | 不带参数 |查看帮助信息
    -H HOST, –host=HOST | HOST |指定被测试的主机,采用以格式:http://10.21.32.33
    –web-host=WEB_HOST| WEB_HOST |指定运行 Locust Web 页面的主机,默认为空 “。
    -P PORT, –port=PORT, –web-port=PORT| PORT|指定 –web-host 的端口,默认是8089
    -f LOCUSTFILE, –locustfile=LOCUSTFILE| LOCUSTFILE|指定运行 Locust 性能测试文件,默认为: locustfile.py
    –csv=CSVFILEBASE, –csv-base-name=CSVFILEBASE| CSVFILEBASE| 以CSV格式存储当前请求测试数据。
    –master| 不带参数| Locust 分布式模式使用,当前节点为 master 节点。
    –slave |不带参数|Locust 分布式模式使用,当前节点为 slave 节点。
    –master-host=MASTER_HOST | MASTER_HOST|分布式模式运行,设置 master 节点的主机或 IP 地址,只在与 –slave 节点一起运行时使用,默认为:127.0.0.1.
    –master-port=MASTER_PORT| MASTER_PORT| 分布式模式运行, 设置 master 节点的端口号,只在与 –slave 节点一起运行时使用,默认为:5557。注意,slave 节点也将连接到这个端口+1 上的 master 节点。
    –master-bind-host=MASTER_BIND_HOST| MASTER_BIND_HOST| 做分布式压测时,指定分机IP。只用于master。如果没有指定,默认是所有可用的IP(即所有标记主机IP的slave)
    –master-bind-port=MASTER_BIND_PORT| MASTER_BIND_PORT | 做分布式压测时,指定分机port。默认是5557与5558。
    –no-web no-web | -c 和 -r 配合|模式运行测试,需要 -c 和 -r 配合使用.
    -c NUM_CLIENTS, –clients=NUM_CLIENTS | NUM_CLIENTS | 指定并发用户数,作用于 –no-web 模式。
    -r HATCH_RATE, –hatch-rate=HATCH_RATE | HATCH_RATE | 指定每秒启动的用户数,作用于 –no-web 模式。
    -t RUN_TIME, –run-time=RUN_TIME | RUN_TIME |设置运行时间, 例如: (300s, 20m, 3h, 1h30m). 作用于 –no-web 模式。
    -L LOGLEVEL, –loglevel=LOGLEVEL | LOGLEVEL |选择 log 级别(DEBUG/INFO/WARNING/ERROR/CRITICAL). 默认是 INFO.
    –logfile=LOGFILE | LOGFILE|日志文件路径。如果没有设置,日志将去 stdout/stderr
    –print-stats | 不带参数 | 在控制台中打印数据
    –only-summary | 不带参数 | 只打印摘要统计
    –no-reset-stats | 不带参数| Do not reset statistics once hatching has been completed。
    -l, –list |不带参数|显示测试类, 配置 -f 参数使用
    –show-task-ratio| 不带参数|打印 locust 测试类的任务执行比例,配合 -f 参数使用.
    –show-task-ratio-json |不带参数|以 json 格式打印 locust 测试类的任务执行比例,配合 -f 参数使用.
    -V, –version |不带参数|查看当前 Locust 工具的版本.

Locust性能测试7-分布式执行

前言

使用Locust进行性能测试时,当一台单机不足以模拟所需的用户数量的时候,可以在多台机器上分布式的执行性能测试。
locust分布式启动场景有2种,一种是单机设置master和slave模式,另外一种是有多个机器,其中一个机器设置master,其它机器设置slave节点。

单机主从模式

Locust 中如需使用 master-slave 模式启动多个进程(使用多核处理器的能力),先启动 master,然后再逐一启动若干个 slave。
其中 slave 的节点数要小于等于本机的处理器数,那么问题来了,如何看自己的电脑是及核的,以win10为例。
打开设备管理器-处理器,数下有几个,比如我下面有四个,那就是四核的

 

先启动一个master节点,mater节点不执行任务

locust -f locustfile.py --master

开多个窗口,启动多个slave节点,比如我开四个窗口,依次执行以下命令

locust -f locustfile.py --slave

此时在浏览器输入:http://localhost:8089/ slave节点数为4

多机主从模式

当一台机器的并发数无法满足你的业务需求时,可以在多台机器上分布式的执行性能测试。
选择其中一台电脑,启动master节点,因为主节点无法操作别的节点,所以必须在其它机器上启动从属Locust节点,后面跟上--slave参数,以及 --master-host(指定主节点的IP /主机名)。

locust -f locustfile.py --master

接着在其它机器上(环境和主节点环境一致,都需要有locust的运行环境和脚本),启动 slave 节点,设置 --master-host

locust -f locustfile.py --slave --master-host=192.168.x.xx

参数介绍:

  • --master 以主服务模式启动Locust,web界面打开也是以此机IP为地址。
  • --slave 以从属服务模式启动Locust
  • master-host=192.168.x.xx 用于从属服务指定主服务的地址
  • --master-port=8089 用于从属服务指定主服务的端口

无网页模式启动, -c是设置并发用户数,-r是设置每秒进入用户数,-t设置运行时长

locust -f locust_files/my_locust_file.py --no-web -c 100 -r 10

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

闽ICP备14008679号