我无法从节点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
。我做错了什么?
答案 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