arthas
介绍用于监控运行时的java进程,且无需对java进程进行配置
官网快速入门 | arthas (aliyun.com)
使用运行arthas时,会输出jps信息,输入序号选择对应的java进程进行跟踪
命令命令列表 | arthas (aliyun.com)
dashboard 查看数据面板
jad 反编译类
monitor 监控方法的调用
watch 监控方法的返回值与入参等
启动官网下载jar包后,在待监控服务机器上使用java -jar命令执行该jar包
启动后会输出一个当前机器上的java进程列表,选择对应的(要监控的java进程)进行监控
Watch监控某方法的入参与出参使用watch命令,比如要查看如下方法
1234567891011121314package com.boranget.controller;@RestControllerpublic class HelloController { @Autowired private HelloService helloService; @RequestMapping("/ ...