mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
32 lines
896 B
Bash
Executable File
32 lines
896 B
Bash
Executable File
#!/bin/bash
|
|
# by Paul Colby (http://colby.id.au), no rights reserved ;)
|
|
# https://github.com/Leo-G/DevopsWiki/wiki/How-Linux-CPU-Usage-Time-and-Percentage-is-calculated
|
|
|
|
PREV_TOTAL=0
|
|
PREV_IDLE=0
|
|
|
|
while true; do
|
|
# Get the total CPU statistics, discarding the 'cpu ' prefix.
|
|
CPU=(`sed -n 's/^cpu\s//p' /proc/stat`)
|
|
IDLE=${CPU[3]} # Just 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 -e "$DIFF_USAGE%\n$DIFF_USAGE%"
|
|
|
|
# Remember the total and idle CPU times for the next check.
|
|
PREV_TOTAL="$TOTAL"
|
|
PREV_IDLE="$IDLE"
|
|
|
|
# Wait before checking again.
|
|
sleep 1
|
|
done
|