Reputation: 26887
There's a lovely blog post here that tells you how to go about looking for memory leaks in an azure web site..
Trouble is, things have moved on, and azure doesn't support giving you a gcdump as described in that post (The URL fro grabbing a gcdump is not valid).
What I want to do is just to work out where a potential memory leak is happening - I've tried:
Help!
Upvotes: 3
Views: 633
Reputation: 24636
You can get your memory dumps automatically analyzed by the Web App Support Portal, which could save you some debugging time.
Go to https://<yoursitename>.scm.azurewebsites.net/support
and click "Analyze" -> "Diagnose Now" and wait for the analysis to complete (it takes a couple minutes)
Upvotes: 3