jlfwong/speedscope

Format Support: concatenated output from many calls to jstack

Open

#173 创建于 2018年10月7日

在 GitHub 查看
 (3 评论) (0 反应) (0 负责人)TypeScript (4,040 star) (181 fork)batch import
charity donation bountyhelp wantedimport source

描述

Poor man's profiling of a JVM:

$ for i in `seq 1 300`;do jstack $(pgrep java) > $i.jstack;sleep 1;done;zip profile.zip *.jstack;rm *.jstack

...and then uploading profile.zip. I'm tired of opening up traffic for profiling to production and/or building lots of tooling around it. jstack (and shell) is always availalable.

贡献者指南