check_service_status
Monitor and verify the operational status of specific services on remote servers using hostname, credentials, and service names provided. Supports custom timeout and port settings.
Instructions
检查指定服务的运行状态
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hostname | Yes | ||
| password | No | ||
| port | No | ||
| services | 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"
},
"services": {
"default": [],
"items": {
"type": "string"
},
"title": "Services",
"type": "array"
},
"timeout": {
"default": 30,
"title": "Timeout",
"type": "integer"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"hostname",
"username"
],
"title": "check_service_statusArguments",
"type": "object"
}