increased replicas

This commit is contained in:
2026-05-01 10:22:18 +02:00
parent 52d0c4db92
commit bbcbf18226
2 changed files with 16 additions and 0 deletions

Binary file not shown.

16
stress-test/locustfile.py Normal file
View File

@@ -0,0 +1,16 @@
from locust import HttpUser, task, between
class MojServisUser(HttpUser):
wait_time = between(1, 3)
def on_start(self):
# ignoriraj SSL probleme
self.client.verify = False
@task(10)
def root(self):
self.client.get("/")
@task(5)
def health(self):
self.client.get("/health")