百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 文章教程 > 正文

arthas诊断工具入门

xsobi 2024-11-24 00:28 1 浏览

安装arthas。

curl -O https://arthas.aliyun.com/arthas-boot.jar
java -jar arthas-boot.jar

输入需要监控的java进程的序号,然后enter,如:

[INFO] arthas-boot version: 3.5.3
[INFO] Found existing java process, please choose one and input the serial number of the process, eg : 1. Then hit ENTER.
* [1]: 150 sc-eureka/target/sc-eureka-1.0-SNAPSHOT.jar
1

attach到指定线程成功之后,可以通过127.0.0.1:3658在webconsole中进行操作,方便打开多个tab页面。

在命令提示符中输入help,可以查看所有支持的命令和每个命令功能的简单介绍,输入某个命令和参数-h,可查看某个具体命令的功能和参数列表,如:

[arthas@150]$ heapdump -h
 USAGE:
   heapdump [-h] [-l] [file]
 SUMMARY:
   Heap dump
 Examples:
   heapdump
   heapdump --live
   heapdump --live /tmp/dump.hprof
 WIKI:
   https://arthas.aliyun.com/doc/heapdump
 OPTIONS:
 -h, --help                              this help
 -l, --live                              Dump only live objects; if not specified, all objects in the heap are dumped.
 <file>                                  Output file

下面结合问题介绍些常用命令,具体命令的文档可参考文末的参考资料。

sc,模糊查询当前jvm中是否加载了包含关键字的类,并获取其全面,-d参数获取详细信息,如classloader的hashcode,方便后面其他命令使用。如:

[arthas@150]$ sc -d *com.ld.App
 class-info        com.ld.App
 code-source       file:/mnt/e/code/sc/sc-eureka/target/sc-eureka-1.0-SNAPSHOT.jar!/BOOT-INF/classes!/
 name              com.ld.App
 isInterface       false
 isAnnotation      false
 isEnum            false
 isAnonymousClass  false
 isArray           false
 isLocalClass      false
 isMemberClass     false
 isPrimitive       false
 isSynthetic       false
 simple-name       App
 modifier          public
 annotation        org.springframework.boot.autoconfigure.SpringBootApplication,org.springframework.cloud.netflix.eurek
                   a.server.EnableEurekaServer
 interfaces
 super-class       +-java.lang.Object
 class-loader      +-org.springframework.boot.loader.LaunchedURLClassLoader@4909b8da
                     +-sun.misc.Launcher$AppClassLoader@18b4aac2
                       +-sun.misc.Launcher$ExtClassLoader@29e52392
 classLoaderHash   4909b8da

classloader可查看某个class是来自哪个jar包。-c指定classloader,如上面展示的hash。-r指定具体的class,其中的'.'需要用'/'替换,并且必须以'.class'结尾。如:

[arthas@150]$ classloader -c 4909b8da -r com/ld/App.class
 jar:file:/mnt/e/code/sc/sc-eureka/target/sc-eureka-1.0-SNAPSHOT.jar!/BOOT-INF/classes!/com/ld/App.class
Affect(row-cnt:1) cost in 8 ms.

可用watch来观察某个方法的调用,watch后面跟上完全类名和方法名,及一个ognl表达式,-f表示无论是否正常返回都进行观察,-x n表示输出结果属性遍历深度,如:watch com.ld.controller.UserController findById '{params, target, returnObj}' -x 2

[arthas@231]$ watch com.ld.controller.UserController findById '{params, target, returnObj}' -x 2
Press Q or Ctrl+C to abort.
Affect(class count: 1 , method count: 1) cost in 169 ms, listenerId: 1
method=com.ld.controller.UserController.findById location=AtExit
ts=2021-08-12 18:21:48; [cost=259.0532ms] result=@ArrayList[
    @Object[][
        @Long[1],
    ],
    @UserController[
        userRepository=@$Proxy160[org.springframework.data.jpa.repository.support.SimpleJpaRepository@1aa6f99a],
    ],
    @User[
        id=@Long[1],
        username=@String[acc1],
        name=@String[zhangsan],
        age=@Integer[10],
        balance=@BigDecimal[100.01],
    ],
]

tt可查看多次调用并选择一个观察,但如果返回结果为多层次嵌套就无法查看了,-t记录每次调用得环境,如:

tt -t com.ld.controller.UserController findById

记录完成之后,可以通过tt -i index来查看某次调用得详细信息。如

[arthas@231]$ tt -t com.ld.controller.UserController findById
Press Q or Ctrl+C to abort.
Affect(class count: 1 , method count: 1) cost in 76 ms, listenerId: 2
 INDEX  TIMESTAMP          COST(ms  IS-RET  IS-EX  OBJECT        CLASS                       METHOD
                           )                P
------------------------------------------------------------------------------------------------------------------------
 1000   2021-08-12 18:35:  2.5972   true    false  0x54be6213    UserController              findById
        08
 1001   2021-08-12 18:35:  3.5047   true    false  0x54be6213    UserController              findById
        11
[arthas@231]$ tt -i 1000
 INDEX          1000
 GMT-CREATE     2021-08-12 18:35:08
 COST(ms)       2.5972
 OBJECT         0x54be6213
 CLASS          com.ld.controller.UserController
 METHOD         findById
 IS-RETURN      true
 IS-EXCEPTION   false
 PARAMETERS[0]  @Long[2]
 RETURN-OBJ     @User[
                    id=@Long[2],
                    username=@String[acc2],
                    name=@String[lisi],
                    age=@Integer[12],
                    balance=@BigDecimal[200.02],
                ]
