2

I am using JProfiler to debug some lock contention problems. I can see the problematic blocked lock usages in the monitor history, and can see the filtered stack trace for waiting thread and owning thread. However, the stack trace doesn't display any line information. Is there a way to get these backtraces?

wesen
  • 631
  • 6
  • 10

1 Answers1

5

In the profiling settings you can switch on line number resolution:

enter image description here

Note that the line number on a node always refers to the class in the parent node.

Ingo Kegel
  • 46,523
  • 10
  • 71
  • 102