How to debug Azure Web App memory leaks?

前端 未结 4 850
广开言路
广开言路 2021-02-14 15:02

There is the excellent Start Profiling button in the SCM portal that works perfect for CPU.

Then there are some sources that refer to a Downl

4条回答
  •  遥遥无期
    2021-02-14 15:48

    You can download a memory dump using Kudu Console and use DebugDiag to profile it, you can have more than one memory dump, one before the leak happens, one during it and one after, later you can compare and see which objects are growing in size and not getting disposed

提交回复
热议问题