How to Check CPU Usage on a Mac

Keeping an eye on your Mac's CPU usage is one of the most direct ways to understand what's happening under the hood. Whether your fan is spinning loudly, apps are sluggish, or you're just curious about system performance, knowing where to look — and what you're looking at — makes a real difference.

What CPU Usage Actually Means

Your Mac's CPU (Central Processing Unit) is the brain of the machine. Every task — opening an app, rendering video, running a background sync — demands a slice of its processing power. CPU usage is expressed as a percentage, representing how much of that processing capacity is currently in use.

A CPU running at 100% for extended periods can cause thermal throttling, slowdowns, and battery drain on laptops. Occasional spikes are normal. Sustained high usage usually points to something specific: a misbehaving app, a runaway process, or a system genuinely pushed to its limits.

Method 1: Activity Monitor (The Built-In Standard)

Activity Monitor is macOS's native system utility and the most reliable place to check CPU usage. You'll find it at:

Applications → Utilities → Activity Monitor

Or search for it using Spotlight (⌘ + Space, then type "Activity Monitor").

What You'll See

Once open, click the CPU tab. The window shows a live list of every running process, sorted by CPU consumption. Key columns include:

  • % CPU — the percentage of processing power each process is using
  • CPU Time — cumulative time the CPU has spent on that process
  • Process Name — the app or system task responsible

At the bottom of the window, a graph displays total CPU usage in real time, split between user (your apps) and system (macOS itself) load.

Sorting and Identifying Offenders

Click the % CPU column header to sort processes from highest to lowest. Any process consistently sitting above 50–80% when it shouldn't be is worth investigating. Common culprits include browsers with heavy tabs, video editors, indexing processes like Spotlight or mds_stores, and antivirus scans.

Method 2: The Menu Bar CPU Monitor 🖥️

If you want a persistent, at-a-glance view without opening Activity Monitor each time, you can enable a CPU usage indicator in the menu bar directly from Activity Monitor:

  1. Open Activity Monitor
  2. Go to View in the menu bar
  3. Select Dock Icon → Show CPU Usage

This turns the Activity Monitor Dock icon into a live CPU graph. It's not in the menu bar itself, but it's always visible when the Dock is showing.

For a true menu bar display, third-party utilities like iStatistica, MenuMeters, or Stats (open source) embed a persistent CPU readout at the top of your screen. These apps vary in how much detail they show — some display per-core usage, others show combined load with temperature readings.

Method 3: Terminal Commands for Precise Readings

If you're comfortable with the command line, macOS's Terminal offers precise CPU data.

Using top

Open Terminal (Applications → Utilities → Terminal) and type:

top 

The top command displays a live-updating list of processes. Near the top of the output, you'll see a CPU usage summary broken into:

  • user — CPU load from your apps
  • sys — CPU load from system processes
  • idle — unused CPU capacity

Press Q to exit.

Using ps for Snapshots

For a one-time snapshot of the top CPU-consuming processes:

ps aux --sort=-%cpu | head -10 

This lists the top 10 CPU-heavy processes at that moment, which is useful for scripting or logging.

Understanding CPU Usage by Mac Type

Not all CPU readings mean the same thing across different Mac hardware. The interpretation of "high" usage depends significantly on your specific machine.

Mac TypeCPU ArchitectureRelevant Context
MacBook Air (M-series)Apple SiliconFanless; throttles under sustained load
MacBook Pro (M-series)Apple SiliconActive cooling; handles sustained load better
Intel Mac (pre-2020)x86Separate CPU/GPU; older thermal profiles
Mac mini / Mac StudioApple Silicon or IntelDesktop cooling; generally more headroom

Apple Silicon Macs (M1, M2, M3, M4 chips) use a unified memory architecture where CPU and GPU share resources. Activity Monitor on these machines shows CPU clusters — efficiency cores and performance cores — which can make usage patterns look different from Intel Macs.

What Counts as "Normal" CPU Usage? ⚡

There's no universal number, but general patterns hold across most systems:

  • 0–10% at idle — typical for a well-maintained Mac doing nothing intensive
  • 20–50% during moderate use — expected when browsing, writing, or light multitasking
  • 60–90%+ during active tasks — normal for video export, gaming, large file compression
  • Sustained 90–100% with no heavy task running — worth investigating

Background processes like Time Machine backups, iCloud syncing, software updates, and Spotlight indexing can temporarily spike CPU usage without any visible app triggering it. These are usually self-resolving.

Factors That Change What You're Seeing

Several variables affect how CPU usage reads and what it means for your situation:

  • macOS version — newer versions of macOS may run background processes differently, including system integrity scans and ML-based features
  • Number of browser tabs and extensions — browsers are among the heaviest CPU consumers on most Macs
  • RAM availability — when RAM is full, the system uses disk swap, which indirectly increases CPU load as it manages memory compression
  • Thermal state — a Mac that's hot may throttle CPU performance, making tasks take longer and appear to consume more CPU over time
  • App optimization — some apps are optimized for Apple Silicon natively; others run through Rosetta 2 translation, which adds CPU overhead

Whether a given CPU usage level is a problem — or simply the expected cost of the work you're doing — depends on what's running, what you're trying to accomplish, and the specific hardware you're working with.