Workers
Method GET

Return status of a worker process

Returns status of a particular worker process.

get/workers/{workerId}

Query parameters

fieldsstring

Limits which fields of worker process statistics will be output.

Response

Success

idinteger

The ID of the worker process.

pidinteger

The PID identifier of the worker process used by the operating system.

Example response

{
  "id": 0,
  "pid": 32212,
  "connections": {
    "accepted": 1,
    "dropped": 0,
    "active": 1,
    "idle": 0
  },
  "http": {
    "requests": {
      "total": 15,
      "current": 1
    }
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.