RESPONSE constant

ServerLogEntryKind const RESPONSE

Various counters and measurements related to execution of a request. The "data" field contains a JSON object with following fields:

  • "id" - the id of the request - copied from the request.
  • "method" - the method of the request, e.g. "edit.getAssists".
  • "clientRequestTime" - the time (milliseconds since epoch) at which the client made the request - copied from the request.
  • "serverRequestTime" - the time (milliseconds since epoch) at which the server received and decoded the JSON request.
  • "responseTime" - the time (milliseconds since epoch) at which the server created the response to be encoded into JSON and sent to the client.

Implementation

static const ServerLogEntryKind RESPONSE = ServerLogEntryKind._('RESPONSE');