Memory usage graph for Windows Server 2008

windows-server-2008-r2

I'm trying to trace a memory leakage on my Windows Server 2008. There are different schedule tasks run by the web app which I suspect the leakage is happening so I want to know at which particular time of the day when the mem usage hikes.

Is there a tool which I can use to track only that particular process?

Website is running on ASP.NET with IIS 7.

Best Answer

Every windows server since NT comes with Performance Logs and Alerts. It can be accessed with the "perfmon" mmc tool. You can add counter logs for overall memory or memory of a process at various intervals then review the logs at a later date. Perfmon allows you to instrument just about any counter windows tracks.

It looks like the interface has changed slightly in 2008 but here's a simple guide for monitoring memory of a JVM from ibm. The basic concepts of counters/logs should remain the same.

For a simple tool to be able to view current status (and brief history) of a system try Process Explorer

Related Topic