check_docker_health
Monitor and verify the health status and essential details of Docker services on remote servers. Specify hostname, username, and optional parameters for accurate diagnostics.
Instructions
检查Docker服务的健康状态和基本信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostname | Yes | ||
password | No | ||
port | No | ||
timeout | No | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hostname": {
"title": "Hostname",
"type": "string"
},
"password": {
"default": "",
"title": "Password",
"type": "string"
},
"port": {
"default": 22,
"title": "Port",
"type": "integer"
},
"timeout": {
"default": 30,
"title": "Timeout",
"type": "integer"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"hostname",
"username"
],
"title": "check_docker_healthArguments",
"type": "object"
}