- System requirements
- Profiler architecture
- Running the profiler
- Profiler activation
- Start profiling
- Solving performance problems
- CPU profiling
- Threads
- Deadlock detector
- Memory profiling
- Memory telemetry
- Memory snapshot
- Object allocation recording
- Shallow and retained sizes
- Memory views
- Memory inspections
- Comparing memory snapshots
- Support of HPROF format snapshots
- Support of Java Flight Recorder (JFR)
- Support of Portable Heap Dumps (.phd)
- Values of primitive types
- Persistent object IDs
- Useful actions
- Set description language
- Garbage collection
- Monitor profiling
- Exception profiling
- Probes: monitor events of various kinds
- Performance Charts
- Inspections: automatic recognition of typical problems
- Automatically trigger actions on event
- Summary, snapshot annotation, automatic deobfuscation
- Time measurement (CPU time, wall time)
- Filters
- Snapshot directory customization
- Export of profiling results to HTML, CSV, XML, plain text
- Profiler Java API
- Profiler HTTP API
- Command line tool to control profiling
- Settings
- FAQ: How to profile in my scenario?
Useful actions
Use popup menu and main menu to see what actions are enabled in particular context.
-
Memory | Quick Info (Ctrl+Q) - Quick info view shows detail on selected object(s).
-
Memory | Instances by Class... (Ctrl+N) - shows instances of a class after you specify its name.
Hint: You can also use this action to get quick info on the number of instances of a particular class: just type in the class name, and the instance count will appear next to the class name in the lookup list. Then hit ESC to close the lookup window, or press Enter to open the new tab. -
Memory | Selected Objects (F4) - shows selected live objects in a new tab. Works in any memory view if the selection represents live objects.
-
Memory | Paths from GC Roots... (Ctrl+P) - finds paths from GC roots to the objects represented within the current selection. Works in any memory view if the selection represents live objects.
-
Memory | Strings by Pattern... (Ctrl+F) - shows instances of
java.lang.String
,char[]
andbyte[]
(in specified encoding) matching the given text pattern. This can be useful to locate particular objects if their fields refer to a known string or a char sequence. -
Tools | Open in IDE (F7) - opens the currently selected class, field or method in the IDE editor. See IDE integration.
-
Memory | Method Merged Callees (Ctrl+M) - shows merged callees of the selected method.
-
Memory | Method Back Traces (Ctrl+Shift+M) - shows back traces of the selected method.