Azure Function Apps · JSON Structure

Azure Function Apps Container Cpu Usage Structure

ContainerCpuUsage schema from Azure Function Apps API

Type: object Properties: 4
AzureComputeFaaSFunctionsServerless

ContainerCpuUsage is a JSON Structure definition published by Azure Function Apps, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

kernelModeUsage perCpuUsage totalUsage userModeUsage

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-function-apps/refs/heads/main/json-structure/azure-function-apps-container-cpu-usage-structure.json",
  "description": "ContainerCpuUsage schema from Azure Function Apps API",
  "type": "object",
  "properties": {
    "kernelModeUsage": {
      "format": "int64",
      "type": "integer"
    },
    "perCpuUsage": {
      "items": {
        "format": "int64",
        "type": "integer"
      },
      "type": "array"
    },
    "totalUsage": {
      "format": "int64",
      "type": "integer"
    },
    "userModeUsage": {
      "format": "int64",
      "type": "integer"
    }
  },
  "name": "ContainerCpuUsage"
}