Python + Locust(蝗蟲) 壓測
壓力測試工具, load testing, stress testing
Last updated
壓力測試工具, load testing, stress testing
Last updated
pip install locust
# 需事先安裝好 Python 與 pip。> Locust --version
locust 2.21.0 from C:\Program Files\Python311\Lib\site-packages\locust (python 3.11.3)from locust import HttpUser, between, task
class WebsiteUser(HttpUser):
wait_time = between(5,15)
@task
def index(self):
self.client.get("/")
self.client.get("/healthz")>locust -f locustfile.py
[2024-01-30 17:47:59,478] xxx/INFO/locust.main: Starting web interface at http://localhost:8089 (accepting connections from all network interfaces)
[2024-01-30 17:47:59,497] xxx/INFO/locust.main: Starting Locust 2.21.0
[2024-01-30 17:52:37,141] xxx/INFO/locust.runners: Ramping to 10 users at a rate of 1.00 per second
[2024-01-30 17:52:46,156] xxx/INFO/locust.runners: All users spawned: {"WebsiteUser": 10} (10 total users)