What key performance monitors should I watch for ASP.NET application

后端 未结 5 466
耶瑟儿~
耶瑟儿~ 2021-02-04 13:58

I have a site that receives 5 million request per day. On heavy days, the pages take about 10 seconds to return. I also get out of memory exceptions. I\'ve been reading the Impr

5条回答
  •  无人共我
    2021-02-04 14:39

    If you look at it from a very basic level you only have 4 main things:

    • Disk
    • CPU
    • Memory
    • Network

    You can monitor these: Disk is queue length, the others are % utilization.

    However, the problem may not be one of these. It could be a configuration setting that, for example, sets the max number of connections. A good place to start to look for these is the IIS error log or the Event log.

提交回复
热议问题