get_jvm_status
Retrieve detailed JVM status reports for specified Java processes. Use this tool to monitor and analyze JVM performance, thread activity, and memory usage, aiding in effective diagnostics and process optimization.
Instructions
获取JVM整体状态报告
Args:
pid: 可选的进程ID,如果不指定则自动选择第一个非arthas的Java进程
Returns:
包含JVM状态信息的字典
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pid": {
"title": "Pid",
"type": "integer"
}
},
"required": [
"pid"
],
"title": "get_jvm_statusArguments",
"type": "object"
}