소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 7월 31일 16:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill load-testing명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | load-testing |
| description | Load testing — smoke/load/stress/soak/spike profiles, SLO thresholds, tooling. |
Server-side performance validation: how much traffic the system takes before it degrades, and where it breaks first.
Load for backend, API, or infrastructure work where capacity, concurrency or throughput matter — before a launch, before a traffic event, after an architecture change, or when investigating production saturation.
Boundary with skills/architecture/performance-budgets/SKILL.md:
| Concern | Skill |
|---|---|
| Client-side rendering, Core Web Vitals, bundle size, Lighthouse CI | performance-budgets |
| Server latency under concurrency, throughput, saturation, breaking point | this skill |
They are complementary: a page can hit every Core Web Vitals target at one user and still collapse at a thousand.
Pick the profile from the question being asked. Running the wrong profile answers a question nobody had.
| Profile | Shape | Question answered | Typical duration |
|---|---|---|---|
| Smoke | Minimal load, 1–5 virtual users | Does the script work and the system respond correctly at all? | 1–2 min |
| Load | Ramp to expected peak, hold | Does the system meet its SLOs at normal peak traffic? | 10–30 min |
| Stress | Ramp past peak until degradation | Where is the breaking point, and what breaks first? | 20–60 min |
| Soak (endurance) | Moderate load held for hours | Do leaks, unbounded caches, connection or disk growth appear over time? | 2–24 h |
| Spike | Instant jump to a multiple of peak, then drop | Does the system survive a sudden surge and recover afterwards? | 5–15 min |
| Breakpoint | Slow unbounded ramp | What is the maximum sustainable throughput per instance? | Until failure |
Rules:
Thresholds are not invented for the test — they come from the service's SLOs (skills/architecture/observability-slo/SKILL.md). If no SLO exists, defining one is the first deliverable, not the load test.
p99 < 800ms at 500 concurrent users.| Traffic input | Source |
|---|---|
| Expected peak concurrency | Production analytics — peak hour, not daily average |
| Request mix | Real endpoint distribution from access logs or APM, not an even split |
| Growth headroom | Test at 2× expected peak; capacity planning targets, not wishes |
| Metric | Rule |
|---|---|
| Latency percentiles (p50, p90, p95, p99) | Report percentiles, never averages — an average hides the tail that defines user experience |
| Throughput (req/s, completed iterations/s) | The real capacity number; must be reported alongside the concurrency that produced it |
| Error rate by status and type | Separate 4xx (script/data problem) from 5xx and timeouts (system problem) |
| Saturation | CPU, memory, connection pool usage, queue depth, thread pool, disk I/O, file descriptors |
| Downstream | Database slow queries, lock waits, cache hit ratio, external API latency |
| Client-side saturation | Load generator CPU/network — a saturated generator invents latency that does not exist |
Interpretation rules:
| Pitfall | Consequence | Mitigation |
|---|---|---|
| Same user/record for every virtual user | Unrealistic cache hits and row-level lock contention | Parameterize with a realistic data pool |
| Dataset far smaller than production | Every query hits an in-memory index; results are meaningless | Seed representative volume and cardinality |
| Environment scaled down from production | Results cannot be extrapolated linearly | Match topology, or state the scaling factor explicitly and never extrapolate silently |
| Autoscaling enabled without noting it | Measures the scaler's reaction time, not the system's capacity | Test fixed capacity first, then autoscaling behavior separately |
| Caches/CDN in front absorbing the load | Tests the cache, not the origin | Bypass or vary keys deliberately; test both paths |
| Rate limiters or WAF throttling the generator | 429s reported as system failure | Allowlist the generator, or make throttling part of the scenario |
| Third-party APIs called for real | Cost, bans, and someone else's latency in the results | Stub with realistic latency and error injection |
| Test writes into shared/production data | Data corruption and contaminated analytics | Dedicated tenant/dataset, cleanup routine, never load-test production without written approval |
| Metrics polluting production dashboards | False alerts and paged on-call | Tag all synthetic traffic with a header and exclude it from alerts |
Also budget for think time between requests — real users pause. A no-pause script produces a load pattern that no real population creates.
Gate on the signals already present in the project — a tool the team can read and maintain beats a marginally faster one.
| Signal | Tool |
|---|---|
| JS/TS codebase, CI-first, scriptable scenarios, thresholds as code | k6 |
| Python codebase, custom logic per user, distributed generators | Locust |
| Java/JVM shop, GUI-driven test design, protocol variety (JMS, JDBC, LDAP) | JMeter |
| Scala/Java, high per-node throughput, HTML reports | Gatling |
| Quick sanity check on a single endpoint | hey, wrk, oha, autocannon |
| gRPC services | ghz |
| Cloud-managed distributed runs, no generator infrastructure to operate | Managed service from the existing cloud provider |
| Browser-level load (real rendering, JS execution) | Browser-driver mode of the chosen tool — expensive, use only when protocol-level load cannot answer the question |
Rules:
Every result must state, in one place:
"It handled the load" without the numbers above is not a result.