Self time is almost never useful in serious software, because nearly all the time is spent in calling system/library/DB/IO, etc., so the program counter spends very little actual time, as a percentage, in your code, unless you happen to write some kind of tight loop. It might tell you a lot is used in a system routines, but that does you no good. You need to know which part of your code causes a lot of time to be spent. – Mike DunlaveyAug 20 '11 at 1:47
so self would only be inline statements, and not function calls? And total is all the code executing inside the call? – CoolUserNameAug 19 '11 at 21:39
Incidentally, since people seem to be finding this a useful answer: This is true of profilers in general, not just in Chrome. – duskwuffMar 30 '12 at 21:08