title: Profiling Node.js author: Dave Pacheco date: Wed Apr 25 2012 13:48:58 GMT-0700 (PDT) status: publish category: Uncategorized slug: profiling-node-js It's incredibly easy to visualize where your Node program spends its time using DTrace and node-stackvis (a Node port of Brendan Gregg's FlameGraph tool):
  1. Run your Node.js program as usual.
  2. In another terminal, run:
    $ dtrace -n 'profile-97/execname == "node" && arg1/{
        @[jstack(150, 8000)] = count(); } tick-60s { exit(0); }' > stacks.out
    This will sample about 100 times per second for 60 seconds and emit results to stacks.out. Note that this will sample all running programs called "node". If you want a specific process, replace execname == "node" with pid == 12345 (the process id).
  3. Use the "stackvis" tool to transform this directly into a flame graph. First, install it:
    $ npm install -g stackvis
    then use stackvis to convert the DTrace output to a flamegraph:
    $ stackvis dtrace flamegraph-svg < stacks.out > stacks.svg
  4. Open stacks.svg in your favorite browser.
You'll be looking at something like this: This is a visualization of all of the profiled call stacks. This example is from the "hello world" HTTP server on the Node.js home page under load. Start at the bottom, where you have "main", which is present in most Node stacks because Node spends most on-CPU time in the main thread. Above each row, you have the functions called by the frame beneath it. As you move up, you'll see actual JavaScript function names. The boxes in each row are not in chronological order, but their width indicates how much time was spent there. When you hover over each box, you can see exactly what percentage of time is spent in each function. This lets you see at a glance where your program spends its time. That's the summary. There are a few prerequisites: There are a few other notes: For more on the underlying pieces, see my previous post on Node.js profiling and Brendan's post on Flame Graphs.
Dave Pacheco blogs at dtrace.org