Revisar alto consumo en WHM
highload() { DAY=$(date -d "$1" +%m/%d) ; sys-snap ${DAY} | awk '!/proc_rstate/{ if ( $2 > 100 ) { print $1"\t\033[1;91m"$2"\033[0m" } else if ( $2 > 75 ) { print $1"\t\033[0;31m"$2"\033[0m" } else if ( $2 > 50 ) { print $1"\t\033[0;93m"$2"\033[0m" } else if ( $2 > 10 ) { print $1"\t\033[0;33m"$2"\033[0m" } else if ( $2 > 1 ) { print $1"\t"$2 } }' ; } ; highload today



