Created
September 14, 2013 04:29
-
-
Save pcolby/6558833 to your computer and use it in GitHub Desktop.
Calculating CPU Usage from /proc/stat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# by Paul Colby (http://colby.id.au), no rights reserved ;) | |
PREV_TOTAL=0 | |
PREV_IDLE=0 | |
while true; do | |
CPU=(`cat /proc/stat | grep '^cpu '`) # Get the total CPU statistics. | |
unset CPU[0] # Discard the "cpu" prefix. | |
IDLE=${CPU[4]} # Get the idle CPU time. | |
# Calculate the total CPU time. | |
TOTAL=0 | |
for VALUE in "${CPU[@]}"; do | |
let "TOTAL=$TOTAL+$VALUE" | |
done | |
# Calculate the CPU usage since we last checked. | |
let "DIFF_IDLE=$IDLE-$PREV_IDLE" | |
let "DIFF_TOTAL=$TOTAL-$PREV_TOTAL" | |
let "DIFF_USAGE=(1000*($DIFF_TOTAL-$DIFF_IDLE)/$DIFF_TOTAL+5)/10" | |
echo -en "\rCPU: $DIFF_USAGE% \b\b" | |
# Remember the total and idle CPU times for the next check. | |
PREV_TOTAL="$TOTAL" | |
PREV_IDLE="$IDLE" | |
# Wait before checking again. | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See http://colby.id.au/calculating-cpu-usage-from-proc-stat for background / explanation.