0

我通过 nvm 安装了 node.js(0.9.4),根据 changelog,它具有 systemtap 支持。

我在我的 Fedora linux 发行版上安装了 systemtap。

$ sudo yum install systemtap

我使用了 Ben Noordhuis 的这个要点

$ stap -l 'process("node")'

什么都不生产。

$ sudo stap gc.stp -c 'node test.js'
semantic error: while resolving probe point: identifier 'process' at gc.stp:7:7
        source: probe process("node").mark("gc__start")
                      ^

semantic error: no match
semantic error: while resolving probe point: identifier 'process' at :12:7
        source: probe process("node").mark("gc__done")

我完全没有使用 systemtap 的经验,但喜欢玩弄它吗?它有什么可能?我可以查看代码消耗了多少内存(http://stackoverflow.com/questions/13126808/whats-the-node-js-memory-breakdown)?


更新以回答评论。

$ readelf -n node

readelf: Error: 'node': No such file

$ which node
~/nvm/v0.9.4/bin/node

$ readelf -n ~/nvm/v0.9.4/bin/node

Notes at offset 0x0000021c with length 0x00000020:
  Owner                 Data size   Description
  GNU                  0x00000010   NT_GNU_ABI_TAG (ABI version tag)
    OS: Linux, ABI: 2.6.32

Notes at offset 0x0000023c with length 0x00000024:
  Owner                 Data size   Description
  GNU                  0x00000014   NT_GNU_BUILD_ID (unique build ID bitstring)
    Build ID: 294da933883eaeaf7e848073dc3db6bff6762fb4

$ uname -a
[alfred@alfred81-AMILO-Pi-2515 gc-stap]$ uname -a
Linux alfred81-AMILO-Pi-2515.lan 3.6.3-1.fc17.x86_64 #1 SMP Mon Oct 22 15:32:35 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

$ stap -V
Systemtap translator/driver (version 2.0/0.154, rpm 2.0-1.fc17)
Copyright (C) 2005-2012 Red Hat, Inc. and others
This is free software; see the source for copying conditions.
enabled features: AVAHI LIBRPM LIBSQLITE3 NSS TR1_UNORDERED_MAP NLS
4

1 回答 1

1

您的节点副本似乎是在没有 sys/sdt.h 标记的情况下编译的。如果它们被编译,readelf -n会显示类似...

  stapsdt              0x00000040   NT_STAPSDT (SystemTap probe descriptors)
    Provider: stap
    Name: stap_system__spawn
    Location: 0x000000000012e1b0, Base: 0x00000000001cb886, Semaphore: 0x0000000000000000
    Arguments: -4@%ebx -4@%eax

也许它是用 --without-dtrace 配置的。

于 2012-12-26T16:05:29.753 回答