0

I have Azure SDK 2.5 .I need to detect memory leaks in worker role that runs tasks. What type of profiler could you advise to me ?

Also, how can i download memory dumps to analyse from production environment ?

Vladyslav Furdak
  • 1,765
  • 2
  • 22
  • 46

1 Answers1

0

I suggest that you should upgrade your Azure SDK to the latest 2.9 version.

To debug your worker role locally, you can just press F5 to start VS in Debug mode, and if you have VS 2015, it already has Memory and CPU profiler that you can use. There are many other profilers like DebugDiag, and Ants Profiler

If you want to debug an Azure Worker or Web Role, then expand the list of resources in VS under your Azure Subscription and right click on the worker role and select Debug, but make sure the remote debugging is enabled in the worker role settings.

See this link for more details

https://azure.microsoft.com/en-us/documentation/articles/vs-azure-tools-debug-cloud-services-virtual-machines/

Haitham Shaddad
  • 4,336
  • 2
  • 14
  • 19