随笔分类 - systemtap
摘要:http://blog.csdn.net/moonvs2010/article/category/1570309
阅读全文
摘要:http://blog.csdn.net/heli007/article/details/7187748 http://linux.chinaunix.net/docs/2006-12-15/3479.shtml
阅读全文
摘要:http://blog.chinaunix.net/uid-24774106-id-3379478.html http://blog.chinaunix.net/uid-24774106-id-3372932.html
阅读全文
摘要:https://github.com/agentzh/perl-systemtap-toolkit https://github.com/openresty http://openresty.org/posts/dynamic-tracing/ https://github.com/openrest
阅读全文
摘要:http://blog.csdn.net/wangzuxi/article/category/2647871
阅读全文
摘要:[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内核 是从源代码升级
阅读全文
摘要:[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
阅读全文
摘要: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") ...
阅读全文
摘要:想要查看一些结构体的定义,比如struct ip_mreq,可以查看头文件, 所有的系统预定义的结构体都在内核源代码的/include下有定义,ubuntu里面是/usr/include 。 比如要找上面提到的struct ip_mreq,可以这样:find /usr/include -name "*.h" | xargs grep "struct ip_mreq" -rn ,结果显示,这个...
阅读全文
摘要:https://github.com/openresty/nginx-systemtap-toolkit
阅读全文
摘要:http://shixm.iteye.com/blog/1724718 http://blog.csdn.net/dianhuiren/article/details/7543886
阅读全文
摘要:http://openresty.org/cn/presentations.html http://weibo.com/agentzh?is_all=1 http://openresty.org/posts/dynamic-tracing/ 动态追踪技术(中) - Dtrace、SystemTap、
阅读全文
摘要:http://www.oschina.net/p/dtrace4linux?fromerr=ZSxqzDcE
阅读全文
摘要:http://www.slideshare.net/brendangregg/what-linux-can-learn-from-solaris-performance-and-viceversa/86-dtrace4linux_Example_Tracing_TCP_retransmits
阅读全文
摘要: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
阅读全文
摘要: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...
阅读全文
摘要:http://blog.163.com/digoal@126/blog/static/163877040201391123645546/
阅读全文
摘要:http://blog.csdn.net/dianhuiren/article/details/7543886
阅读全文
摘要:http://csrd.aliapp.com/?p=1847#more-1847
阅读全文
摘要:[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 ~...
阅读全文