Stream Server Zones
Method GET

Return status of a stream server zone

Returns status of a particular stream server zone.

get/stream/server_zones/{streamServerZoneName}

Query parameters

fieldsstring

Limits which fields of the server zone will be output.

Response

Success

processinginteger

The number of client connections that are currently being processed.

connectionsinteger

The total number of connections accepted from clients.

discardedinteger

The total number of connections completed without creating a session.

receivedinteger

The total number of bytes received from clients.

sentinteger

The total number of bytes sent to clients.

Example response

{
  "dns": {
    "processing": 1,
    "connections": 155569,
    "sessions": {
      "2xx": 155564,
      "4xx": 0,
      "5xx": 0,
      "total": 155569
    },
    "discarded": 0,
    "received": 4200363,
    "sent": 20489184,
    "ssl": {
      "handshakes": 76455,
      "handshakes_failed": 432,
      "session_reuses": 28770,
      "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.