This commit is contained in:
2022-05-26 18:14:47 +00:00
parent aacaaeb8d4
commit ebd5473e64
2 changed files with 119 additions and 1 deletions

7
loadlocust/locustfile.py Normal file
View File

@@ -0,0 +1,7 @@
from locust import HttpUser, task
class HelloWorldUser(HttpUser):
@task
def hello_world(self):
# self.client.get("/api/v8")
self.client.get("/api/v8/health")