get_dashboard
Retrieve real-time system data dashboard for Java processes to monitor performance and analyze metrics using process ID.
Instructions
获取系统实时数据面板
Args:
pid (str): 进程ID,使用字符串形式(如:"12345")
Returns:
Dict: 包含系统实时数据的字典(暂未实现)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pid | No |
Implementation Reference
- src/jvm_mcp_server/server.py:581-591 (handler)The get_dashboard tool handler function, registered via @self.mcp.tool() decorator. It is a stub implementation that returns a message indicating it is not yet supported.@self.mcp.tool() def get_dashboard(pid: str = "") -> Dict: """获取系统实时数据面板 Args: pid (str): 进程ID,使用字符串形式(如:"12345") Returns: Dict: 包含系统实时数据的字典(暂未实现) """ return {"success": False, "error": "未实现/不支持"}