- 节点v4.x中的--prof?

时间:2015-11-18 18:16:43

标签: javascript node.js profiling v8

我无法从节点4.1.1获得任何分析输出:

[/tmp]% cat index.js                                                 (arkadiy@helium:/tmp)
console.log("boom");
[/tmp]% node --prof index.js                                         (arkadiy@helium:/tmp)
boom
[/tmp]% ls v8.log                                                    (arkadiy@helium:/tmp)
ls: v8.log: No such file or directory
[/tmp]% node --version                                               (arkadiy@helium:/tmp)
v4.1.1
[/tmp]% which node                                                   (arkadiy@helium:/tmp)
/usr/local/bin/node

--prof似乎仍然是一个有效的选项,我可以找到的联机帮助页和所有文档似乎暗示上面的调用应该生成一个我可以用以下方法分析的v8.log文件。 node-tick。我做错了什么?

1 个答案:

答案 0 :(得分:1)

看起来我可以使用--perf_basic_prof

获取日志
[/tmp]% node  --perf_basic_prof index.js                             (arkadiy@helium:/tmp)
boom
[/tmp]% ls *v8.log                                                   (arkadiy@helium:/tmp)
isolate-0x101804c00-v8.log