Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
stevegury committed May 29, 2011
1 parent 6634f2a commit 4663561
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
target
lib_managed
project/boot
project/plugins/project
project/plugins/src_managed
*.iml
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Jstack Profiler

Simple profiler that take concatenation of jstack's output as input

# How to use

First generate an full thread dump output every n seconds (60 sec in this example), append those thread dump in a file (jstack.log in this example).
Ctrl+C to terminate

$ while true ; do jstack PID >> jstack.log ; sleep 60 ; done

Then launch the analyze with:

$ sbt "profiler jstack.log"


0 comments on commit 4663561

Please sign in to comment.