如何从命令行检查正在运行的 JVM 的堆使用情况?

我能否从命令行检查正在运行的 JVM 的堆使用情况,我指的是实际使用情况,而不是 Xmx 分配的最大数量.

Can I check heap usage of a running JVM from the commandline, I mean the actual usage rather than the max amount allocated with Xmx.

我需要它是命令行,因为我无法访问窗口环境,并且我想要基于值的脚本,应用程序在 Jetty 应用程序服务器中运行

I need it to be commandline because I don't have access to a windowing environment, and I want script based on the value , the application is running in Jetty Application server

推荐答案

可以使用jstat,比如:

You can use jstat, like :

 jstat -gc pid

这里有完整的文档:http://docs.oracle.com/javase/7/docs/technotes/tools/share/jstat.html

相关文章