jlfwong/speedscope

Format Support: concatenated output from many calls to jstack

Open

#173 ouverte le 7 oct. 2018

Voir sur GitHub
 (3 commentaires) (0 réactions) (0 assignés)TypeScript (181 forks)batch import
charity donation bountyhelp wantedimport source

Métriques du dépôt

Stars
 (4 040 stars)
Métriques de merge PR
 (Merge moyen 1j 17h) (1 PR mergée en 30 j)

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.

Guide contributeur