FunTester arthas 快速入门视频演示

FunTester · 2020年04月20日 · 最后由 FunTester 回复于 2020年04月21日 · 2856 次阅读

之前介绍过了arthas这个阿里的开源 Java 诊断工具,实在是非常好用。这里赶紧补上了快速入门的视频。

基本内容就是,介绍、安装、启动和几个基础命令。

官方文档地址如下:https://alibaba.github.io/arthas/

本期视频演示的具体内容如下:

快速入门

  1. 启动 Demo
  2. 启动 arthas
  3. 查看 dashboard
  4. 通过 thread 命令来获取到进程
  5. watch
  6. 退出 arthas

arthas 快速入门

由于我并没有使用官方的演示Demo,自己随手写了一个,下面是代码:

package com.fun


import com.fun.frame.httpclient.FanLibrary
import com.fun.utils.RString

class sd extends FanLibrary {

    public static void main(String[] args) {

        while (true) {
            sleep(1000)
            RString.getStringWithoutNum(10)
            sleep(1000)
            String url = "https://api.apiopen.top/getAllUrl"
            def get = getHttpGet(url)
            def response = getHttpResponse(get)
        }
        testOver()
    }


}


  • 郑重声明:“FunTester” 首发,欢迎关注交流,禁止第三方转载。

技术类文章精选

无代码文章精选

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!
共收到 2 条回复 时间 点赞

arthas 用来排查问题非常好用!

Ouroboros 回复

神器,我看我们开发一直在用,我就偷师了

需要 登录 后方可回复, 如果你还没有账号请点击这里 注册