问题
Can I investigate memory-leaks in azure without powershell? I know it is discribed to download memorydumps with use of powershell-commands on several places on the web but I just hate to work with error-prone handtyped commands.
回答1:
Yes, actually it is very easy.
Navigate to the website in question with use of the internal url. For example http://yourwebsitename.azurewebsites.net/. Then add the letters .scm. after your websitename. you 'll then get : http://yourwebsitename.scm.azurewebsites.net/
Then you can choose for proces explorer -> propertys -> download gcdump. The resulting file can be opened in visual studio 2013. You can sort on Size in bytes to try to identify which types are leaking.
来源:https://stackoverflow.com/questions/26411318/investigating-memory-leaks-in-azure-without-powershell