health_check
Monitor server health, performance, and operational metrics in real-time using a comprehensive dashboard. Perform checks on API limits, system health, dependencies, and configurations for actionable insights.
Instructions
🏥 System Health Check - Monitor server health, performance, and operational metrics. Provides comprehensive monitoring dashboard with real-time insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
checks | No | Types of health checks to perform | |
options | No |
Input Schema (JSON Schema)
{
"properties": {
"checks": {
"default": [
"api-limits",
"system-health",
"monitoring"
],
"description": "Types of health checks to perform",
"items": {
"enum": [
"api-limits",
"system-health",
"monitoring",
"dependencies",
"configuration"
],
"type": "string"
},
"type": "array"
},
"options": {
"properties": {
"include_diagnostics": {
"default": false,
"description": "Include diagnostic information",
"type": "boolean"
},
"include_insights": {
"default": false,
"description": "Include performance insights and recommendations",
"type": "boolean"
},
"include_logs": {
"default": false,
"description": "Include recent log entries",
"type": "boolean"
},
"include_metrics": {
"default": false,
"description": "Include comprehensive system metrics in response",
"type": "boolean"
}
},
"type": "object"
}
},
"required": [],
"type": "object"
}