Solaris Zones · Schema

ZoneMiscStats

Zone miscellaneous statistics

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
zonename string
zone_id integer
nprocs integer Number of processes in the zone
nlwps integer Number of lightweight processes in the zone
pr_size integer Total process size in bytes
pr_rss integer Total resident set size in bytes
View JSON Schema on GitHub

JSON Schema

solaris-zones-zonemiscstats-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ZoneMiscStats",
  "title": "ZoneMiscStats",
  "type": "object",
  "description": "Zone miscellaneous statistics",
  "properties": {
    "zonename": {
      "type": "string",
      "example": "example_value"
    },
    "zone_id": {
      "type": "integer",
      "example": "500123"
    },
    "nprocs": {
      "type": "integer",
      "description": "Number of processes in the zone",
      "example": 10
    },
    "nlwps": {
      "type": "integer",
      "description": "Number of lightweight processes in the zone",
      "example": 10
    },
    "pr_size": {
      "type": "integer",
      "format": "int64",
      "description": "Total process size in bytes",
      "example": 10
    },
    "pr_rss": {
      "type": "integer",
      "format": "int64",
      "description": "Total resident set size in bytes",
      "example": 10
    }
  }
}