{ "$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 } }