I'm on OSx Yosemite and i'm playing with Node.js CPU profiling. However i can't get DTrace to display the stack traces. I'm suspecting a problem with jstack/ustack
.
So if i do a DTrace at 97Hz:
sudo dtrace -n 'profile-97/pid == 54308/{ @[jstack(80, 8192)] = count(); }' -c "sleep 30" > dtrace.out
This is the output i get:
node`0x40
1
node`0x18b6160
1
node`0x71361a61
1
node`0x83fe8c79
1
node`0xa845d679
1
node`0x86ea4389
1
4
This is obviously not the output i would like to get since i can't see any details here.
Anything obvious i am misssing? or any alternatives?