On Tue, Feb 7, 2012 at 23:43, Chris Scribner <[email protected]> wrote: > Does anyone know how to get deeper stack frames on the "Bottom up > (heavy) profile"? > > I have some output like > > 14564 37.5% /usr/local/bin/node > 6725 46.2% Function: ... > 6719 99.9% Function: ... > 6712 99.9% Function: ... > 6693 99.7% Function: ... > 6659 99.5% Function: ... > > But, it only seems to go to a depth of 5, so I can't see specifically > where the rest of the ticks are coming from.
I just pushed a change to node-profiler[1] that adds a --call-graph-size option to the nprof script. Usage: nprof --call-graph-size 10 v8.log Hope that helps. [1] https://github.com/bnoordhuis/node-profiler -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
