内容简介:Arthas是Alibaba开源的Java诊断工具,深受开发者喜爱。 Gitee: https://gitee.com/arthas/arthas Github: https://github.com/alibaba/arthas 文档:https://alibaba.github.io/arthas Arthas 3.1.5版本带来下面...
Arthas是Alibaba开源的 Java 诊断工具,深受开发者喜爱。
- Gitee: https://gitee.com/arthas/arthas
- Github: https://github.com/alibaba/arthas
- 文档:https://alibaba.github.io/arthas
Arthas 3.1.5版本带来下面全新的特性:
- 开箱即用的Profiler/火焰图功能
- grep命令支持更丰富的选项
- monitor/tt/trace等命令提供更精确的时间统计
- telnet/http协议共用3658端口
Profiler/Frame Graph/火焰图
火焰图的威名相信大家都有所耳闻,但可能因为使用比较复杂,所以望而止步。
在新版本的Arthas里集成了 async-profiler ,使用 profiler命令就可以很方便地生成火焰图,并且可以在浏览器里直接查看。
profiler命令wiki: https://alibaba.github.io/arthas/profiler.html
profiler 命令基本运行结构是 profiler action [actionArg] 。下面介绍如何使用。
启动profiler
$ profiler start
Started [cpu] profiling
默认情况下,生成的是cpu的火焰图,即event为`cpu`。可以用`--event`参数来指定。
获取已采集的sample的数量
$ profiler getSamples
23
查看profiler状态
$ profiler status
[cpu] profiling is running for 4 seconds
可以查看当前profiler在采样哪种`event`和采样时间。
生成svg格式结果
$ profiler stop
profiler output file: /tmp/demo/arthas-output/20191125-135546.svg
OK
默认情况下,生成的结果保存到应用的`工作目录`下的`arthas-output`目录里。
通过浏览器查看arthas-output下面的profiler结果
默认情况下,arthas使用3658端口,则可以打开: http://localhost:3658/arthas-output/ 查看到`arthas-output`目录下面的profiler结果:
点击可以查看具体的结果:
如果是chrome浏览器,可能需要多次刷新。
grep命令支持更丰富的选项
标准的linux grep命令支持丰富的选项,可以很方便地定位结果的上下文等。
新版本的`grep`命令支持更多标准的选项,下面是一些例子:
sysprop | grep java
sysprop | grep java -n
sysenv | grep -v JAVA
sysenv | grep -e "(?i)(JAVA|sun)" -m 3 -C 2
sysenv | grep JAVA -A2 -B3
thread | grep -m 10 -e "TIMED_WAITING|WAITING"
感谢社区里 @qxo 的贡献。
telnet/http协议共用3658端口
默认情况下,Arthas的Telnet端口是3658,HTTP端口是8563,这个常常让用户迷惑。在新版本里,在3658端口同时支持Telnet/HTTP协议。
在浏览器里访问 http://localhost:3658/ 也可以访问到Web Console了。
在后续的版本里,考虑默认只侦听 3658端口,减少用户的配置项。
monitor/tt/trace等命令提供更精确的时间统计
以前Arthas被诟病比较多的一个问题是,monitor/tt/trace等命令时间统计误差大。因为以前只使用了一个int来保存时间,所以不精确。
在新版本里,改用一个高效的stack来保存数据,时间的准确度大大提升,欢迎大家反馈效果。
感谢社区里 @huangjIT 的贡献。
总结
总之,3.1.5版本的Arthas引入了开箱即用的Profiler/火焰图功能,欢迎大家使用反馈。
- Release Note: https://github.com/alibaba/arthas/releases/tag/arthas-all-3.1.5
- 火焰图的一个参考文章:https://openresty.org/posts/dynamic-tracing/
最后,Arthas 正在参加2019年度最受欢迎开源中国软件评选,急需大家宝贵的一票支持!!查看
投票后可以到issue里参与图书抽奖:https://github.com/alibaba/arthas/issues/951
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 使用火焰图定位 OLAP 引擎瓶颈
- 快速定位NodeJs线上问题 - 之火焰图篇
- 容器化 RDS:借助火焰图定位Kubernetes性能问题
- 阿里巴巴 Arthas 3.1.5 版本支持火焰图,快速定位应用热点
- 内存泄漏(增长)火焰图
- 如何读懂火焰图?
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Uberland
Alex Rosenblat / University of California Press / 2018-11-19 / GBP 21.00
Silicon Valley technology is transforming the way we work, and Uber is leading the charge. An American startup that promised to deliver entrepreneurship for the masses through its technology, Uber ins......一起来看看 《Uberland》 这本书的介绍吧!