Logo Linux Bash SSH Ubuntu Git Menu
 

Identifying processes causing 100% cpu usage [duplicate]

Is there someway to record Task Managers info about CPU and memory usage to examine later? Or an equivalent tool?

like image 390
foobarfuzzbizz Avatar asked Apr 11 '26 06:04

foobarfuzzbizz


3 Answers

Windows Performance Monitor (perfmon) should do the job for you; you can configure it to log to a file, so just enable the counters you need and it'll log as much as you want.

like image 50
RainyRat Avatar answered Apr 13 '26 22:04

RainyRat


  • Start > Run > perfmon
  • Hit the plus sign next to Performance Logs and Alerts
  • Right click System Log and select properties.
  • Adjust the sampling times to whatever you like
  • When you are done, hit OK then the plus sign at the top of the window.

This page gives a pretty good step-by-step with screenshots

like image 31
matt Avatar answered Apr 13 '26 22:04

matt


You may consider using a monitoring solution like zabbix, zenoss to collect and analyse your perf counters.

like image 28
Maxwell Avatar answered Apr 13 '26 22:04

Maxwell