当前位置:   article > 正文

jvm调优实战-阿里Arthas使用详解_阿里jvm调优工具

阿里jvm调优工具

       相关系列

JVM调优工具详解-jps、jmap、jstat、jstack-CSDN博客

jvm调优案例分析-分析oom问题-CSDN博客

jvm调优案例分析-分析oom问题-CSDN博客

jvm运行情况预估-CSDN博客

Arthas是什么?

        Arthas是阿里在2018年9月开源的Java诊断工具。支持JDK6+,采用交互模式。可以很方便用于线上定位问题。官方文档地址:https://alibaba.github.io/arthas

下载安装

下载

  1. #通过github下载arthas
  2. wget https://alibaba.github.io/arthas/arthas‐boot.jar
  3. #或者通过Gitee下载
  4. wget https://arthas.gitee.io/arthas‐boot.jar

使用arthas

执行指令java -jar ,arthas会自动识别出目前在机器运行的所有线程

测试案例代码

  1. import java.util.HashSet;
  2. public class ArthasDemo {
  3. private static HashSet hashSet = new HashSet();
  4. public static void main(String[] args) {
  5. //cpu使用过高
  6. cpuHigh();
  7. //线程死锁
  8. deadThread();
  9. //不断的向hashSet集合增加数据
  10. addHashSetThread();
  11. }
  12. /**
  13. * 持续往hashset集合中写入新数据
  14. */
  15. public static void addHashSetThread(){
  16. new Thread(()->{
  17. int count = 0;
  18. while(true){
  19. try{
  20. hashSet.add("count" + count);
  21. Thread.sleep(1000);
  22. }catch (InterruptedException e){
  23. e.printStackTrace();
  24. }
  25. }
  26. }).start();
  27. }
  28. /**
  29. * cpu使用过高
  30. */
  31. public static void cpuHigh(){
  32. new Thread(()->{
  33. int count =0;
  34. while(true){
  35. try{
  36. hashSet.add("count" + count);
  37. Thread.sleep(1000);
  38. count ++;
  39. }catch (InterruptedException e){
  40. e.printStackTrace();
  41. }
  42. }
  43. }).start();
  44. }
  45. /**
  46. * 死锁
  47. */
  48. public static void deadThread(){
  49. Object objA = new Object();
  50. Object objB = new Object();
  51. Thread threadA = new Thread(()->{
  52. synchronized (objA){
  53. System.out.println(Thread.currentThread() + " get ResurceA");
  54. try{
  55. Thread.sleep(1000);
  56. }catch (InterruptedException e){
  57. e.printStackTrace();
  58. }
  59. System.out.println(Thread.currentThread() +"waiting get resourceB");
  60. synchronized (objB){
  61. System.out.println(Thread.currentThread() + " get resourceB");
  62. }
  63. }
  64. });
  65. Thread threadB = new Thread(()->{
  66. synchronized (objB){
  67. System.out.println(Thread.currentThread() + " get ResurceB");
  68. try{
  69. Thread.sleep(1000);
  70. }catch (InterruptedException e){
  71. e.printStackTrace();
  72. }
  73. System.out.println(Thread.currentThread() +"waiting get resourceA");
  74. synchronized (objA){
  75. System.out.println(Thread.currentThread() + " get resourceA");
  76. }
  77. }
  78. });
  79. threadA.start();
  80. threadB.start();
  81. }
  82. }

如何使用arthas指令?

重新运行java -jar arthas-boot.jar

输入1,按回车

 输入dashboard可以查看整个线程的运行的情况,线程、内存、GC运行环境信息

 输入thread

输入thead 加上线程ID 可以查看线程死锁 

输入thread -b可以查看线程死锁

输入jad加类的全名可以反编绎,这样可以方便我们查看线上代码是否是正确的版本

使用ognl命令可以查看线上变量的值

 使用ognl命令修改变量的值

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/825981
推荐阅读
相关标签
  

闽ICP备14008679号