Solaris Zones · Schema

StatisticValue

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
ssid string Statistics identifier
value string Current value (type depends on the statistic)
timestamp string When the value was recorded
unit string Unit of measurement
View JSON Schema on GitHub

JSON Schema

solaris-statsstore-statistic-value-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StatisticValue",
  "type": "object",
  "properties": {
    "ssid": {
      "type": "string",
      "description": "Statistics identifier"
    },
    "value": {
      "type": "string",
      "description": "Current value (type depends on the statistic)"
    },
    "timestamp": {
      "type": "string",
      "description": "When the value was recorded"
    },
    "unit": {
      "type": "string",
      "description": "Unit of measurement"
    }
  }
}