Locust is configured mainly through command line arguments.
$ locust --help
.. literalinclude:: cli-help-output.txt :language: console
Options can also be set through environment variables. They are typically the same as the command line argument
but capitalized and prefixed with LOCUST_
:
On Linux/macOS:
$ LOCUST_LOCUSTFILE=custom_locustfile.py locust
On Windows:
> set LOCUST_LOCUSTFILE=custom_locustfile.py > locust
Options can also be set in a configuration file in the config or TOML file format.
Locust will look for ~/.locust.conf
, ./locust.conf
and ./pyproject.toml
by default.
You can specify an additional file using the --config
flag.
$ locust --config custom_config.conf
Here's a quick example of the configuration files supported by Locust:
locustfile = locust_files/my_locust_file.py
headless = true
master = true
expect-workers = 5
host = https://target-system
users = 100
spawn-rate = 10
run-time = 10m
tags = [Critical, Normal]
When using a TOML file, configuration options should be defined within the [tool.locust]
section.
[tool.locust]
locustfile = "locust_files/my_locust_file.py"
headless = true
master = true
expect-workers = 5
host = "https://target-system"
users = 100
spawn-rate = 10
run-time = "10m"
tags = ["Critical", "Normal"]
Note
Configuration values are read (and overridden) in the following order:
~/.locust.conf -> ./locust.conf -> ./pyproject.toml -> (file specified using --conf) -> env vars -> cmd args
Here's a table of all the available configuration options, and their corresponding Environment and config file keys:
See :ref:`running-without-web-ui`
-f/--locustfile
accepts multiple, comma-separated locustfiles.
Example:
With the following file structure:
├── locustfiles/ │ ├── locustfile1.py │ ├── locustfile2.py │ └── more_files/ │ ├── locustfile3.py │ ├── _ignoreme.py
$ locust -f locustfiles/locustfile1.py,locustfiles/locustfile2.py,locustfiles/more_files/locustfile3.py
Locust will use locustfile1.py
, locustfile2.py
& more_files/locustfile3.py
Additionally, -f/--locustfile
accepts directories as an option. Locust will recursively
search specified directories for *.py
files, ignoring files that start with "_".
Example:
$ locust -f locustfiles
Locust will use locustfile1.py
, locustfile2.py
& more_files/locustfile3.py
You can also use -f/--locustfile
for web urls. This will download the file and use it as any normal locustfile.
Example:
$ locust -f https://raw.githubusercontent.com/locustio/locust/master/examples/basic.py
You can select which Shape class and which User classes to run in the WebUI when running locust with the --class-picker
flag.
No selection uses all the available User classes.
For example, with a file structure like this:
├── src/ │ ├── some_file.py ├── locustfiles/ │ ├── locustfile1.py │ ├── locustfile2.py │ └── more_files/ │ ├── locustfile3.py │ ├── _ignoreme.py │ └── shape_classes/ │ ├── DoubleWaveShape.py │ ├── StagesShape.py
$ locust -f locustfiles --class-picker
The Web UI will display:
The class picker additionally allows for disabling individual User tasks, changing the weight or fixed count, and configuring the host.
It is even possible to add custom attributes that you wish to be configurable for each User. Simply add a json
classmethod
to your user:
class Example(HttpUser):
@task
def example_task(self):
self.client.get(f"/example/{self.some_custom_arg}")
@classmethod
def json(self):
return {
"host": self.host,
"some_custom_arg": "example"
}
You can update User class attributes from the command line too, using the --config-users
argument:
$ locust --config-users '{"user_class_name": "Example", "fixed_count": 1, "some_custom_attribute": false}'
To configure multiple users you pass multiple arguments to --config-users
, or use a JSON Array. You can also pass a path to a JSON file.
$ locust --config-users '{"user_class_name": "Example", "fixed_count": 1}' '{"user_class_name": "ExampleTwo", "fixed_count": 2}'
$ locust --config-users '[{"user_class_name": "Example", "fixed_count": 1}, {"user_class_name": "ExampleTwo", "fixed_count": 2}]'
$ locust --config-users my_user_config.json
When using this way to configure your users, you can set any attribute.
Note
--config-users
is a somewhat experimental feature and the json format may change even between minor Locust revisions.
Default configuration for Locust statistics is set in constants of stats.py file. It can be tuned to specific requirements by overriding these values. To do this, import locust.stats module and override required settings:
import locust.stats
locust.stats.CONSOLE_STATS_INTERVAL_SEC = 15
It can be done directly in Locust file or extracted to separate file for common usage by all Locust files.
The list of statistics parameters that can be modified is:
Parameter name | Purpose |
STATS_NAME_WIDTH | Width of column for request name in console output |
STATS_TYPE_WIDTH | Width of column for request type in console output |
CSV_STATS_INTERVAL_SEC | Interval for how frequently the CSV file is written if this option is configured |
CONSOLE_STATS_INTERVAL_SEC | Interval for how frequently results are written to console |
CURRENT_RESPONSE_TIME_PERCENTILE_WINDOW | Window size/resolution - in seconds - when calculating the current response time percentile |
PERCENTILES_TO_REPORT | List of response time percentiles to be calculated & reported |
PERCENTILES_TO_CHART | List of response time percentiles in the screen of chart for UI |
PERCENTILES_TO_STATISTICS | List of response time percentiles in the screen of statistics for UI |
This table lists the constants that are set within locust and may be overridden.
Parameter name | Purpose |
locust.runners.WORKER_LOG_REPORT_INTERVAL | Interval for how frequently worker logs are reported to master. Can be disabled by setting to a negative number |