Jps、Jstack、Jstat、Jmap详解以及内存溢出排查

1.Jps

jps 命令参数解析
The jps command supports a number of options that modify the output of the command. These options are
subject to change or removal in the future.

-q    # 仅输出java进程的pid
       Suppresses the output of the class name, JAR file name, and arguments passed to the main method,
       producing only a list of local JVM identifiers.

-m    # 可以输出传递给 Java 进程(main 方法)的参数
       Displays the arguments passed to the main method. The output may be null for embedded JVMs.

-l    # 输出主函数的完整路径
       Displays the full package name for the application's main class or the full path name to the
       application's JAR file.

-v    # 显示传递给 Java 虚拟机的参数。
       Displays the arguments passed to the JVM.

-V
       Suppresses the output of the class name, JAR file name, and arguments passed to the main method,
       producing only a list of local JVM identifiers.

2.Jstack

jstack命令参数解析
-F
       Force a stack dump when jstack [-l] pid does not respond.

-l     # 打印关于锁的附加信息,例如属于java.util.concurrent的ownable synchronizers列表
       Long listing. Prints additional information about locks such as a list of owned
       java.util.concurrent ownable synchronizers. See the AbstractOwnableSynchronizer class description
       at
       http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/locks/AbstractOwnableSynchronizer.html

-m     # 打印java和native c/c++框架的所有栈信息
       Prints a mixed mode stack trace that has both Java and native C/C++ frames.

-h
       Prints a help message.

-help
       Prints a help message.
jstack 常用命令集合
# 统计线程数
jstack -l 15401 |grep 'java.lang.Thread.State' |wc -l
# 查看进程
top
# 查看进程中消耗cpu较高的线程
top -H -p  [pid]
# 将要查询的线程id转换成十六进制  45d8
printf "%x\n" [线程id] 
# 使用jstack搜索对应线程的日志进行分析
jstack 15401|grep 45d8 -A 30

5.Jstat

# jstat -class pid
class: Displays statistics about the behavior of the class loader.
# Loaded:加载class的数量
# Bytes:所占用空间大小
# Unloaded:未加载数量
# Bytes:未加载占用空间
# Time:时间

# jstat -compiler pid
compiler: Displays statistics about the behavior of the Java HotSpot VM Just-in-Time compiler.
# Compiled:编译数量。
# Failed:失败数量
# Invalid:不可用数量
# Time:时间
# FailedType:失败类型
# FailedMethod:失败的方法

# jstat -gc pid
gc: Displays statistics about the behavior of the garbage collected heap.
# S0C:第一个幸存区的大小
# S1C:第二个幸存区的大小
# S0U:第一个幸存区的使用大小
# S1U:第二个幸存区的使用大小
# EC:伊甸园区的大小
# EU:伊甸园区的使用大小
# OC:老年代大小
# OU:老年代使用大小
# MC:方法区大小
# MU:方法区使用大小
# CCSC:压缩类空间大小
# CCSU:压缩类空间使用大小
# YGC:年轻代垃圾回收次数
# YGCT:年轻代垃圾回收消耗时间
# FGC:老年代垃圾回收次数
# FGCT:老年代垃圾回收消耗时间
# GCT:垃圾回收消耗总时间

#  jstat -gccapacity pid
gccapacity: Displays statistics about the capacities of the generations and their corresponding
spaces.
# NGCMN:新生代最小容量
# NGCMX:新生代最大容量
# NGC:当前新生代容量
# S0C:第一个幸存区大小
# S1C:第二个幸存区的大小
# EC:伊甸园区的大小
# OGCMN:老年代最小容量
# OGCMX:老年代最大容量
# OGC:当前老年代大小
# OC:当前老年代大小
# MCMN:最小元数据容量
# MCMX:最大元数据容量
# MC:当前元数据空间大小
# CCSMN:最小压缩类空间大小
# CCSMX:最大压缩类空间大小
# CCSC:当前压缩类空间大小
# YGC:年轻代gc次数
# FGC:老年代GC次数

gccause: Displays a summary about garbage collection statistics (same as -gcutil), with the cause of
the last and current (when applicable) garbage collection events.

# jstat -gcnew pid
gcnew: Displays statistics of the behavior of the new generation.
# S0C:第一个幸存区大小
# S1C:第二个幸存区的大小
# S0U:第一个幸存区的使用大小
# S1U:第二个幸存区的使用大小
# TT:对象在新生代存活的次数
# MTT:对象在新生代存活的最大次数
# DSS:期望的幸存区大小
# EC:伊甸园区的大小
# EU:伊甸园区的使用大小
# YGC:年轻代垃圾回收次数
# YGCT:年轻代垃圾回收消耗时间

