jlfwong/speedscope

Format Support: concatenated output from many calls to jstack

Open

#173 aberto em 7 de out. de 2018

Ver no GitHub
 (3 comments) (0 reactions) (0 assignees)TypeScript (181 forks)batch import
charity donation bountyhelp wantedimport source

Métricas do repositório

Stars
 (4.040 stars)
Métricas de merge de PR
 (Mesclagem média 1d 17h) (1 fundiu PR em 30d)

Description

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.

Guia do colaborador