Turns a service's SLOs and endpoint traffic mix into a named scenario matrix: one scenario per SLO boundary condition, a load profile (smoke, average-load, stress, soak, spike, breakpoint) per scenario, an open or closed workload injection model, a threshold expression derived from the SLO the scenario guards, and an error-budget calculation that sets the soak run's failure allowance. Stays runner-agnostic and fixes the pass/fail line before any tool is configured. Use when an SLO document and an endpoint list both exist but nobody has decided which load runs to make, what shape of load each carries, or what number would count as a failure.
75
94%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Produces one artifact: a load-test plan in which every scenario has a name, a load shape, an injection model, and a pass/fail line traceable to a stated SLO.
| Owned here | Owned elsewhere |
|---|---|
| Which scenarios exist, and why each one exists | Nothing |
| The load shape each scenario applies (profile, ramp, plateau, injection model) | Nothing |
| The pass/fail line each scenario carries, expressed as a threshold derived from an SLO | Nothing |
| The error budget each threshold is sized against | Nothing |
| Runner-specific configuration: executor blocks, protocol setup, feeders, distributed workers, result stores | A per-tool wrapper for k6, Gatling, JMeter, or Locust |
| Aggregating verdicts from several runners into one CI go / no-go | A multi-runner CI gate |
| Finding which commit caused a regression after the plan is already running | A bisection workflow |
The axis is time: this skill runs before a runner is chosen. Its output names metrics, shapes, and numbers in prose and tables, not in a runner's syntax. One short threshold snippet appears below purely to show what the numbers turn into; everything else stays declarative.
For every SLO in the input:
checkout-p95-under-peak-load tells a reader what a red run means;
checkout-test-2 does not.One SLO can yield several scenarios. Split whenever the boundary conditions differ: the same p95 target at average traffic and at peak traffic are two scenarios, because they need different load shapes and can fail independently.
| SLO | Governs | Scenario |
|---|---|---|
| p95 latency < 300 ms at peak load | POST /api/checkout (20% of mix) | checkout-latency-peak |
| p95 latency < 100 ms at average load | GET /api/orders (60% of mix) | orders-latency-average |
| Error rate < 0.1% under a 3x spike | All endpoints, mix preserved | spike-error-budget |
| Availability 99.9% over a four-week window | All endpoints, mix preserved | soak-availability |
Preserve the traffic mix inside each scenario. A scenario that sends 100% of its requests to the endpoint under test measures that endpoint in isolation, not in the contention it actually experiences.
Six canonical profiles, per the Grafana k6 test types guide. Every scenario from Step 1 gets exactly one.
| Profile | Load level | Duration | What it answers | Shape |
|---|---|---|---|---|
| Smoke | Minimal load | Seconds to a couple of minutes | Does the script itself work at minimal load? | Flat, one or two users |
| Average-load | Average production load | 5 to 60 min (k6 test types) | Do we meet the SLO on a normal day? | Ramp up, plateau, ramp down |
| Stress | Above the expected average | 5 to 60 min (k6 test types) | How much headroom is there when load exceeds the average? | Ramp above average, plateau |
| Soak | Average production load | Hours (k6 test types) | Does it still meet the SLO after hours? | Slow ramp, long plateau |
| Spike | Very high, brief | A few minutes (k6 test types) | Do we survive a sudden, short, massive surge? | Near-instant surge, short hold, drop |
| Breakpoint | Increasing until failure | Until the system breaks (k6 test types) | Where is the capacity ceiling? | Continuous ramp, no plateau |
Selection rules that follow from the definitions:
Each scenario also declares one of two workload models. This is the most frequently mis-stated concept in load-test planning, so state it precisely.
Closed model. A fixed population of virtual users, each finishing its current request before starting the next: "The next iteration doesn't start until the previous one finishes" (k6 open and closed models). The consequence that matters for planning: throughput is coupled to latency. When the service slows down, offered load falls with it, so the test quietly stops applying the load you specified - k6 names this effect coordinated omission.
Open model. New iterations arrive at a rate you specify, independent of how long previous ones take, so "the response times of the target system no longer influence the load on the target system" (k6 open and closed models). A degrading service keeps receiving the same arrival rate, so queues build the way they would in production.
For how k6 and Gatling name their open and closed executors, and the Gatling "users means open, not closed" trap, see references/runners.md.
Decision rule for the plan:
Every scenario except breakpoint carries at least one threshold, and every
threshold is a restatement of an SLO. Per the
k6 thresholds documentation,
a threshold expression has the form <aggregation_method> <operator> <value>,
is evaluated against the metric collected during the run, and produces a
non-zero exit code when it fails.
Mechanical translation:
| SLO statement | Metric | Expression |
|---|---|---|
| p95 latency < 300 ms | Request duration trend | p(95)<300 (k6 thresholds) |
| p99 latency < 500 ms | Request duration trend | p(99)<500 |
| Error rate < 0.1% | Request failure rate | rate<0.001 (k6 thresholds) |
| Average latency < 150 ms | Request duration trend | avg<150 (k6 thresholds) |
| At least 500 completed checkouts per run | Counter | count>=500 (k6 thresholds) |
Two rules keep the thresholds honest:
Scope each threshold to the endpoints its SLO governs. A whole-run p95 is
dominated by whichever endpoint carries the most traffic, so a slow low-volume
checkout hides behind a fast high-volume list call. Thresholds can be attached
to a tagged subset of requests, written as metric_name{tag_name:tag_value},
for example http_req_duration{type:API}
(k6 thresholds).
The plan states the tag per scenario; the implementer wires it.
Say per scenario whether a breach aborts the run. The long form of a
threshold supports abortOnFail: true to stop execution on failure and
delayAbortEval to postpone evaluation until enough data has accumulated, given
as a relative time string such as '10s'
(k6 thresholds):
thresholds: {
http_req_duration: [{ threshold: 'p(95)<300', abortOnFail: true, delayAbortEval: '10s' }],
http_req_failed: ['rate<0.001'],
}Abort when continuing costs something and teaches nothing:
Do not abort when the failure itself is the measurement: spike recovery (you want to see whether latency returns to baseline after the surge), stress scenarios exploring headroom, and breakpoint runs, which have no threshold to abort on at all.
An error budget is what the SLO leaves over: "the error budget is 100% minus the SLO". The Google SRE Workbook's worked case: a 99.9% SLO on a service receiving 3 million requests over a four-week period allows a budget of 3,000 (0.1%) errors (Implementing SLOs).
The formula the plan uses:
budget_events = (1 - SLO_target) x total_events_in_windowCalibrate the soak in three steps.
(1 - 0.999) x 4,320,000 = 4,320 failures, which is exactly the SLO's own
rate. So the threshold is rate<0.001, and the plan records how that number
was reached rather than presenting 0.001 as a round number someone liked.Every threshold in the plan should now be traceable: SLO, then window, then event count, then budget, then the number in the expression. A threshold that cannot be traced back this way is a guess.
One Markdown document:
## Load-test plan: <service> (<date>)
### SLO inventory
| SLO | Metric | Window | Current baseline | Source |
### Scenario matrix
| Scenario | SLO governed | Profile | Injection model | Target rate or concurrency | Duration |
### Profile definitions
For each scenario:
- Ramp: <start> to <peak> over <T>
- Plateau: hold <peak> for <T>
- Ramp-down: <peak> to 0 over <T>
- Injection model: open (arrivals/sec) | closed (concurrency), and why
- Traffic mix applied: <endpoint: weight, ...>
### Thresholds
| Scenario | Metric | Scope tag | Expression | Abort on fail | SLO it restates |
### Error-budget derivation
| SLO | Window | Total events | Budget events | Soak allowance | Burn-rate cap |
### Open questions
Anything the plan assumed rather than knew: peak RPS, growth rate, whether an
SLO is agreed or aspirational.A full worked example - a checkout service's four SLOs turned into a six-scenario matrix with per-scenario thresholds, each traceable back to its SLO - is in references/runners.md.
| Anti-pattern | Why it fails | Fix |
|---|---|---|
| Thresholds picked as round numbers ("p95 < 500 ms sounds fast") | Passes while the SLO is breached, or fails while it is met | Derive every number from an SLO and record the derivation (Steps 4 and 5) |
| One mega-scenario covering all endpoints | A breach tells you the service is slow, not which endpoint | One scenario per SLO boundary condition, thresholds scoped by tag |
| Closed model used for an overload scenario | Throughput falls with latency, so the intended load is never applied and the run looks healthier than production would (k6 open and closed models) | Open model whenever the target is a rate |
| Only spike and stress scenarios | Misses slow degradation; extended-period reliability needs an extended-period run (k6 test types) | A soak scenario for any service with an availability SLO |
| Breakpoint run against production | It is designed to reach the capacity limit, which means designed to break the service (k6 test types) | Isolated environment only, and no threshold attached |
| Choosing the load tool inside the plan | Tool choice depends on stack, CI, skills, and budget, none of which the SLO document contains | Leave the plan runner-agnostic; decide the tool afterwards |
| Writing the plan directly as runner code | The plan stops being reviewable by the people who own the SLOs | Tables first, syntax later |