From 870bc1ab745cfbc3fe4399c6e5d0609a7fa4b393 Mon Sep 17 00:00:00 2001 From: Ryan <137946215+spiritualhost@users.noreply.github.com> Date: Mon, 11 May 2026 23:11:54 -0400 Subject: [PATCH] spindump: add page (#22346) --- pages/osx/spindump.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/osx/spindump.md diff --git a/pages/osx/spindump.md b/pages/osx/spindump.md new file mode 100644 index 0000000000..f7e2c51500 --- /dev/null +++ b/pages/osx/spindump.md @@ -0,0 +1,17 @@ +# spindump + +> Profile entire system during a time interval. +> Used for normal application force quits to display a dialog offering details and the option to report to Apple. +> More information: . + +- Sample all processes for 10 seconds with 10 milliseconds of run time between samples: + +`sudo spindump` + +- Sort a specific process topmost for a custom duration and interval: + +`sudo spindump {{pid|partial_name}} {{duration_seconds}} {{interval_milliseconds}}` + +- Write output to a specific file: + +`sudo spindump {{pid|partial_name}} -o {{path/to/output.txt}}`