Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
The "Monitor de Atividades," known as Activity Monitor in English, is a built-in utility on macOS that allows users to monitor and manage their system's performance. It provides real-time data on CPU usage, memory allocation, energy consumption, disk activity, and network usage. This tool is essential for troubleshooting performance issues and optimizing system resources.
To open Activity Monitor on macOS, follow these steps:
Using Spotlight Search:
Command (⌘) + Space
to open Spotlight.Enter
.Via Finder:
Applications
.Utilities
folder.Activity Monitor
.Activity Monitor has several tabs, each providing specific information about your system:
CPU
tab.% CPU
column header to sort processes by CPU usage.X
button in the toolbar to quit it.Memory
tab in Activity Monitor.Memory Pressure
graph at the bottom of the window. Green indicates sufficient memory, while red suggests a need for more RAM.Energy
tab.Energy Impact
column to see which applications are consuming the most power.For users comfortable with the terminal, macOS also provides command-line tools like top
and ps
to monitor system performance:
Using top
:
top
to see a real-time list of processes and their CPU usage.Using ps
:
ps -A
to list all running processes.ps aux | sort -nrk 3,3 | head -n 5
to display the top 5 CPU-consuming processes.