Benchmark APIs with locust ramp up concurrency and breakpoints
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill load-testing --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Load Testing?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-load-testing)More formats (shields.io, HTML) on the badges page.
---
name: load-testing
description: "Benchmark APIs with locust ramp up concurrency and breakpoints"
---
# Load Testing
## Locust
```python
# locustfile.py
from locust import HttpUser, task
class MyUser(HttpUser):
@task
def index(self):
self.client.get("/")
```
## Run
```bash
pip install locust
locust -f locustfile.py --host=http://localhost:8000
# Open http://localhost:8089
```
## Key Metrics
- RPS (requests per second)
- P50/P95/P99 latency
- Error rate
- Concurrent users
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!