Log Cpu Usage On Linux

[Solved] Log Cpu Usage On Linux | Shell - Code Explorer | yomemimo.com
Question : log cpu usage on linux

Answered by : better-bison-7ur2i4n3weko

while true; do (echo "%CPU %MEM ARGS $(date)" && ps -e -o pcpu,pmem,args --sort=pcpu | cut -d" " -f1-5 | tail) >> ps.log; sleep 5; done

Source : https://askubuntu.com/questions/22021/how-to-log-cpu-load | Last Update : Fri, 12 Feb 21

Question : log cpu usage of process linux

Answered by : -1vajs8k9qntw

# log a processed cpu usage every second
while [ 1 ]
do #change 25029 to your process id to monitor top -b -n 2 -d 0.2 -p 25029 | tail -1 | awk '{print $9}' sleep 1
done

Source : | Last Update : Mon, 05 Apr 21

Answers related to log cpu usage on linux

Code Explorer Popular Question For Shell