← Back to Tracing domain

Tracing.recordClockSyncMarker

Record a clock sync marker in the trace.

Domain: Tracing experimental

Parameters

NameTypeDescription
syncIdstringThe ID of this clock sync marker

Example Request

{
  "id": 1,
  "method": "Tracing.recordClockSyncMarker",
  "params": {
    "syncId": "syncId-value"
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Tracing.recordClockSyncMarker', {"syncId": "syncId-value"});
console.log(result);