get_node
Retrieve detailed metrics and system information for a specific infrastructure node, including resource usage, running containers, and health status, to monitor and manage node performance effectively.
Instructions
Get detailed information about a specific infrastructure node.
Retrieves comprehensive metrics and information about a node including:
Resource usage (CPU, memory, disk, network)
Running containers
System information
Health status
Args: project_id: Project ID node_id: Node ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
node_id | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"node_id": {
"title": "Node Id",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"node_id"
],
"type": "object"
}