Find the process using the most RAM on Mac
Your Mac is swapping and slow. Here's how to find the memory hog in seconds — with Activity Monitor, Terminal, or a menubar monitor.
Memory pressure is climbing, you can hear the SSD working overtime as macOS swaps, and you’d like to know which app to close before everything grinds. The good news is that pinpointing the worst memory user takes about ten seconds — once you know where to look.
Three ways to find it
Activity Monitor
Still the canonical way.
- Open Activity Monitor (Spotlight: Activity).
- Click the Memory tab.
- Click the Memory column header to sort descending — biggest first.
- Check the Memory Pressure graph at the bottom. Green is fine, yellow is borderline, red means you're paging to disk.
The number to look at is Memory (real memory footprint), not “Real Memory Size” or compressed memory — Apple consolidated that. The top entry is your hog.
Terminal: ps and top
When you don’t want to open another GUI:
ps -axm -o rss,pid,comm | sort -nr | head -10
That prints the top ten processes by resident set size (RSS) in kilobytes. Divide by 1024 for MB.
Or use top:
top -o mem -stats pid,command,mem
The -o mem sorts by memory, -stats trims the columns to what you care about. Quit with q.
A menu bar monitor
If you find yourself doing this often, a menu-bar readout removes the “where do I look” step entirely. Beacon shows live memory pressure in the bar, and clicking the readout drops a panel with the top RAM users — no app switching.
- Install Beacon and enable Memory in Settings > Menu Bar.
- Pick percentage, pressure colour dot, or a small graph.
- Click the readout — top three memory users appear instantly. Click one to open Activity Monitor scoped to it.
What counts as “too much”
Modern macOS aggressively uses free RAM as cache, so a Mac at “95% used” can be totally fine. The number that matters is memory pressure:
- Green — plenty of headroom, ignore the gigabyte numbers.
- Yellow — compressed memory is being used heavily, mild concern.
- Red — you’re paging to disk, every app feels slow, this is when to close something.
The usual suspects in 2026 are browsers (especially with many tabs and extensions), Electron apps (Slack, VS Code, Notion, Figma desktop), and creative apps holding large project files in memory. If you see one of those at several gigabytes and you’re not actively using it, quit it — you’ll feel the relief immediately.
More Beacon tips
-
Better alternatives to Activity Monitor on Mac
Activity Monitor is fine for a one-off check, but it's a window you have to keep finding. Here are faster, ambient ways to see what your Mac is doing.
-
Is your Apple Silicon Mac thermal-throttling?
Apple Silicon throttles less than Intel, but it still throttles. Here's how to tell — and what it costs you when it happens.
-
Comparing Mac system monitors (iStat, MenuMeters, Beacon, etc.)
An honest look at the main menubar system monitors for macOS in 2026 — what each does well, what's frustrating, and how to pick.
-
See CPU usage in your Mac menubar
How to keep an always-visible CPU readout in your menu bar, without leaving Activity Monitor open in the corner of every Space.