An open API service indexing awesome lists of open source software.

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

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

![](http://i.imgbox.com/URQaM9tb.jpg)

# 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

```