Process Memory Size - Different Counters

前端 未结 7 1986
闹比i
闹比i 2020-12-30 04:46

I\'m trying to find out how much memory my own .Net server process is using (for monitoring and logging purposes).

I\'m using:

Process.GetCurrentProc         


        
相关标签:
7条回答
  • 2020-12-30 05:13

    I'd suggest to also monitor how often pagefaults happen. A pagefault happens when you try to access some data that have been moved from physical memory to swap file and system has to read page from disk before you can access this data.

    0 讨论(0)
提交回复
热议问题