• jcmd的简单实用


    命令jcmd

    显示所有java进程id及相关信息

    命令 jcmd java_pid help

    显示某个java进程的所有可用命令

    ➜  jobs jcmd 61185 help
    61185:
    The following commands are available:
    JFR.stop
    JFR.start
    JFR.dump
    JFR.check
    VM.native_memory
    VM.check_commercial_features
    VM.unlock_commercial_features
    ManagementAgent.stop
    ManagementAgent.start_local
    ManagementAgent.start
    VM.classloader_stats
    GC.rotate_log
    Thread.print 		打印线程栈信息Thread.print
    GC.class_stats
    GC.class_histogram  查看系统中类统计信息
    GC.heap_dump        导出堆信息GC.heap_dump
    GC.finalizer_info
    GC.heap_info
    GC.run_finalization
    GC.run           执行GC操作
    VM.uptime        查看虚拟机启动时间VM.uptime
    VM.dynlibs
    VM.flags		获取启动参数VM.flags	
    VM.system_properties
    VM.command_line
    VM.version
    help
    
    For more information about a specific command use 'help <command>'.
    

    特别注意,上面并没有PerfCounter.print这条命了,但是也可以使用。作用是:可详细打印对应java进程的有效性能计数器(performance counters)

    jobs jcmd 61185 VM.check_commercial_features查看进程的jfr功能是否加锁

    最早jfr功能是商用的,现在已经开源,可以直接使用

    ➜  jobs jcmd 61185 VM.check_commercial_features
    61185:
    Commercial Features are unlocked.
    Status of individual features:
      Java Flight Recorder has been used.
      Resource Management is disabled.
      Current Memory Restriction: None (0)
    

    解锁jfr-Java Flight Recorder功能,默认是加锁的

    ➜  jobs jcmd 61185 VM.unlock_commercial_features
    61185:
    Commercial Features already unlocked.	  
    

    jcmd 61185 JFR.start 开启jfr录制

    ➜  jobs jcmd 61185 JFR.start
    61185:
    Started recording 3. No limit (duration/maxsize/maxage) in use.
    
    Use JFR.dump recording=3 filename=FILEPATH to copy recording data to file.	
    

    输出录制文件,文件后缀命建议.jfr,这样直接双击*.jfr,就可以使用jmc工具打开进行分析

    必须指定上面的参数recording和参数filename

    ➜  jobs jcmd 61185 JFR.dump filename=./test.jfr recording=3
    61185:
    Dumped recording 3, 809.8 kB written to:
    
    /Users/xxxx/github/jenkins/test.jfr
    

    jobs jcmd 61185 JFR.stop recording=3 停止录制

    ➜  jobs jcmd 61185 JFR.stop recording=3
    61185:
    Stopped recording 3.
    

    某个具体命令的帮助

    D:>jcmd 9816 help GC.run
    9816:
    GC.run
    Call java.lang.System.gc().
     
    Impact: Medium: Depends on Java heap size and content.
     
    Syntax: GC.run
    

    关于jfr的性能消耗

    Java Flight Recorder (JFR) is a tool for collecting diagnostic and profiling data about a running Java application. It is integrated into the Java Virtual Machine (JVM) and causes almost no performance overhead, so it can be used even in heavily loaded production environments. When default settings are used, both internal testing and customer feedback indicate that performance impact is less than one percent. For some applications, it can be significantly lower. However, for short-running applications (which are not the kind of applications running in production environments), relative startup and warmup times can be larger, which might impact the performance by more than one percent. JFR collects data about the JVM as well as the Java application running on it.	
    

    命令的更多参数

    https://www.jianshu.com/p/a6fa4cc2860c

    如何利用JMC分析性能

    https://blog.csdn.net/h254532699/article/details/54342511/

  • 相关阅读:
    网络协议
    面向对象三大特性之多态
    面向对象三大特性之封装
    面向对象三大特性之继承
    python面向对象编程
    常用模块之configpaser与shutil
    XML模块
    Python模块之OS,subprocess
    Python日志(logging)模块,shelve,sys模块
    Linux 配置 Nginx
  • 原文地址:https://www.cnblogs.com/shengulong/p/11553641.html
Copyright © 2020-2023  润新知