locust之执行方式

2024-03-09 21:08
文章标签 方式 执行 locust

本文主要是介绍locust之执行方式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.命令行执行方式

如:locust -f example.py --host http://192.168.2.129 -u 2 -r 1 -t 10m --headless

$ locust --helpUsage: locust [OPTIONS] [UserClass ...]Common options:-h, --help            show this help message and exit-f LOCUSTFILE, --locustfile LOCUSTFILEPython module file to import, e.g. '../other.py'.Default: locustfile--config CONFIG       Config file path-H HOST, --host HOST  Host to load test in the following format:http://10.21.32.33-u NUM_USERS, --users NUM_USERSNumber of concurrent Locust users. Primarily usedtogether with --headless. Can be changed during a testby inputs w, W(spawn 1, 10 users) and s, S(stop 1, 10users)-r SPAWN_RATE, --spawn-rate SPAWN_RATEThe rate per second in which users are spawned.Primarily used together with --headless-t RUN_TIME, --run-time RUN_TIMEStop after the specified amount of time, e.g. (300s,20m, 3h, 1h30m, etc.). Only used together with--headless. Defaults to run forever.-l, --list            Show list of possible User classes and exitWeb UI options:--web-host WEB_HOST   Host to bind the web interface to. Defaults to '*'(all interfaces)--web-port WEB_PORT, -P WEB_PORTPort on which to run web host--headless            Disable the web interface, and instead start the loadtest immediately. Requires -u and -t to be specified.--web-auth WEB_AUTH   Turn on Basic Auth for the web interface. Should besupplied in the following format: username:password--tls-cert TLS_CERT   Optional path to TLS certificate to use to serve overHTTPS--tls-key TLS_KEY     Optional path to TLS private key to use to serve overHTTPSMaster options:Options for running a Locust Master node when running Locust distributed. A Master node need Worker nodes that connect to it before it can run load tests.--master              Set locust to run in distributed mode with thisprocess as master--master-bind-host MASTER_BIND_HOSTInterfaces (hostname, ip) that locust master shouldbind to. Only used when running with --master.Defaults to * (all available interfaces).--master-bind-port MASTER_BIND_PORTPort that locust master should bind to. Only used whenrunning with --master. Defaults to 5557.--expect-workers EXPECT_WORKERSHow many workers master should expect to connectbefore starting the test (only when --headless used).Worker options:Options for running a Locust Worker node when running Locust distributed.Only the LOCUSTFILE (-f option) need to be specified when starting a Worker, since other options such as -u, -r, -t are specified on the Master node.--worker              Set locust to run in distributed mode with thisprocess as worker--master-host MASTER_NODE_HOSTHost or IP address of locust master for distributedload testing. Only used when running with --worker.Defaults to 127.0.0.1.--master-port MASTER_NODE_PORTThe port to connect to that is used by the locustmaster for distributed load testing. Only used whenrunning with --worker. Defaults to 5557.Tag options:Locust tasks can be tagged using the @tag decorator. These options let specify which tasks to include or exclude during a test.-T [TAG [TAG ...]], --tags [TAG [TAG ...]]List of tags to include in the test, so only taskswith any matching tags will be executed-E [TAG [TAG ...]], --exclude-tags [TAG [TAG ...]]List of tags to exclude from the test, so only taskswith no matching tags will be executedRequest statistics options:--csv CSV_PREFIX      Store current request stats to files in CSV format.Setting this option will generate three files:[CSV_PREFIX]_stats.csv, [CSV_PREFIX]_stats_history.csvand [CSV_PREFIX]_failures.csv--csv-full-history    Store each stats entry in CSV format to_stats_history.csv file. You must also specify the '--csv' argument to enable this.--print-stats         Print stats in the console--only-summary        Only print the summary stats--reset-stats         Reset statistics once spawning has been completed.Should be set on both master and workers when runningin distributed mode--html HTML_FILE      Store HTML report fileLogging options:--skip-log-setup      Disable Locust's logging setup. Instead, theconfiguration is provided by the Locust test or Pythondefaults.--loglevel LOGLEVEL, -L LOGLEVELChoose between DEBUG/INFO/WARNING/ERROR/CRITICAL.Default is INFO.--logfile LOGFILE     Path to log file. If not set, log will go tostdout/stderrOther options:--show-task-ratio     Print table of the User classes' task execution ratio--show-task-ratio-jsonPrint json data of the User classes' task executionratio--version, -V         Show program's version number and exit--exit-code-on-error EXIT_CODE_ON_ERRORSets the process exit code to use when a test resultcontain any failure or error-s STOP_TIMEOUT, --stop-timeout STOP_TIMEOUTNumber of seconds to wait for a simulated user tocomplete any executing task before exiting. Default isto terminate immediately. This parameter only needs tobe specified for the master process when runningLocust distributed.User classes:UserClass             Optionally specify which User classes that should beused (available User classes can be listed with -l or--list)

