A simple bash script to analyze Linux performance inspired from Netflix Linux Performance Analysis in 60,000 Milliseconds blog post
- systat
Install dependencies, download the script and run it:
wget https://raw.githubusercontent.com/eon01/60seconds/master/60seconds.sh
chmod +x 60seconds.sh
./60seconds.sh -b -e
Parameters:
-b|--batch: Run the script in batch mode
-e|--explain: Run the script without explanation
Run it in one command:
wget --quiet https://raw.githubusercontent.com/eon01/60seconds/master/60seconds.sh -O 60seconds.sh; chmod +x ./60seconds.sh; ./60seconds.sh; rm -rf 60seconds.sh