HTTP Server Zones
Method GET

Return status of an HTTP server zone

Returns status of a particular HTTP server zone.

get/http/server_zones/{httpServerZoneName}

Query parameters

fieldsstring

Limits which fields of the server zone will be output.

Response

Success

processinginteger

The number of client requests that are currently being processed.

requestsinteger

The total number of client requests received from clients.

discardedinteger

The total number of requests completed without sending a response.

receivedinteger

The total number of bytes received from clients.

sentinteger

The total number of bytes sent to clients.

Example response

{
  "processing": 1,
  "requests": 706690,
  "responses": {
    "1xx": 0,
    "2xx": 699482,
    "3xx": 4522,
    "4xx": 907,
    "5xx": 266,
    "codes": {
      "200": 699482,
      "301": 4522,
      "404": 907,
      "503": 266
    },
    "total": 705177
  },
  "discarded": 1513,
  "received": 172711587,
  "sent": 19415530115,
  "ssl": {
    "handshakes": 104303,
    "handshakes_failed": 1421,
    "session_reuses": 54645,
    "no_common_protocol": 4,
    "no_common_cipher": 2,
    "handshake_timeout": 0,
    "peer_rejected_cert": 0,
    "verify_failures": {
      "no_cert": 0,
      "expired_cert": 2,
      "revoked_cert": 1,
      "other": 1
    }
  }
}

Changes

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