NGINX · Schema

Memory Slot

NginxSlabZoneSlot schema from NGINX Plus REST API

API GatewayCachingCloud NativeLoad BalancerOpen SourceReverse ProxyWeb Server

Properties

Name Type Description
used integer The current number of used memory slots.
free integer The current number of free memory slots.
reqs integer The total number of attempts to allocate memory of specified size.
fails integer The number of unsuccessful attempts to allocate memory of specified size.
View JSON Schema on GitHub

JSON Schema

plus-http-api-nginx-slab-zone-slot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nginx/refs/heads/main/json-schema/plus-http-api-nginx-slab-zone-slot-schema.json",
  "title": "Memory Slot",
  "description": "NginxSlabZoneSlot schema from NGINX Plus REST API",
  "type": "object",
  "properties": {
    "used": {
      "type": "integer",
      "description": "The current number of used memory slots.",
      "example": 0
    },
    "free": {
      "type": "integer",
      "description": "The current number of free memory slots.",
      "example": 0
    },
    "reqs": {
      "type": "integer",
      "description": "The total number of attempts to allocate memory of specified size.",
      "example": 0
    },
    "fails": {
      "type": "integer",
      "description": "The number of unsuccessful attempts to allocate memory of specified size.",
      "example": 0
    }
  }
}