diff options
author | ddomingo <ddomingo@redhat.com> | 2008-11-28 09:47:00 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2008-11-28 09:47:00 +1000 |
commit | be7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362 (patch) | |
tree | e8d5dec862ba37f46a1b3ce2fc27ae580b7fed9e /doc/SystemTap_Beginners_Guide/en-US/Scripts.xml | |
parent | 021dcea6a8cf44ca4a2e7a3d6f76fc1b8a9c88da (diff) | |
download | systemtap-steved-be7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362.tar.gz systemtap-steved-be7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362.tar.xz systemtap-steved-be7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362.zip |
more indexes
Diffstat (limited to 'doc/SystemTap_Beginners_Guide/en-US/Scripts.xml')
-rw-r--r-- | doc/SystemTap_Beginners_Guide/en-US/Scripts.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml b/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml index 233dc069..e6ffc4ef 100644 --- a/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml +++ b/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml @@ -957,6 +957,18 @@ probe kernel.function("*@net/socket.c").return 4775 ftp(7223): <- sys_socketcall </screen> +<para>This sample output contains the following information:</para> + +<itemizedlist> + <listitem><para>The time delta (in microseconds) since the previous entry; i.e. the number of microseconds since the last traced function call.</para></listitem> + + <listitem><para>The process name (and its corresponding ID) that made the function call.</para></listitem> + + <listitem><para>An arrow signifying whether the call was an entry (<computeroutput><-</computeroutput>) or an exit (<computeroutput>-></computeroutput>); the indentations help you match specific function call entries with their corresponding exits.</para></listitem> + + <listitem><para>The name of the function called by the process.</para></listitem> +</itemizedlist> + <remark>remember to add a reference later to "tapsets" from here, to clarify that thread_indent is defined in tapsets as a special function of sorts</remark> |