dotMemory 2017.3 Help

Typical Profiling Workflow

Your workflow in dotMemory may vary depending on the issue you want to analyze. Nevertheless, generally, it will always include the following steps:

  1. Run a dotMemory profiling session (period of time during which dotMemory measures different aspects of the app). This runs the app you profile as well.
  2. Work with your app for some time as you would normally do. If you seek for a certain memory issue, reproduce the issue in the app.
  3. Get a memory snapshot (an instant image of the managed heap).
  4. For additional information about memory usage, you may also get more snapshots (for example, before and after reproducing the issue). dotMemory will allow you to compare these snapshots and understand how your app utilizes memory over time.
  5. Analyze the snapshot(s) to determine the cause of the issue.

Example

How it will look like in real life? For example, your app has a memory leak. Your task is to determine what objects cause the leak and where these objects origin from (an exact call). Simply follow the workflow:

  1. Run a profiling session.
  2. At some point of working with the app, take a memory snapshot.
  3. Work with the app for some time, so that the leak could reveal itself more obviously.
  4. Take a memory snapshot again.
  5. Using a number of dotMemory views, analyze the snapshots and determine:
    • Objects of what type grow over time?
    • What prevents these objects from being collected?
    • What method originates the leak?

If you worked with other memory profilers once, you see that dotMemory doesn’t stand out of the row and its workflow is quite similar to others. What really makes dotMemory different is the way you analyze the memory snapshot. See the next section for details.

Last modified: 16 April 2018

See Also