Azure Functions · Schema

ContainerNetworkInterfaceStatistics

ContainerNetworkInterfaceStatistics schema from Azure Functions API

CloudComputeEvent-DrivenFunctionsServerless

Properties

Name Type Description
rxBytes integer
rxDropped integer
rxErrors integer
rxPackets integer
txBytes integer
txDropped integer
txErrors integer
txPackets integer
View JSON Schema on GitHub

JSON Schema

azure-functions-container-network-interface-statistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-functions/refs/heads/main/json-schema/azure-functions-container-network-interface-statistics-schema.json",
  "title": "ContainerNetworkInterfaceStatistics",
  "description": "ContainerNetworkInterfaceStatistics schema from Azure Functions API",
  "type": "object",
  "properties": {
    "rxBytes": {
      "format": "int64",
      "type": "integer"
    },
    "rxDropped": {
      "format": "int64",
      "type": "integer"
    },
    "rxErrors": {
      "format": "int64",
      "type": "integer"
    },
    "rxPackets": {
      "format": "int64",
      "type": "integer"
    },
    "txBytes": {
      "format": "int64",
      "type": "integer"
    },
    "txDropped": {
      "format": "int64",
      "type": "integer"
    },
    "txErrors": {
      "format": "int64",
      "type": "integer"
    },
    "txPackets": {
      "format": "int64",
      "type": "integer"
    }
  }
}