diff --git a/.github/workflows/load_test.yml b/.github/workflows/load_test.yml index ddf613fa6..998519331 100644 --- a/.github/workflows/load_test.yml +++ b/.github/workflows/load_test.yml @@ -27,9 +27,9 @@ jobs: uses: BerriAI/locust-github-action@master with: LOCUSTFILE: ".github/workflows/locustfile.py" - URL: "https://litellm-database-docker-build-production.up.railway.app/" - USERS: "100" - RATE: "10" + URL: "https://post-release-load-test-proxy.onrender.com/" + USERS: "20" + RATE: "20" RUNTIME: "300s" - name: Process Load Test Stats run: | diff --git a/.github/workflows/locustfile.py b/.github/workflows/locustfile.py index 5dce0bb02..6aa874ebe 100644 --- a/.github/workflows/locustfile.py +++ b/.github/workflows/locustfile.py @@ -28,15 +28,3 @@ class MyUser(HttpUser): response = self.client.post("chat/completions", json=payload, headers=headers) # Print or log the response if needed - - @task(10) - def health_readiness(self): - start_time = time.time() - response = self.client.get("health/readiness") - response_time = time.time() - start_time - - @task(10) - def health_liveliness(self): - start_time = time.time() - response = self.client.get("health/liveliness") - response_time = time.time() - start_time