Solaris Zones · Schema

KstatData

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
module string
name string
statistic string
instance integer
snaptime integer Snapshot time in nanoseconds
data object Key-value pairs of statistic data
View JSON Schema on GitHub

JSON Schema

solaris-zone-monitoring-kstat-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "KstatData",
  "type": "object",
  "properties": {
    "module": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "statistic": {
      "type": "string"
    },
    "instance": {
      "type": "integer"
    },
    "snaptime": {
      "type": "integer",
      "description": "Snapshot time in nanoseconds"
    },
    "data": {
      "type": "object",
      "description": "Key-value pairs of statistic data"
    }
  }
}