This runbook provides steps to monitor system performance on a Linux server.

Prerequisites

  • Access to the server

Steps

  1. Check CPU Usage
top
  1. Check Memory Usage
free -h
  1. Check Disk Usage
df -h
  1. Check Network Usage
iftop
  1. Install Monitoring Tools (Optional)
sudo apt install -y htop glances nload
  1. Run Monitoring Tools
htop
glances
nload

Verification

  • Ensure system resources are within acceptable limits.
  • Identify and troubleshoot any bottlenecks or issues.