This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 92055 - Heap Walker
Summary: Heap Walker
Status: RESOLVED FIXED
Alias: None
Product: profiler
Classification: Unclassified
Component: Base (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Tomas Hurka
URL: http://profiler.netbeans.org/docs/hel...
Keywords: UI
Depends on:
Blocks: 89614
  Show dependency tree
 
Reported: 2007-01-08 21:33 UTC by Tomas Hurka
Modified: 2007-01-09 07:55 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tomas Hurka 2007-01-08 21:33:59 UTC
HeapWalker is a tool useful for evaluating Java heap contents and searching for memory leaks. It allows 
you to view:
List of classes which are present on the heap. For each class you can see number of it's instances and total 
size of all instances.
List of instances of each class. You can see individual instances and their size (size of instances of the 
same class varies only for arrays).
Fields of each instance or class. You can browse (static) fields to identify individual instances by field 
values and determine dependencies among them.
References to each instance. You can browse instances or classes holding reference to a particular 
instance to find unnecessary references and discover memory leaks.
Comment 1 Tomas Hurka 2007-01-08 21:35:21 UTC
Integrated in trunk.