https://github.com/eon01/60seconds
Netflix Linux Performance Analysis in 60,000 Milliseconds
https://github.com/eon01/60seconds
Last synced: about 1 year ago
JSON representation
Netflix Linux Performance Analysis in 60,000 Milliseconds
- Host: GitHub
- URL: https://github.com/eon01/60seconds
- Owner: eon01
- License: gpl-3.0
- Created: 2015-12-21T16:19:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-23T23:35:16.000Z (over 10 years ago)
- Last Synced: 2025-04-19T01:32:58.267Z (about 1 year ago)
- Language: Shell
- Size: 23.4 KB
- Stars: 12
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 60seconds
A simple bash script to analyze Linux performance inspired from [Netflix Linux Performance Analysis in 60,000 Milliseconds blog post](http://techblog.netflix.com/2015/11/linux-performance-analysis-in-60s.html)
# Screenshot

# Dependencies
- systat
# Usage
Install dependencies, download the script and run it:
``` bash
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:
``` bash
wget --quiet https://raw.githubusercontent.com/eon01/60seconds/master/60seconds.sh -O 60seconds.sh; chmod +x ./60seconds.sh; ./60seconds.sh; rm -rf 60seconds.sh
```