0

I'm developing applications (services) for Windows and sometimes have problem with performance and recources (especially with MsSql). I need to know which service, application or OS component, developed by my or someone else, makes load CPU or HDD at some moment in past.

I whant to be able to do it using some kind of stored data (log), better with grafics.

Is there any way to do it?

Thom A
  • 88,727
  • 11
  • 45
  • 75
Timur Lemeshko
  • 2,747
  • 5
  • 27
  • 39

1 Answers1

1

Perfmon will be you built in friend!

you can either log current performance counters in a user session or let a background service track your preselected counters and you can check that afterwards.

you will find tons of explanations how to user perfmon. It is part of every windows since NT4.

Falco Alexander
  • 3,092
  • 2
  • 20
  • 39