Skip to content

Process Monitoring

Short notes for monitoring, inspecting, and troubleshooting running processes.

What To Watch

  • Parent and child processes.
  • CPU and memory consumption.
  • Zombie or stuck processes.
  • Restart loops and crash patterns.

Useful Commands

ps aux
top
htop
pgrep nginx
kill -HUP <pid>
systemctl status <service>