blob: 92727821c735017a9cfccd96384c40835086d307 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
<?xml version='1.0'?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
<section id="syscallsbyprocpidsect">
<title>Tracking System Call Volume Per Process</title>
<indexterm>
<primary>script examples</primary>
<secondary>monitoring system calls (volume per process)</secondary>
</indexterm>
<indexterm>
<primary>examples of SystemTap scripts</primary>
<secondary>monitoring system calls (volume per process)</secondary>
</indexterm>
<indexterm>
<primary>monitoring system calls (volume per process)</primary>
<secondary>examples of SystemTap scripts</secondary>
</indexterm>
<!--
<indexterm>
<primary>counting function calls</primary>
<secondary>examples of SystemTap scripts</secondary>
</indexterm>
-->
<indexterm>
<primary>system calls volume (per process), monitoring</primary>
<secondary>examples of SystemTap scripts</secondary>
</indexterm>
<remark>
uses systemtap/testsuite/systemtap.examples/process/syscalls_by_p*.stp
</remark>
<para>
This section illustrates how to determine which processes
are performing the highest volume of system calls. In
previous sections, we've described how to monitor the top system
calls used by the system over time (<xref linkend="topsyssect"/>).
We've also described how to identify which applications use a
specific set of "polling suspect" system calls the most
(<xref linkend="timeoutssect"/>). Monitoring the volume of
system calls made by each process provides more data in
investigating your system for polling processes and other resource
hogs.
</para>
<formalpara id="syscallsbyprocpid">
<title>syscalls_by_proc.stp</title>
<para>
<programlisting>
<xi:include parse="text" href="../testsuite/systemtap.examples/process/syscalls_by_proc.stp" xmlns:xi="http://www.w3.org/2001/XInclude" />
</programlisting>
</para>
</formalpara>
<para>
<xref linkend="syscallsbyprocpid"/> lists the top 20 processes performing the
highest number of system calls. It also lists how many system calls each process
performed during the time period. Refer to
<xref linkend="syscallsbyprocpidoutput"/> for a sample output.
</para>
<example id="syscallsbyprocpidoutput">
<title><xref linkend="topsys"/> Sample Output</title>
<screen>
Collecting data... Type Ctrl-C to exit and display results
#SysCalls Process Name
1577 multiload-apple
692 synergyc
408 pcscd
376 mixer_applet2
299 gnome-terminal
293 Xorg
206 scim-panel-gtk
95 gnome-power-man
90 artsd
85 dhcdbd
84 scim-bridge
78 gnome-screensav
66 scim-launcher
[...]
</screen>
</example>
<para>
If you prefer the output to display the process IDs instead of the process names,
use the following script instead.
</para>
<formalpara id="syscallsbypid">
<title>syscalls_by_pid.stp</title>
<para>
<programlisting>
<xi:include parse="text" href="../testsuite/systemtap.examples/process/syscalls_by_pid.stp" xmlns:xi="http://www.w3.org/2001/XInclude" />
</programlisting>
</para>
</formalpara>
<para>
As indicated in the output, you need to manually exit the script in order to display the
results. You can add a timed expiration to either script by simply adding
a <command>timer.s()</command> probe; for example, to instruct the script to expire after
5 seconds, add the following probe to the script:
</para>
<screen>
probe timer.s(5)
{
exit()
}
</screen>
<!--probe kernel.function(@1) { # probe function passed as argument from stdin
called[probefunc()] <<< 1 # add a count efficiently
}
global called
probe end,timer.ms(30000) {
foreach (fn+ in called) # Sort by function name
# (fn in called-) # Sort by call count (in decreasing order)
printf("%s %d\n", fn, @count(called[fn]))
exit()
}-->
</section>
|