0

It's possible to log profiling information thanks to spring aop. See this for example: Profiling a Java Spring application

Now what it produces is a log file with lines and lines of 'enter method @...' 'leave method @...'. It may be a bit cumbersome to skim through for a simple human brain.

Do you know of any tool to digest these files, to ease navigation in the results, possibly to create nice graphs?

Community
  • 1
  • 1
unludo
  • 4,912
  • 7
  • 47
  • 71
  • Sounds like you should just try a regular profiling tool instead as it gives a good overview of which classes/routines are most cpu/mem intensive. – Johan Sjöberg Nov 17 '11 at 10:39

1 Answers1

0

Take a look at Spring Insight

gkamal
  • 20,777
  • 4
  • 60
  • 57