| name | macprof |
| description | Profile macOS processes (CPU hot spots, hangs, "what is X doing?"). Wraps sample/spindump/xctrace and prints a compact text summary or speedscope/flamegraph data. |
Default invocation prints a bounded text summary to stdout — paste it back.
macprof sample <pid|name> 5 -o -
macprof xctrace 5 -o -
macprof xctrace 5 --attach <pid|name> -o -
macprof spindump 5 -o - --keep-idle
macprof xctrace 10 -o cpu.speedscope.json
macprof spindump 10
Pick sampler by question:
| question | command |
|---|
| process hung / spinning, why? | sample <name> |
| what's burning CPU right now? | xctrace |
| system slow, who's blocking whom? | spindump |
Flags: -o - stdout summary · -o x.json speedscope · -o x.folded flamegraph
· --keep-idle include blocked threads · --keep-raw keep raw report.
Pair with heap <pid> (object counts) and lsof -p <pid> (open files/dirs)
when memory, not CPU, is the symptom.