7 lines
188 B
Python
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") |