Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Methodical performance troubleshooting and root-cause analysis with Brendan Gregg's USE and TSA methods, plus evidence-backed RCA and postmortem reports.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 60% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 209% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 83% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 153% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 144% | 0% |
A fixed, evidence-first procedure for system performance debugging, root-cause analysis (RCA), and incident reporting, distilled from Brendan Gregg's published methodologies. Instead of running whichever commands happen to be familiar, the agent poses questions first and then finds metrics to answer them: the USE Method (Utilization, Saturation, Errors) sweeps every resource, the TSA Method (Thread State Analysis) decomposes thread time, and off-CPU analysis plus flame graphs drill into what the sweeps find. Every investigation ends in a structured triage note, RCA report, or postmortem where each claim traces to a command and its output.
This skill adapts material from the community repository thecsdoctor/brendangregg-use-tsa-skill (full checklists, reference library, and report templates live there).
Define the problem before measuring. Ask: What makes you think there is a problem? Has it ever performed well? What changed recently (software, hardware, load)? Can it be expressed as latency or run time — quantify it. Who else is affected? What is the environment (OS, versions, config, container/VM limits)?
Run the ten-command sweep, checking errors and saturation first (easiest to interpret), then utilization. Record every exonerated resource.
bashuptime # load trend (includes uninterruptible I/O on Linux) dmesg | tail # kernel errors: oom-killer, SYN flooding, hardware vmstat 1 # r > CPU count = CPU saturation; si/so = swapping; wa = disk mpstat -P ALL 1 # per-CPU imbalance (single hot CPU = single-threaded app) pidstat 1 # per-process CPU over time iostat -xz 1 # await (app-suffered latency), avgqu-sz, %util free -m # memory; buffers/cache near zero hurts sar -n DEV 1 # NIC throughput vs link limit sar -n TCP,ETCP 1 # active/passive connections, retransmits top # spot variable load
For every resource, check Utilization, Saturation, and Errors. Iterate CPUs, memory capacity, network interfaces, storage I/O and capacity, controllers, interconnects — plus software resources (mutex locks, thread pools, process/file-descriptor capacity) and imposed limits (cgroup quotas, hypervisor caps, ulimits). Check errors before utilization. Interpretations: 100% utilization is usually a bottleneck (confirm via saturation); any non-zero saturation can be a problem; non-zero, still-increasing error counters are worth investigating; and a clean sweep is a result — it narrows the search space.
For each thread of interest, split time into: Executing / Runnable / Anonymous Paging / Sleeping / Lock / Idle. Investigate states from most to least frequent with state-appropriate tools. If more than ~10% of time is Runnable or Anonymous Paging, fix those first — latency states can be tuned to zero. Linux instruments: /proc/PID/schedstat run_delay and perf sched latency (Runnable), vmstat si/so and per-process min_flt (Paging), offcputime/cpudist from bcc (Sleeping), /proc/lock_stat and valgrind --tool=drd (Lock), pidstat/flame graphs (Executing).
Follow the biggest contributor: Executing → CPU profile + flame graph; Sleeping/Lock → off-CPU stacks (offcputime -p PID, render with flamegraph.pl --color=io); latency complaints → time-division decomposition; microservices → RED method (Rate, Errors, Duration). Prefer eBPF in-kernel aggregation over per-event dumps; start with sub-second traces in production.
State the causal chain (trigger → mechanism → symptom) with every link evidence-backed. Keep falsifiable hypotheses on record even when ruled out. Ask "why" up to five times. Would removing this cause prevent recurrence? Does it explain all primary evidence?
Apply the cheapest effective fix (mantra order: don't do it → cache it → do it less → do it later → off-peak → concurrently → cheaper). Re-measure with the same instruments as the evidence and show before/after. "Deployed" is not "verified".
Produce the report the situation calls for — triage note, RCA report, or full postmortem (summary, impact, root cause, detection, investigation log, evidence table, resolution, prevention actions). Absolute dates everywhere; unknowns marked as known-unknowns.
User: prod-web-02 feels slow. Triage it and tell me what you ruled out.
Agent: runs the 60s sweep → dmesg shows oom-killer events at 09:41 UTC;
vmstat si/so non-zero; free -m shows 120MB free with page cache near zero.
Conclusion: memory capacity saturation (USE), host CPU/disk/network exonerated
with numbers. Report lists each exonerated resource next to its evidence.Explanation: Errors-and-saturation-first finds the OOM events in step 1, and the exonerated resources stay on the record.
User: API p99 went 95ms → 1.9s after the 14:02 deploy. Root cause + RCA.
Agent: host sweep clean (CPU 48%, no iowait, 0 retransmits) → TSA on app
threads shows 61% Runnable on a half-idle host → checks resource controls:
/sys/fs/cgroup cpu.max = 1.5 CPUs, cpu.stat nr_throttled +54k/min → cgroup
CPU throttling after the replica increase. Fix: raise limit; verify:
nr_throttled 0/s for 72h, p99 110ms under 1.4x load. RCA report includes the
causal chain, the ruled-out hypotheses, and the command→output table.Explanation: Runnable-dominant TSA on an under-utilized host is the signature of a resource-control limit, not a busy machine — the method routes around the wrong diagnosis.
perf needs perf_events access; sar needs sysstat). Missing instruments are reported as known-unknowns, not silently skipped.vmstat, iostat, sar, perf, bcc tools, /proc reads); there are no network fetches, no credential handling, and no destructive examples. Intended usage is on systems the user is authorized to operate.Solution: Linux load includes uninterruptible (usually disk) tasks — check vmstat "r" for CPU saturation and iostat await for disk instead.
Solution: Check resource controls, not just the host: cgroup cpu.max and cpu.stat nr_throttled (Runnable-dominant TSA is the tell).
Solution: Component timers are request-oriented; run TSA on the threads — the time may be Runnable (a noisy neighbor), not execution.
Solution: Filter involuntary context switches: offcputime --state 2 (TASK_UNINTERRUPTIBLE) and fix frame pointers (-fomit-frame-pointer breaks user stacks).
@devops-troubleshooter - Broader DevOps incident response; use this skill for the performance-methodology core@incident-responder - General incident command workflow; pairs with this skill's evidence discipline@application-performance-performance-optimization - Application-level optimization after systemic bottlenecks are ruled outOther measured skills in the registry, with their headline benchmark lift.