This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import groovy.io.FileType | |
if ( args.length < 2 ) { | |
println "Scan's thread dump *.log files from directory"; | |
println ""; | |
println "Usage:"; | |
println "groovy ThreadDumpAnalyzer.groovy <directory> <first value to look from thread dump> <second value to look from thread dump> <third value to look from thread dump>"; | |
println ""; | |
return; | |
} |
OlderNewer