← Back to Profiler domain

Profiler.stop

No description available.

Domain: Profiler stable

Returns

NameTypeDescription
profileProfileRecorded profile.

Example Request

{
  "id": 1,
  "method": "Profiler.stop"
}

Example Response

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

Usage in Node.js

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