NGINX · JSON Structure

Plus Http Api Nginx Connections Structure

The number of accepted, dropped, active, and idle connections.

Type: object Properties: 0
API GatewayCachingCloud NativeLoad BalancerOpen SourceReverse ProxyWeb Server

Connections is a JSON Structure definition published by NGINX. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "Connections",
  "description": "The number of accepted, dropped, active, and idle connections.\n",
  "type": "object",
  "members": {
    "accepted": {
      "description": "The total number of accepted client connections.",
      "type": "int32",
      "example": 4968119
    },
    "dropped": {
      "description": "The total number of dropped client connections.",
      "type": "int32",
      "example": 0
    },
    "active": {
      "description": "The current number of active client connections.",
      "type": "int32",
      "example": 5
    },
    "idle": {
      "description": "The current number of idle client connections.",
      "type": "int32",
      "example": 117
    }
  },
  "example": {
    "accepted": 4968119,
    "dropped": 0,
    "active": 5,
    "idle": 117
  }
}