Solaris Zones · Schema

ZoneCapStats

Zone resource cap utilization statistics

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
zonename string Zone name
zone_id integer Numeric zone ID
cpu_cap number CPU cap value (percentage of a CPU)
cpu_usage number Current CPU usage percentage
cpu_nwait integer Number of times zone waited due to CPU cap
memory_cap integer Physical memory cap in bytes
memory_usage integer Current physical memory usage in bytes
swap_cap integer Swap cap in bytes
swap_usage integer Current swap usage in bytes
View JSON Schema on GitHub

JSON Schema

solaris-zone-stats-zone-cap-stats-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ZoneCapStats",
  "type": "object",
  "description": "Zone resource cap utilization statistics",
  "properties": {
    "zonename": {
      "type": "string",
      "description": "Zone name"
    },
    "zone_id": {
      "type": "integer",
      "description": "Numeric zone ID"
    },
    "cpu_cap": {
      "type": "number",
      "description": "CPU cap value (percentage of a CPU)"
    },
    "cpu_usage": {
      "type": "number",
      "description": "Current CPU usage percentage"
    },
    "cpu_nwait": {
      "type": "integer",
      "description": "Number of times zone waited due to CPU cap"
    },
    "memory_cap": {
      "type": "integer",
      "description": "Physical memory cap in bytes"
    },
    "memory_usage": {
      "type": "integer",
      "description": "Current physical memory usage in bytes"
    },
    "swap_cap": {
      "type": "integer",
      "description": "Swap cap in bytes"
    },
    "swap_usage": {
      "type": "integer",
      "description": "Current swap usage in bytes"
    }
  }
}