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

Summary: Heap Walker
Product: profiler Reporter: Tomas Hurka <thurka>
Component: BaseAssignee: Tomas Hurka <thurka>
Status: RESOLVED FIXED    
Severity: blocker Keywords: UI
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
URL: http://profiler.netbeans.org/docs/help/6.0/heapwalker.html
Issue Type: ENHANCEMENT Exception Reporter:
Bug Depends on:    
Bug Blocks: 89614    

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.