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