# jstat -gcnewcapacity pid
gcnewcapacity: Displays statistics about the sizes of the new generations and its corresponding spaces.
# NGCMN:新生代最小容量
# NGCMX:新生代最大容量
# NGC:当前新生代容量
# S0CMX:最大幸存1区大小
# S0C:当前幸存1区大小
# S1CMX:最大幸存2区大小
# S1C:当前幸存2区大小
# ECMX:最大伊甸园区大小
# EC:当前伊甸园区大小
# YGC:年轻代垃圾回收次数
# FGC:老年代回收次数

# jstat -gcold pid
gcold: Displays statistics about the behavior of the old generation and metaspace statistics.
# MC:方法区大小
# MU:方法区使用大小
# CCSC:压缩类空间大小
# CCSU:压缩类空间使用大小
# OC:老年代大小
# OU:老年代使用大小
# YGC:年轻代垃圾回收次数
# FGC:老年代垃圾回收次数
# FGCT:老年代垃圾回收消耗时间
# GCT:垃圾回收消耗总时间

# jstat -gcoldcapacity pid
gcoldcapacity: Displays statistics about the sizes of the old generation.
# OGCMN:老年代最小容量
# OGCMX:老年代最大容量
# OGC:当前老年代大小
# OC:老年代大小
# YGC:年轻代垃圾回收次数
# FGC:老年代垃圾回收次数
# FGCT:老年代垃圾回收消耗时间
# GCT:垃圾回收消耗总时间

# jstat -gcpermcapacity pid 永久代空间统计
gcmetacapacity: Displays statistics about the sizes of the metaspace.
# PGCMN:最小永久代容量
# PGCMX:最大永久代容量
# PGC:当前新生成的永久代空间大小
# PC :永久代空间大小
# YGC:年轻代垃圾回收次数
# FGC:老年代垃圾回收次数
# FGCT:老年代垃圾回收消耗时间
# GCT:垃圾回收消耗总时间

# jstat -gcutil
gcutil: Displays a summary about garbage collection statistics.
 printcompilation: Displays Java HotSpot VM compilation method statistics.
# S0:幸存1区当前使用比例
# S1:幸存2区当前使用比例
# E:伊甸园区使用比例
# O:老年代使用比例
# M:元数据区使用比例
# CCS:压缩使用比例
# YGC:年轻代垃圾回收次数
# FGC:老年代垃圾回收次数
# FGCT:老年代垃圾回收消耗时间
# GCT:垃圾回收消耗总时间
jstat 常用命令集合
# 查看java进程gc状态
jstat -gc pid [interval] 
# 保存栈快照内容
jstack pid > jstack.log 

4.Jmap

<no option> # 使用不带选项参数的jmap打印共享对象映射,将会打印目标虚拟机中加载的每个共享对象的起始地址、映射大小以及共享对象文件的路径全称。
       When no option is used, the jmap command prints shared object mappings. For each shared object
       loaded in the target JVM, the start address, size of the mapping, and the full path of the shared
       object file are printed. This behavior is similar to the Oracle Solaris pmap utility.
-dump:[live,] format=b, file=filename  # 生成堆转储快照
       Dumps the Java heap in hprof binary format to filename. The live suboption is optional, but when
       specified, only the active objects in the heap are dumped. To browse the heap dump, you can use the
       jhat(1) command to read the generated file.

-finalizerinfo
       Prints information about objects that are awaiting finalization.

-heap  # 输出堆相关信息
       Prints a heap summary of the garbage collection used, the head configuration, and generation-wise
       heap usage. In addition, the number and size of interned Strings are printed.

-histo[:live] # 输出对象信息 [:live] 输出存活对象信息
       Prints a histogram of the heap. For each Java class, the number of objects, memory size in bytes,
       and the fully qualified class names are printed. The JVM internal class names are printed with an
       asterisk (*) prefix. If the live suboption is specified, then only active objects are counted.

-clstats # 打印类加载器信息
       Prints class loader wise statistics of Java heap. For each class loader, its name, how active it
       is, address, parent class loader, and the number and size of classes it has loaded are printed.

-F
       Force. Use this option with the jmap -dump or jmap -histo option when the pid does not respond. The
       live suboption is not supported in this mode.
jmap 常用命令集合
# 输出堆的快照到文件中
jmap -dump:format=b,file=/Users/scott/tmp/temp.dat [pid]
# Dumping heap to /Users/scott/tmp/temp.dat ...
# Heap dump file created

# 通过jhat读取快照文件并且启动web-server,访问对应ip:port查看堆分析
jhat -port 9998 /Users/scott/tmp/temp.dat

你可能感兴趣的:(java,jvm)