HeapProfiler Domain
Methods
HeapProfiler.collectGarbage #
HeapProfiler.getHeapObjectId #
Parameters
objectId
Identifier of the object to get heap object id for.
Return object
heapSnapshotObjectId
Id of the heap snapshot object corresponding to the passed remote object id.
HeapProfiler.getObjectByHeapObjectId #
Parameters
objectId
objectGroup
Optional
string
Symbolic group name that can be used to release multiple objects.
Return object
result
Evaluation result.
HeapProfiler.startSampling #
Parameters
samplingInterval
Optional
number
Average sample interval in bytes. Poisson distribution is used for the intervals. The default value is 32768 bytes.
includeObjectsCollectedByMajorGC
Optional
boolean
By default, the sampling heap profiler reports only objects which are still alive when the profile is returned via getSamplingProfile or stopSampling, which is useful for determining what functions contribute the most to steady-state memory usage. This flag instructs the sampling heap profiler to also include information about objects discarded by major GC, which will show which functions cause large temporary memory usage or long GC pauses.
includeObjectsCollectedByMinorGC
Optional
boolean
By default, the sampling heap profiler reports only objects which are still alive when the profile is returned via getSamplingProfile or stopSampling, which is useful for determining what functions contribute the most to steady-state memory usage. This flag instructs the sampling heap profiler to also include information about objects discarded by minor GC, which is useful when tuning a latency-sensitive application for minimal GC activity.
HeapProfiler.stopTrackingHeapObjects #
Parameters
reportProgress
Optional
boolean
If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken when the tracking is stopped.
treatGlobalObjectsAsRoots
Optional
boolean
Deprecated in favor of exposeInternals
.
captureNumericValue
Optional
boolean
If true, numerical values are included in the snapshot
exposeInternals
Optional
boolean
If true, exposes internals of the snapshot.
HeapProfiler.takeHeapSnapshot #
Parameters
reportProgress
Optional
boolean
If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken.
treatGlobalObjectsAsRoots
Optional
boolean
If true, a raw snapshot without artificial roots will be generated.
Deprecated in favor of exposeInternals
.
captureNumericValue
Optional
boolean
If true, numerical values are included in the snapshot
exposeInternals
Optional
boolean
If true, exposes internals of the snapshot.
Events
HeapProfiler.heapStatsUpdate #
If heap objects tracking has been started then backend may send update for one or more fragments
Parameters
statsUpdate
array[ integer
]
An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment.
HeapProfiler.lastSeenObjectId #
If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
Parameters
lastSeenObjectId
integer
timestamp
number
HeapProfiler.reportHeapSnapshotProgress #
Parameters
done
integer
total
integer
finished
Optional
boolean