1 Star 0 Fork 0

wangcichen/bcc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
threadsnoop_example.txt 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
Brendan Gregg 提交于 2020-09-17 05:32 +08:00 . add threadsnoop
Demonstrations of threadsnoop, the Linux BCC/eBPF version.
Tracing new threads via phtread_create():
# ./threadsnoop
Attaching 2 probes...
TIME(ms) PID COMM FUNC
1938 28549 dockerd threadentry
1939 28549 dockerd threadentry
1939 28549 dockerd threadentry
1940 28549 dockerd threadentry
1949 28549 dockerd threadentry
1958 28549 dockerd threadentry
1939 28549 dockerd threadentry
1950 28549 dockerd threadentry
2013 28579 docker-containe 0x562f30f2e710L
2036 28549 dockerd threadentry
2083 28579 docker-containe 0x562f30f2e710L
2116 629 systemd-journal 0x7fb7114955c0L
2116 629 systemd-journal 0x7fb7114955c0L
[...]
The output shows a dockerd process creating several threads with the start
routine threadentry(), and docker-containe (truncated) and systemd-journal
also starting threads: in their cases, the function had no symbol information
available, so their addresses are printed in hex.
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wangcichen/bcc.git
git@gitee.com:wangcichen/bcc.git
wangcichen
bcc
bcc
master

搜索帮助