Is there any tool that can extract a list of stack traces appearing in the log file and probably count unique ones?

EDIT: I would preffer something that is not GUI-based and be run on the background and give some kind of report back. I have quite many logs gathered from several environments and just would like to get quick overview.

link|improve this question

Why do you have so many stack traces in your log? Are you logging exceptions left and right? Are you certain that is a good idea? – sleske May 24 '11 at 9:02
That's a log from a performance test and certain parts of the system fail under pressure. The thing I want to achieve is a simpe report on where and which exceptions happended during the run. – Andrey Adamovich May 24 '11 at 9:04
It may be one exception happened in 1 day or it may be 1000 exceptions happened in one minute. The amount of exceptions is not determined by the amount of logs. – Andrey Adamovich May 24 '11 at 9:06
Ah, that makes sense. As long as you don't need it to monitor a production system... – sleske May 24 '11 at 10:43
feedback

3 Answers

You can write this yourself pretty easily. Here is the pattern:

  1. Open file
  2. Search for the string "\n\tat " (that's new line, tab, at, blank) This is a pretty uncommon string outside of stack traces.

Now all you need to do is find the first line that doesn't start with \t to find the end of the stack trace. You may want to skip 1-3 lines after that to catch chained exceptions.

Plus add a couple of lines (say 10 or 50) before the first line of the stack trace to get some context.

link|improve this answer
Thanks, Aaron. I had the same idea and that's what I would do eventually if I don't find anything that's already there :). I'm pretty sure this feature is present in some comercial log analyzers, but I hoped something like that existed also as a free tool or example script. – Andrey Adamovich May 24 '11 at 9:11
feedback

I use Baretail.

link|improve this answer
I know of that tool and actually I use it as well:). But I would preffer something that is not GUI-based. We have quite many logs and opening each one of them in the GUI is, unfortunately, not an option. – Andrey Adamovich May 24 '11 at 9:02
feedback
up vote 0 down vote accepted

I have come up with the following Groovy script. It is, of course, very much adjusted to my needs, but I hope it helps someone.

def traceMap = [:]

// Number of lines to keep in buffer
def BUFFER_SIZE = 100

// Pattern for stack trace line
def TRACE_LINE_PATTERN = '^[\\s\\t]+at .*$'

// Log line pattern between which we try to capture full trace
def LOG_LINE_PATTERN = '^([<#][^/]|\\d\\d).*$'

// List of patterns to replace in final captured stack trace line 
// (e.g. replace date and transaction information that may make similar traces to look as different)
def REPLACE_PATTERNS = [
  '^\\d+-\\d+\\@.*?tksId: [^\\]]+\\]',
  '^<\\w+ \\d+, \\d+ [^>]*?> <[^>]*?> <[^>]*?> <[^>]*?> <',
  '^####<[^>]+?> <[^>]*?> <[^>]*?> <[^>]*?> <[^>]*?> <[^>]*?> <[^>]*?> <[^>]*?> <[^>]*?> <[^>]*?> <[^>]*?> <',
  '<([\\w:]+)?TransaktionsID>[^<]+?</([\\w:]+)?TransaktionsID>',
  '<([\\w:]+)?TransaktionsTid>[^<]+?</([\\w:]+)?TransaktionsTid>'
]

new File('.').eachFile { File file ->
  if (file.name.contains('.log') || file.name.contains('.out')) {
    def bufferLines = []
    file.withReader { Reader reader ->
      while (reader.ready()) {      
        def String line = reader.readLine()
        if (line.matches(TRACE_LINE_PATTERN)) {
          def trace = []
          for(def i = bufferLines.size() - 1; i >= 0; i--) {
            if (!bufferLines[i].matches(LOG_LINE_PATTERN)) {
              trace.add(0, bufferLines[i])
            } else {
              trace.add(0, bufferLines[i])
              break
            }
          }
          trace.add(line)
          if (reader.ready()) {
            line = reader.readLine()
            while (!line.matches(LOG_LINE_PATTERN)) {
              trace.add(line)
              if (reader.ready()) {
                line = reader.readLine()
              } else {
                break;
              }
            }
          }
          def traceString = trace.join("\n")
          REPLACE_PATTERNS.each { pattern ->
            traceString = traceString.replaceAll(pattern, '')
          }
          if (traceMap.containsKey(traceString)) {
            traceMap.put(traceString, traceMap.get(traceString) + 1)
          } else {
            traceMap.put(traceString, 1)
          }
        }
        // Keep the buffer of last lines.
        bufferLines.add(line)
        if (bufferLines.size() > BUFFER_SIZE) {
          bufferLines.remove(0)
        }
      }
    }
  }
}

traceMap = traceMap.sort { it.value }

traceMap.reverseEach { trace, number ->
  println "-- Occured $number times -----------------------------------------"
  println trace
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.