mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
11 lines
219 B
Python
11 lines
219 B
Python
from locust import HttpLocust, TaskSet, task
|
|
|
|
class ElbTasks(TaskSet):
|
|
@task
|
|
def status(self):
|
|
self.client.get("/status")
|
|
|
|
class ElbWarmer(HttpLocust):
|
|
task_set = ElbTasks
|
|
min_wait = 1000
|
|
max_wait = 3000 |