InstanceMetrics

Real-time performance metrics for a GPU instance.

AICloud ComputingGPUHPCMachine LearningSemiconductorFortune 500

Properties

Name Type Description
instanceId string
gpuUtilization number GPU utilization %.
memoryUsed number Memory used GB.
memoryTotal number Total memory GB.
temperature integer Temperature Celsius.
powerDraw number Power draw watts.
View JSON Schema on GitHub

JSON Schema

cloud-api-instance-metrics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InstanceMetrics",
  "description": "Real-time performance metrics for a GPU instance.",
  "type": "object",
  "properties": {
    "instanceId": {
      "type": "string"
    },
    "gpuUtilization": {
      "type": "number",
      "description": "GPU utilization %."
    },
    "memoryUsed": {
      "type": "number",
      "description": "Memory used GB."
    },
    "memoryTotal": {
      "type": "number",
      "description": "Total memory GB."
    },
    "temperature": {
      "type": "integer",
      "description": "Temperature Celsius."
    },
    "powerDraw": {
      "type": "number",
      "description": "Power draw watts."
    }
  }
}