NGINX · Schema

Processes

NginxProcesses schema from NGINX Plus REST API

API GatewayCachingCloud-NativeLoad BalancerOpen-SourceReverse ProxyWeb Server

Properties

Name Type Description
respawned integer The total number of abnormally terminated and respawned child processes.
View JSON Schema on GitHub

JSON Schema

plus-http-api-nginx-processes-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-processes-schema.json",
  "title": "Processes",
  "description": "NginxProcesses schema from NGINX Plus REST API",
  "type": "object",
  "properties": {
    "respawned": {
      "type": "integer",
      "description": "The total number of abnormally terminated and respawned child processes.",
      "example": 0
    }
  },
  "example": {
    "respawned": 0
  }
}