NGINX · JSON Structure

Plus Http Api Nginx Http Limit Conn Zone Structure

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

HTTP Connections Limiting 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": "HTTP Connections Limiting",
  "type": "object",
  "members": {
    "passed": {
      "description": "The total number of connections that were neither limited nor accounted as limited.",
      "type": "int32",
      "example": 0
    },
    "rejected": {
      "description": "The total number of connections that were rejected.",
      "type": "int32",
      "example": 0
    },
    "rejected_dry_run": {
      "description": "The total number of connections accounted as rejected in the <a href=\"https://nginx.org/en/docs/http/ngx_http_limit_conn_module.html#limit_conn_dry_run\">dry run</a> mode.",
      "type": "int32",
      "example": 0
    }
  },
  "example": {
    "passed": 15,
    "rejected": 0,
    "rejected_dry_run": 2
  }
}