Performance Profiling Skill
Optimization Golden Rule
"Don't optimize without a baseline."
Always measure -> change -> measure.
Critical Metrics (The 4 Golden Signals)
- Latency: Time it takes to serve a request. (p50, p95, p99)
- Traffic: Demand on your system (req/sec).
- Errors: Rate of requests that fail.
- Saturation: How "full" your service is (CPU/Memory usage).
Profiling Tools & Techniques
Python
Node.js
Database (SQL)
Frontend (Browser)
- Lighthouse: Core Web Vitals (LCP, CLS, INP).
- Chrome Performance Tab: Main thread blocking time.
- Network Waterfall: Time to First Byte (TTFB).
Optimization Hierarchy
- Database/IO: (Indexing, Caching, Batching) - Biggest Gains
- Algorithm: (O(n²) -> O(n log n))
- Memory: (Allocation churn, GC pressure)
- Micro-optimization: (Loop unrolling, etc.) - Smallest Gains
Common Rationalizations
| Excuse |
Why It's Wrong |
| "It feels slow, let me optimize this function" |
Feelings aren't data — profile first, then optimize the actual bottleneck |
| "We should optimize everything" |
Premature optimization is the root of all evil — focus on the critical path |
| "Caching will fix it" |
Caching masks problems and adds complexity — fix the root cause first |
| "It's fast enough in dev" |
Dev has 1 user — production has thousands and cold caches |
| "We'll optimize later" |
Performance debt compounds — a 100ms regression per sprint = 5s in a year |
Example
# Capture a 30-second CPU flamegraph from a running Python service
py-spy record -o profile.svg --duration 30 --pid "$(pgrep -f my-service)"
# Identify top 3 hot functions
py-spy top --pid "$(pgrep -f my-service)"
Then, per the optimization hierarchy, start with DB/IO fixes (indexing, batching, caching the right layer) before touching algorithm-level changes.
Rules
- MUST capture a baseline measurement before proposing any change
- NEVER optimize code without profiler data pointing at it as the bottleneck
- CRITICAL: report p95/p99, not just p50 — averages hide real user pain
- MANDATORY: follow the hierarchy — DB/IO before algorithm before micro-optimization
Gotchas
py-spy needs CAP_SYS_PTRACE on Linux and SIP-disabled codesigning on macOS to attach to another process. Containerized services usually run without ptrace privileges — profiling requires a --cap-add=SYS_PTRACE on the container or an in-process alternative (cProfile, yappi).
- Production hosts frequently set
/proc/sys/kernel/perf_event_paranoid=2 or higher, which disables user-space perf events. Tools that rely on perf (perf, bcc, bpftrace) silently produce empty output — check cat /proc/sys/kernel/perf_event_paranoid first.
- Node.js
--prof output gets interleaved across worker threads and child processes. A single isolate-*.log mixes samples from multiple isolates unless each worker writes its own — filter by PID or use clinic flame which handles the split.
- Chrome DevTools samples at ~1kHz; operations faster than ~1ms vanish. For microbenchmarks, prefer
performance.now() with manual markers, not the Performance tab.
EXPLAIN ANALYZE on Postgres executes the query, including INSERT/UPDATE/DELETE — wrap write queries in a transaction that you roll back, or use EXPLAIN (ANALYZE, BUFFERS) ... ; ROLLBACK; in one statement.
When NOT to Use
- For correctness bugs (wrong output) — use
/debug
- For frontend render bugs without timing data — measure with DevTools first
- For infrastructure capacity planning — use load testing, not profiling
- For generic code quality — use
/analyze
1---2name: performance-profiling3description: Performance: golden signals, p50/p95/p99, flame graphs, load testing. Triggers: performance, slow, latency, p99, flame graph, bottleneck, memory leak.4---56# Performance Profiling Skill78## Optimization Golden Rule9**"Don't optimize without a baseline."**10Always measure -> change -> measure.1112## Critical Metrics (The 4 Golden Signals)131. **Latency**: Time it takes to serve a request. (p50, p95, p99)142. **Traffic**: Demand on your system (req/sec).153. **Errors**: Rate of requests that fail.164. **Saturation**: How "full" your service is (CPU/Memory usage).1718## Profiling Tools & Techniques1920### Python21- **CPU Sampling**: `py-spy`22 ```bash23 # Record flamegraph24 py-spy record -o profile.svg --pid <pid>25 ```26- **Function Profiling**: `cProfile`27 ```python28 import cProfile29 cProfile.run('main()')30 ```3132### Node.js33- **Flamegraphs**: `0x` or built-in profiler.34 ```bash35 node --prof app.js36 node --prof-process isolate-0xnnnnn.log > processed.txt37 ```38- **Event Loop**: `clinic doctor`3940### Database (SQL)41- **Explain Plan**: Analyze query cost.42 ```sql43 EXPLAIN (ANALYZE, BUFFERS) SELECT * FROM users WHERE active = 1;44 ```45- **N+1 Problem**: Look for loop-generated queries.4647### Frontend (Browser)48- **Lighthouse**: Core Web Vitals (LCP, CLS, INP).49- **Chrome Performance Tab**: Main thread blocking time.50- **Network Waterfall**: Time to First Byte (TTFB).5152## Optimization Hierarchy531. **Database/IO**: (Indexing, Caching, Batching) - *Biggest Gains*542. **Algorithm**: (O(n²) -> O(n log n))553. **Memory**: (Allocation churn, GC pressure)564. **Micro-optimization**: (Loop unrolling, etc.) - *Smallest Gains*5758## Common Rationalizations5960| Excuse | Why It's Wrong |61|--------|----------------|62| "It feels slow, let me optimize this function" | Feelings aren't data — profile first, then optimize the actual bottleneck |63| "We should optimize everything" | Premature optimization is the root of all evil — focus on the critical path |64| "Caching will fix it" | Caching masks problems and adds complexity — fix the root cause first |65| "It's fast enough in dev" | Dev has 1 user — production has thousands and cold caches |66| "We'll optimize later" | Performance debt compounds — a 100ms regression per sprint = 5s in a year |6768## Example6970```bash71# Capture a 30-second CPU flamegraph from a running Python service72py-spy record -o profile.svg --duration 30 --pid "$(pgrep -f my-service)"7374# Identify top 3 hot functions75py-spy top --pid "$(pgrep -f my-service)"76```7778Then, per the optimization hierarchy, start with DB/IO fixes (indexing, batching, caching the right layer) before touching algorithm-level changes.7980## Rules8182- **MUST** capture a baseline measurement before proposing any change83- **NEVER** optimize code without profiler data pointing at it as the bottleneck84- **CRITICAL**: report p95/p99, not just p50 — averages hide real user pain85- **MANDATORY**: follow the hierarchy — DB/IO before algorithm before micro-optimization8687## Gotchas8889- `py-spy` needs `CAP_SYS_PTRACE` on Linux and SIP-disabled codesigning on macOS to attach to another process. Containerized services usually run without ptrace privileges — profiling requires a `--cap-add=SYS_PTRACE` on the container or an in-process alternative (`cProfile`, `yappi`).90- Production hosts frequently set `/proc/sys/kernel/perf_event_paranoid=2` or higher, which disables user-space perf events. Tools that rely on perf (`perf`, `bcc`, `bpftrace`) silently produce empty output — check `cat /proc/sys/kernel/perf_event_paranoid` first.91- Node.js `--prof` output gets interleaved across worker threads and child processes. A single `isolate-*.log` mixes samples from multiple isolates unless each worker writes its own — filter by PID or use `clinic flame` which handles the split.92- Chrome DevTools samples at ~1kHz; operations faster than ~1ms vanish. For microbenchmarks, prefer `performance.now()` with manual markers, not the Performance tab.93- `EXPLAIN ANALYZE` on Postgres **executes** the query, including `INSERT`/`UPDATE`/`DELETE` — wrap write queries in a transaction that you roll back, or use `EXPLAIN (ANALYZE, BUFFERS) ... ; ROLLBACK;` in one statement.9495## When NOT to Use9697- For correctness bugs (wrong output) — use `/debug`98- For frontend render bugs without timing data — measure with DevTools first99- For infrastructure capacity planning — use load testing, not profiling100- For generic code quality — use `/analyze`