dotMemory 2017.1 Help

Analysis Overview

/help/img/dotnet/2017.1/analysis_overview_1.png

After you finish with collecting profiling data, dotMemory opens a new tab with the Analysis Overview page.

The Analysis Overview page provides you with information about data collected during the session:

/help/img/dotnet/2017.1/ui_1.png Timeline
The timeline graph shows how your app consumed memory during the profiling process. The timeline consists of four charts showing instant sizes of Gen0, Gen1, Gen2 heaps and Large Object Heap. You can also add the chart showing the size of unmanaged memory by turning on the Show unmanaged memory parameter.
/help/img/dotnet/2017.1/ui_2.pngCollected snapshots

/help/img/dotnet/2017.1/snapshot_ov.png
This area contains short reports about all snapshots collected during profiling. Each report allows you to:
  • Get details about the total amount of memory* requested by your app. The total value (grey bar) consists of:
    • Unmanaged memory - memory allocated outside of the managed heap and not managed by Garbage Collector. Generally, this is the memory required by .NET CLR, dynamic libraries, graphics buffer, and so on. This part of memory cannot be analyzed in the profiler.
      if you turn off the Show unmanaged memory parameter, the size of unmanaged memory will be subtracted from the total value.
    • .NET free memory - the amount of memory in the managed heap allocated for but not used by the app.
    • .NET, used (blue bar) - the amount of memory in the managed heap used by the app. This is the only part of memory .NET allows you to work with.
  • Open a snapshot in the Snapshot view by clicking on the snapshot name.
  • Rename a snapshot using the /help/img/dotnet/2017.1/ThemedIcon.Edit.Screen.[Gray].png button.
  • Open all objects in the heap for analsis (using the [objects size] objects link). In this case, the 'All objects' object set will be opened in the Type List view.
  • Open marked objects for analysis (using the Marked objects link). The 'Marked objects' object set will be opened in the Type List view. Learn more about marking objects in the section Marking an Instance.
  • View memory traffic (using the Memory traffic link) generated by the app from the start of the profiling session to the moment of getting a snapshot. Learn more about analyzing traffic in the section Analyzing Traffic .

/help/img/dotnet/2017.1/ui_3.pngSnapshot comparison area
To compare two snapshots drag and drop them to the Comparison area or click Add to comparison for each snapshot. Learn more about how to compare snapshots in the section Comparing Snapshots.

Last modified: 24 August 2017

See Also