随笔分类 -  systemtap

上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要:http://blog.csdn.net/moonvs2010/article/category/1570309 阅读全文
posted @ 2016-06-06 17:01 zengkefu 阅读(151) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/heli007/article/details/7187748 http://linux.chinaunix.net/docs/2006-12-15/3479.shtml 阅读全文
posted @ 2016-06-06 16:55 zengkefu 阅读(204) 评论(0) 推荐(0)
摘要:http://blog.chinaunix.net/uid-24774106-id-3379478.html http://blog.chinaunix.net/uid-24774106-id-3372932.html 阅读全文
posted @ 2016-06-06 16:46 zengkefu 阅读(554) 评论(0) 推荐(0)
摘要:https://github.com/agentzh/perl-systemtap-toolkit https://github.com/openresty http://openresty.org/posts/dynamic-tracing/ https://github.com/openrest 阅读全文
posted @ 2016-06-06 13:53 zengkefu 阅读(860) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/wangzuxi/article/category/2647871 阅读全文
posted @ 2016-05-29 09:41 zengkefu 阅读(247) 评论(0) 推荐(0)
摘要:[root@localhost src]# uname -aLinux localhost.localdomain 2.6.32 #1 SMP Sun Sep 20 18:58:21 PDT 2015 x86_64 x86_64 x86_64 GNU/Linux redhat 5内核 是从源代码升级 阅读全文
posted @ 2016-05-29 09:04 zengkefu 阅读(611) 评论(0) 推荐(0)
摘要:[root@monitor klvl]# uname -aLinux monitor 2.6.32-431.23.3.el6.x86_64 #1 SMP Thu Jul 31 17:20:51 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux [root@monitor 阅读全文
posted @ 2016-05-29 08:36 zengkefu 阅读(1682) 评论(0) 推荐(0)
摘要:diskiohttp://blog.163.com/digoal%40126/blog/static/16387704020131015105532435/[root@localhost linux-2.6.32]# stap -l 'kernel.function("vfs_*")' kernel.function("vfs_cancel_lock@fs/locks.c:2074") ... 阅读全文
posted @ 2016-05-28 21:10 zengkefu 阅读(934) 评论(0) 推荐(0)
摘要:想要查看一些结构体的定义,比如struct ip_mreq,可以查看头文件, 所有的系统预定义的结构体都在内核源代码的/include下有定义,ubuntu里面是/usr/include 。 比如要找上面提到的struct ip_mreq,可以这样:find /usr/include -name "*.h" | xargs grep "struct ip_mreq" -rn ,结果显示,这个... 阅读全文
posted @ 2016-05-28 20:58 zengkefu 阅读(1195) 评论(0) 推荐(0)
摘要:https://github.com/openresty/nginx-systemtap-toolkit 阅读全文
posted @ 2016-05-28 18:10 zengkefu 阅读(339) 评论(0) 推荐(0)
摘要:http://shixm.iteye.com/blog/1724718 http://blog.csdn.net/dianhuiren/article/details/7543886 阅读全文
posted @ 2016-05-25 13:12 zengkefu 阅读(218) 评论(0) 推荐(0)
摘要:http://openresty.org/cn/presentations.html http://weibo.com/agentzh?is_all=1 http://openresty.org/posts/dynamic-tracing/ 动态追踪技术(中) - Dtrace、SystemTap、 阅读全文
posted @ 2016-05-24 23:26 zengkefu 阅读(1656) 评论(1) 推荐(0)
摘要:http://www.oschina.net/p/dtrace4linux?fromerr=ZSxqzDcE 阅读全文
posted @ 2016-05-24 21:29 zengkefu 阅读(164) 评论(0) 推荐(0)
摘要:http://www.slideshare.net/brendangregg/what-linux-can-learn-from-solaris-performance-and-viceversa/86-dtrace4linux_Example_Tracing_TCP_retransmits 阅读全文
posted @ 2016-05-24 21:25 zengkefu 阅读(262) 评论(0) 推荐(0)
摘要:https://baoz.net/using-systemtap/ http://nanxiao.me/category/%E6%8A%80%E6%9C%AF/systemtap-%E7%AC%94%E8%AE%B0/ http://gmd20.blog.163.com/blog/static/16 阅读全文
posted @ 2016-05-03 17:40 zengkefu 阅读(366) 评论(0) 推荐(0)
摘要:http://hushi55.github.io/2015/10/16/Block-Input-Output/http://myaut.github.io/dtrace-stap-book/kernel/bio.htmlhttp://blog.itpub.net/15480802/viewspace... 阅读全文
posted @ 2015-11-05 13:51 zengkefu 阅读(1140) 评论(0) 推荐(0)
摘要:http://blog.163.com/digoal@126/blog/static/163877040201391123645546/ 阅读全文
posted @ 2015-11-05 13:31 zengkefu 阅读(262) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/dianhuiren/article/details/7543886 阅读全文
posted @ 2015-11-05 12:17 zengkefu 阅读(181) 评论(0) 推荐(0)
摘要:http://csrd.aliapp.com/?p=1847#more-1847 阅读全文
posted @ 2015-11-03 22:51 zengkefu 阅读(417) 评论(0) 推荐(0)
摘要:[root@localhost ~]# cat test.c #include int main( void) {int a=0; a=fun(10,20); printf("%d\n",a);}int fun(int a,int b){ return a+b; }[root@localhost ~... 阅读全文
posted @ 2015-11-03 20:45 zengkefu 阅读(375) 评论(0) 推荐(0)

上一页 1 ··· 3 4 5 6 7 8 9 下一页