To troubleshoot the memory usage of the Breezy service, a memory dump should be generated. This can be done with procdump utility from Microsoft:
- Download procdump from http://technet.microsoft.com/en-gb/sysinternals/dd996900.aspx
- Extract contents of the Zip file and you will find an executable called ‘procdump.exe’
- Find the process ID (PID) of the process from which you want to take the memory dump, this can be done in Windows Task Manager on Processes or Details (Windows Server 2012) tab
- Open a command prompt window and navigate to the directory where you extracted procdump and type the following command:
- procdump –ma PID MemoryDumpName (for example: procdump -ma 2408 connectordump)
- procdump –ma PID MemoryDumpName (for example: procdump -ma 2408 connectordump)
- If the capture of the memory dump was successful, you should see a file called connectordump.dmp created in the folder where you have the procdump executable.
Comments