What's the best tool to track a process's memory usage over a long period of time in Windows?

后端 未结 7 1171
北海茫月
北海茫月 2021-01-16 07:17

What is the best available tool to monitor the memory usage of my C#/.Net windows service over a long period of time. As far as I know, tools like perfmon can monitor the m

7条回答
  •  礼貌的吻别
    2021-01-16 07:42

    If you're familiar with Python, it's pretty easy to write a script for this.

    Activestate Python (which is free) exposes the relevant parts of the Win32 API through the win32process module.

    You can also check out all win32 related modules or use gotAPI to browse the Python standard libs.

提交回复
热议问题