Files
raven-test/loadlocust/locustfile.py
2022-05-26 18:14:47 +00:00

7 lines
188 B
Python

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