Affect(row-cnt:1) cost in 3 ms.

通过jad --source-only可查看某个类的源码,如:

[arthas@231]$ jad --source-only com.ld.App
       /*
        * Decompiled with CFR.
        *
        * Could not load the following classes:
        *  org.springframework.boot.SpringApplication
        *  org.springframework.boot.autoconfigure.SpringBootApplication
        *  org.springframework.cloud.client.discovery.EnableDiscoveryClient
        */
       package com.ld;
       import org.springframework.boot.SpringApplication;
       import org.springframework.boot.autoconfigure.SpringBootApplication;
       import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
       @SpringBootApplication
       @EnableDiscoveryClient
       public class App {
           public static void main(String[] args) {
/*16*/         SpringApplication.run(App.class, (String[])args);
           }
       }

通过redefine可以替换线上代码,但重启之后会失效,如:redefine App.class

对于线下无法重现的bug,可tt -t记录环境并后续分析,也可使用monitor统计方法调用成功失败的情况。

tt -t com.ld.controller.UserController findById | tee /mnt/e/findById
monitor -c 10 com.ld.contorller.UserController findById | tee /mnt/e/findById

dashboard命令可查看当前系统实时数据面板。

jvm可查看jvm的实时运行状态。

profiler支持生成应用热点火焰图。

profiler start
profiler getSamples
profiler status
profiler stop
http://127.0.0.1:3658/arthas-output/

vmtool可查找某个类的实例,实行强制gc等。

vmtool --action getInstances --className com.ld.controller.UserController --limit 5
[arthas@231]$ vmtool --action getInstances --className com.ld.controller.UserController --limit 5
@UserController[][
    @UserController[com.ld.controller.UserController@54be6213],
]
vmtool --action forceGc

参考,

1,https://arthas.aliyun.com/doc/en/;

相关推荐

好用的云函数!后端低代码接口开发,零基础编写API接口

前言在开发项目过程中,经常需要用到API接口,实现对数据库的CURD等操作。不管你是专业的PHP开发工程师,还是客户端开发工程师,或者是不懂编程但懂得数据库SQL查询,又或者是完全不太懂技术的人,通过...

快速上手:Windows 平台上 cURL 命令的使用方法

在工作流程中,为了快速验证API接口有效性,团队成员经常转向直接执行cURL命令的方法。这种做法不仅节省时间,而且促进了团队效率的提升。对于使用Windows系统的用户来说,这里有一套详细...

使用 Golang net/http 包:基础入门与实战

简介Go的net/http包是构建HTTP服务的核心库,功能强大且易于使用。它提供了基本的HTTP客户端和服务端支持,可以快速构建RESTAPI、Web应用等服务。本文将介绍ne...

#小白接口# 使用云函数,人人都能编写和发布自己的API接口

你只需编写简单的云函数,就可以实现自己的业务逻辑,发布后就可以生成自己的接口给客户端调用。果创云支持对云函数进行在线接口编程,进入开放平台我的接口-在线接口编程,设计一个新接口,设计和配置好接口参...

极度精神分裂:我家没有墙面开关,但我虚拟出来了一系列开关

本内容来源于@什么值得买APP,观点仅代表作者本人|作者:iN在之前和大家说过,在iN的家里是没有墙面开关的。...

window使用curl命令的注意事项 curl命令用法

cmd-使用curl命令的注意点前言最近在cmd中使用curl命令来测试restapi,发现有不少问题,这里记录一下。在cmd中使用curl命令的注意事项json不能由单引号包括起来json...

Linux 系统curl命令使用详解 linuxctrl

curl是一个强大的命令行工具,用于在Linux系统中进行数据传输。它支持多种协议,包括HTTP、HTTPS、FTP等,用于下载或上传数据,执行Web请求等。curl命令的常见用法和解...

Tornado 入门:初学者指南 tornados

Tornado是一个功能强大的PythonWeb框架和异步网络库。它最初是为了处理实时Web服务中的数千个同时连接而开发的。它独特的Web服务器和框架功能组合使其成为开发高性能Web...

PHP Curl的简单使用 php curl formdata

本文写给刚入PHP坑不久的新手们,作为工具文档,方便用时查阅。CURL是一个非常强大的开源库,它支持很多种协议,例如,HTTP、HTTPS、FTP、TELENT等。日常开发中,我们经常会需要用到cur...

Rust 服务器、服务和应用程序:7 Rust 中的服务器端 Web 应用简介

本章涵盖使用Actix提供静态网页...

我给 Apache 顶级项目提了个 Bug apache顶级项目有哪些

这篇文章记录了给Apache顶级项目-分库分表中间件ShardingSphere提交Bug的历程。说实话,这是一次比较曲折的Bug跟踪之旅。10月28日,我们在GitHub上提...

linux文件下载、服务器交互(curl)

基础环境curl命令描述...

curl简单使用 curl sh

1.curl--help#查看关键字2.curl-A“(添加user-agent<name>SendUser-Agent<name>toserver)”...

常用linux命令:curl 常用linux命令大全

//获取网页内容//不加任何选项使用curl时,默认会发送GET请求来获取内容到标准输出$curlhttp://www.baidu.com//输出<!DOCTYPEh...

三十七,Web渗透提高班之hack the box在线靶场注册及入门知识

一.注册hacktheboxHackTheBox是一个在线平台,允许测试您的渗透技能和代码,并与其他类似兴趣的成员交流想法和方法。它包含一些不断更新的挑战,并且模拟真实场景,其风格更倾向于CT...