2.配置文件方式,将所有运行参数写入配置文件locust.conf

在配置文件所在目录命令行直接运行locust,就会自动执行配置文件,也可以通过--config参数指定配置文件。

配置文件优先级:

~/locust.conf -> ./locust.conf -> (file specified using --conf) -> env vars -> cmd args

Example:

# master.conf in current directory
locustfile = locust_files/my_locust_file.py
headless = true
master = true
expect-workers = 5
host = http://target-system
users = 100
spawn-rate = 10
run-time = 10m

 

3.webUI方式

命令行执行locust -f .\example_task_queue.py

根据提示打开浏览器,输入地址连接http://localhost:8089

输入测试的用户数,启动用户需要的时间和服务器地址,点击按钮Start swarming,测试就会自动开始执行。

进入主界面可以看到测试实时的统计,点击按钮STOP可以停止测试。

测试结果可以导出。

 

 

 

这篇关于locust之执行方式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/791951

相关文章

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

Redis事务与数据持久化方式

《Redis事务与数据持久化方式》该文档主要介绍了Redis事务和持久化机制,事务通过将多个命令打包执行,而持久化则通过快照(RDB)和追加式文件(AOF)两种方式将内存数据保存到磁盘,以防止数据丢失... 目录一、Redis 事务1.1 事务本质1.2 数据库事务与redis事务1.2.1 数据库事务1.

Linux磁盘分区、格式化和挂载方式

《Linux磁盘分区、格式化和挂载方式》本文详细介绍了Linux系统中磁盘分区、格式化和挂载的基本操作步骤和命令,包括MBR和GPT分区表的区别、fdisk和gdisk命令的使用、常见的文件系统格式以... 目录一、磁盘分区表分类二、fdisk命令创建分区1、交互式的命令2、分区主分区3、创建扩展分区,然后

Linux中chmod权限设置方式

《Linux中chmod权限设置方式》本文介绍了Linux系统中文件和目录权限的设置方法,包括chmod、chown和chgrp命令的使用,以及权限模式和符号模式的详细说明,通过这些命令,用户可以灵活... 目录设置基本权限命令:chmod1、权限介绍2、chmod命令常见用法和示例3、文件权限详解4、ch

Java中的密码加密方式

《Java中的密码加密方式》文章介绍了Java中使用MD5算法对密码进行加密的方法,以及如何通过加盐和多重加密来提高密码的安全性,MD5是一种不可逆的哈希算法,适合用于存储密码,因为其输出的摘要长度固... 目录Java的密码加密方式密码加密一般的应用方式是总结Java的密码加密方式密码加密【这里采用的

Java中ArrayList的8种浅拷贝方式示例代码

《Java中ArrayList的8种浅拷贝方式示例代码》:本文主要介绍Java中ArrayList的8种浅拷贝方式的相关资料,讲解了Java中ArrayList的浅拷贝概念,并详细分享了八种实现浅... 目录引言什么是浅拷贝?ArrayList 浅拷贝的重要性方法一:使用构造函数方法二:使用 addAll(

Mycat搭建分库分表方式

《Mycat搭建分库分表方式》文章介绍了如何使用分库分表架构来解决单表数据量过大带来的性能和存储容量限制的问题,通过在一对主从复制节点上配置数据源,并使用分片算法将数据分配到不同的数据库表中,可以有效... 目录分库分表解决的问题分库分表架构添加数据验证结果 总结分库分表解决的问题单表数据量过大带来的性能

SpringBoot项目引入token设置方式

《SpringBoot项目引入token设置方式》本文详细介绍了JWT(JSONWebToken)的基本概念、结构、应用场景以及工作原理,通过动手实践,展示了如何在SpringBoot项目中实现JWT... 目录一. 先了解熟悉JWT(jsON Web Token)1. JSON Web Token是什么鬼

在C#中合并和解析相对路径方式

《在C#中合并和解析相对路径方式》Path类提供了几个用于操作文件路径的静态方法,其中包括Combine方法和GetFullPath方法,Combine方法将两个路径合并在一起,但不会解析包含相对元素... 目录C#合并和解析相对路径System.IO.Path类幸运的是总结C#合并和解析相对路径对于 C

C语言线程池的常见实现方式详解

《C语言线程池的常见实现方式详解》本文介绍了如何使用C语言实现一个基本的线程池,线程池的实现包括工作线程、任务队列、任务调度、线程池的初始化、任务添加、销毁等步骤,感兴趣的朋友跟随小编一起看看吧... 目录1. 线程池的基本结构2. 线程池的实现步骤3. 线程池的核心数据结构4. 线程池的详细实现4.1 初