tags:

views:

229

answers:

2

I'm looking for alternatives to Apple's Shark on Linux. I'm looking for a statistical profiler - not gprof. I know about oprofile, but would like something a bit more polished. Appreciate any suggestions with advantages/disadvantages relative to Shark.

A: 

You can try Sysprof: http://www.daimi.au.dk/~sandmann/sysprof/

It's much simpler to use than oprofile, but probably not as fully-featured as Shark.

Adam Goode
+4  A: 

The closest thing to Shark on Linux is Zoom. It's a sampling profiler that collects callstacks and is system-wide. It has a GUI that lets you see functions, source, and assembly.

XWare