1 Answer
Run the following command to monitor A SPEcific process in top
top -p 12345
Where 12345 is the pid of a specific process like chrome java node sshd
To Monitor a multiple processes in top
top -p pid1,pid2,pid3
Your Answer