get_remote_server_status
Monitor CPU, memory, and uptime of remote servers via SSH. Retrieve real-time server status data using host information for efficient system health tracking.
Instructions
获取远程服务器的CPU、内存和运行状态
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | 远程服务器地址或SSH配置中的主机名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"host": {
"description": "远程服务器地址或SSH配置中的主机名",
"type": "string"
}
},
"required": [
"host"
],
"type": "object"
}