You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
498 B
17 lines
498 B
name: Print JVM thread dumps |
|
description: 'Prints a thread dump for all running JVMs' |
|
runs: |
|
using: composite |
|
steps: |
|
- if: ${{ runner.os == 'Linux' }} |
|
shell: bash |
|
run: | |
|
for jvm_pid in $(jps -q -J-XX:+PerfDisableSharedMem); do |
|
jcmd $jvm_pid Thread.print |
|
done |
|
- if: ${{ runner.os == 'Windows' }} |
|
shell: powershell |
|
run: | |
|
foreach ($jvm_pid in $(jps -q -J-XX:+PerfDisableSharedMem)) { |
|
jcmd $jvm_pid Thread.print |
|
}
|
|
|