NGINX · Schema

Sync Zone

Synchronization status of a shared memory zone.

API GatewayCachingCloud NativeLoad BalancerOpen SourceReverse ProxyWeb Server

Properties

Name Type Description
records_pending integer The number of records that need to be sent to the cluster.
records_total integer The total number of records stored in the shared memory zone.
View JSON Schema on GitHub

JSON Schema

plus-http-api-nginx-stream-zone-sync-zone-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-stream-zone-sync-zone-schema.json",
  "title": "Sync Zone",
  "description": "Synchronization status of a shared memory zone.",
  "type": "object",
  "properties": {
    "records_pending": {
      "type": "integer",
      "description": "The number of records that need to be sent to the cluster.",
      "example": 0
    },
    "records_total": {
      "type": "integer",
      "description": "The total number of records stored in the shared memory zone.",
      "example": 0
    }
  }
}