The purpose of this project is to gather a curated set of plugins/extensions for Locust.
Locust itself is a "bare bones" load generation tool (compared to for example JMeter or Gatling) and it is left to the user to build even basic functionality (like reading test data from a database, limiting the request rate to a certain value, etc). Forcing everyone to reinvent the wheel is a big waste, and makes using Locust harder than it needs to be.
So I decided to publish my own plugins and hope that others (maybe you?) will contribute their solutions to common Locust use cases.
Having this separate from "Locust core" allows the plugins to evolve faster (at the expense of being less mature), and avoids bloating Locust with functionality you might not be interested in.
There are a couple of plugin types:
- Listen to events and log things
- Timescale: Log and graph results using TimescaleDB and Grafana (example, source)
- Print: Prints prints every request to standard out with response time etc (source)
- Jmeter: Writes a jmeter-like output file (example, source)
- ApplicationInsights: Writes the test logs to Azure Application Insights (example, source)
- RescheduleTaskOnFail / ExitOnFail / StopUserOnFail: Perform actions when a request fails (source)
- New protocols (source)
- Additional locust command line options provided (examples, source)
- Iteration limit (
-i
), stops Locust after a certain number of task iterations - Checks (
--check-rps
,--check-fail-ratio
,--check-avg-response-time
), gives an error return code if certain conditions are not met
- Iteration limit (
Have a look at the example locustfiles to learn how to use the plugins.
These plugins work well together with locust-swarm
pip install locust-plugins
For configuration help, run locust -f locustfile-that-imports-locust_plugins.py --help
. Some environment variables need to be set (mainly for Postgres, if you want to run the Timescale listener), but you should get clear error messages if one is missing.
Contributions are very welcome! 😁
For guidelines, see CONTRIBUTING.md
Copyright 2019 AB SvenskaSpel
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.