jhatjava
JVM Heap Analysis Tool命令是與jmap搭配使用,用來分析jmap生成的dump,jhat內置了一個微型的HTTP/HTML服務器,生成dump的分析結果後,能夠在瀏覽器中查看。在此要注意,通常不會直接在服務器上進行分析,由於jhat是一個耗時而且耗費硬件資源的過程,通常把服務器生成的dump文件複製到本地或其餘機器上進行分析。【內存分析】web
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
[root@localhost bin]
# jhat -help
Usage: jhat [-stack <bool>] [-refs <bool>] [-port <port>] [-baseline <
file
>] [-debug <int>] [-version] [-h|-help] <
file
>
-J<flag> Pass <flag> directly to the runtime system. For
example, -J-mx512m to use a maximum heap size of 512MB
-stack
false
: Turn off tracking object allocation call stack.
-refs
false
: Turn off tracking of references to objects
-port <port>: Set the port
for
the HTTP server. Defaults to 7000
-exclude <
file
>: Specify a
file
that lists data members that should
be excluded from the reachableFrom query.
-baseline <
file
>: Specify a baseline object dump. Objects
in
both heap dumps with the same ID and same class will
be marked as not being
"new"
.
-debug <int>: Set debug level.
0: No debug output
1: Debug hprof
file
parsing
2: Debug hprof
file
parsing, no server
-version Report version number
-h|-help Print this help and
exit
<
file
> The
file
to
read
For a dump
file
that contains multiple heap dumps,
you may specify
which
dump
in
the
file
by appending
"#<number>"
to the
file
name, i.e.
"foo.hprof#3"
.
All boolean options default to
"true"
|
參數瀏覽器
1
|
jhat -J-Xmx512m dump.hprof
|
1
|
jhat -port 7000 mem.dat
|
jmap -dump:format=b,file=mem.dat pid #將內存使用的詳細狀況輸出到mem.dat 文件
經過jhat -port 7000 mem.dat能夠將mem.dat的內容以web的方式暴露到網絡,訪問http://ip-server:7000查看。bash