EdgeClusterTransportNodeStatus

EdgeClusterTransportNodeStatus
EdgeClusterTransportNodeStatus

An object representing the status of a member Transport Node of an Edge Cluster.

JSON Example
{
    "nodeName": "string",
    "totalCpuCoreCount": 0,
    "datapathCpuCoreCount": 0,
    "serviceCpuCoreCount": 0,
    "avgDatapathCpuUsagePercentage": "number",
    "avgServiceCpuUsagePercentage": "number",
    "systemMemoryUsagePercentage": "number",
    "datapathMemoryUsagePercentage": "number",
    "healthStatus": "string"
}
string
nodeName
Optional

The display name of this Transport Node.

integer
totalCpuCoreCount
Optional

Number of CPU cores in the system.

integer
datapathCpuCoreCount
Optional

Number of datapath CPU cores in the system. These cores handle fast path packet processing using DPDK.

integer
serviceCpuCoreCount
Optional

Number of Service CPU cores in the system. These cores handle system and layer-7 related processing.

number As float As float
avgDatapathCpuUsagePercentage
Optional

Average utilization of all the DPDK CPU cores in the system.

number As float As float
avgServiceCpuUsagePercentage
Optional

Average utilization of all the Service CPU cores in the system.

number As float As float
systemMemoryUsagePercentage
Optional

Percentage of RAM in use on the edge node.

number As float As float
datapathMemoryUsagePercentage
Optional

Percentage of memory in use by datapath processes. It is inclusive of heap memory, memory pool and resident memory.

string
healthStatus
Optional

The current health status of the Edge Node. Possible values are:

  • UP - The Edge Node is healthy.
  • DOWN - The Edge Node is down.
  • DEGRADED - The Edge Node is not operating at capacity.
  • UNKNOWN - The Edge Node state is unknown.