List Nodes
POST/node-svc/nodes
Retrieve a list of nodes.
Request
- application/json
Body
List Nodes Request
object
Responses
- 200
- 400
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
Array [
]
]
]
nodes
object[]
gpus
object[]
busId string
computeMode string
gpuUtilization number
id string
Id Node.Hostname + IntraNodeId
intraNodeId integer
memoryTotal integer
memoryUsage integer
name string
performanceState string
powerCap number
powerUsage number
processDetails
object[]
memoryUsage integer
pid integer
processName string
temperature number
hostname string
{
"nodes": [
{
"gpus": [
{
"busId": "string",
"computeMode": "string",
"gpuUtilization": 0,
"id": "string",
"intraNodeId": 0,
"memoryTotal": 0,
"memoryUsage": 0,
"name": "string",
"performanceState": "string",
"powerCap": 0,
"powerUsage": 0,
"processDetails": [
{
"memoryUsage": 0,
"pid": 0,
"processName": "string"
}
],
"temperature": 0
}
],
"hostname": "string"
}
]
}
Invalid JSON
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Loading...