macOS workflow for lab and admin testing
Lab and admin work on macOS lives in two patterns: short ad hoc throughput checks and long-running validation runs. Both benefit from a GUI iperf3 over `brew install iperf3`. The GUI keeps a persistent history of every test you've run, with full per-second metrics, so the next morning you can answer 'was the link slow on Tuesday?' without re-running anything. macOS notifications fire when a multi-minute run completes so you can tab away to do other work. Tooltips on chart points expose the underlying counters, which makes review faster than scrolling through Terminal output. And exports drop into Files or directly into Numbers/Excel via the share sheet.
Running parallel client/server sessions on Mac
A Mac is a great two-sided iperf3 bench. Open one window in Server mode bound to the loopback or a specific NIC, and another window in Client mode pointing at it for sanity checks. Or run Server mode on a Mac while running Client mode on an iPhone or iPad on the same Wi-Fi network — that pairing is unique to Apple's ecosystem and lets you measure phone-to-laptop throughput without provisioning extra hardware. For 10 GbE links use parallel streams (`-P 4` or `-P 8`) to ensure the test isn't bottlenecked by a single TCP flow's congestion window growth. Two windows per direction give you bidirectional context that single-window CLI runs can't.
Exporting and analyzing results on macOS
Exports come in CSV and JSON. CSV opens in Numbers or Excel by double-click and works as a normal spreadsheet — sort by retransmits, plot throughput by interval, run conditional formatting for outliers. JSON is the format of choice for scripts: pipe through `jq` for ad hoc queries, parse with Python pandas for regression analysis, or feed into a Grafana datasource for long-term tracking. The app also supports drag-and-drop of an exported file back onto the app icon to re-import a saved run for review. Quick Look in Finder shows a one-page summary of the run's headline metrics — useful when triaging dozens of files.