Create memory dump of Azure App Service – manual way
Open KUDU with powershell. List all processes Get-Process | Sort-Object {$_.Threads.Count} -Descending | Select-Object ProcessName, Id, @{n=’Threads’;e={$_.Threads.Count}}, @{n=’Memory_MB’;e={[math]::Round($_.WorkingSet64/1MB,2)}} | Format-Table -AutoSize Select the ID with more threads – not SCM one – you can confirm it in KUDU console go to c:\devtools\sysinternals cd c:\devtools\sysinternals check current logs: dir c:\home\logfiles Create memory dump: ./procdump.exe -accepteula -ma […]