← Back to HeapProfiler domain

HeapProfiler.stopSampling

No description available.

Domain: HeapProfiler experimental

Returns

NameTypeDescription
profileSamplingHeapProfileRecorded sampling heap profile.

Example Request

{
  "id": 1,
  "method": "HeapProfiler.stopSampling"
}

Example Response

{
  "id": 1,
  "result": {
    "profile": "profile-value"
  }
}

Usage in Node.js

const result = await send('HeapProfiler.stopSampling');
console.log(result);
// {"profile": "profile-value"}