Solaris Zones · Schema

SwapCapStats

Swap cap statistics

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
swapcap integer Swap cap in bytes
usage integer Current swap usage in bytes
nover integer Number of times swap exceeded the cap
View JSON Schema on GitHub

JSON Schema

solaris-zone-stats-swap-cap-stats-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SwapCapStats",
  "type": "object",
  "description": "Swap cap statistics",
  "properties": {
    "swapcap": {
      "type": "integer",
      "description": "Swap cap in bytes"
    },
    "usage": {
      "type": "integer",
      "description": "Current swap usage in bytes"
    },
    "nover": {
      "type": "integer",
      "description": "Number of times swap exceeded the cap"
    }
  }
}