]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd-cgtop.xml
Merge pull request #1292 from gebi/resolve-specifier-in-runtime-directory
[thirdparty/systemd.git] / man / systemd-cgtop.xml
CommitLineData
45d7a8bb 1<?xml version='1.0'?> <!--*- Mode: nxml; nxml-child-indent: 2; indent-tabs-mode: nil -*-->
caa94887 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
caa94887
LP
4
5<!--
6 This file is part of systemd.
7
8 Copyright 2012 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
caa94887
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
caa94887 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
caa94887
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22-->
23
dfdebb1b 24<refentry id="systemd-cgtop"
798d3a52
ZJS
25 xmlns:xi="http://www.w3.org/2001/XInclude">
26
27 <refentryinfo>
28 <title>systemd-cgtop</title>
29 <productname>systemd</productname>
30
31 <authorgroup>
32 <author>
33 <contrib>Developer</contrib>
34 <firstname>Lennart</firstname>
35 <surname>Poettering</surname>
36 <email>lennart@poettering.net</email>
37 </author>
38 </authorgroup>
39 </refentryinfo>
40
41 <refmeta>
42 <refentrytitle>systemd-cgtop</refentrytitle>
43 <manvolnum>1</manvolnum>
44 </refmeta>
45
46 <refnamediv>
47 <refname>systemd-cgtop</refname>
48 <refpurpose>Show top control groups by their resource usage</refpurpose>
49 </refnamediv>
50
51 <refsynopsisdiv>
52 <cmdsynopsis>
53 <command>systemd-cgtop</command>
54 <arg choice="opt" rep="repeat">OPTIONS</arg>
55 </cmdsynopsis>
56 </refsynopsisdiv>
57
58 <refsect1>
59 <title>Description</title>
60
61 <para><command>systemd-cgtop</command> shows the top control
62 groups of the local Linux control group hierarchy, ordered by
63 their CPU, memory, or disk I/O load. The display is refreshed in
64 regular intervals (by default every 1s), similar in style to
780fe62e
CD
65 <citerefentry project='man-pages'><refentrytitle>top</refentrytitle><manvolnum>1</manvolnum></citerefentry>.</para>
66
45d7a8bb
LP
67 <para>If <command>systemd-cgtop</command> is not connected to a
68 tty, no column headers are printed and the default is to only run
69 one iteration. The <varname>--iterations=</varname> argument, if
70 given, is honored. This mode is suitable for scripting.</para>
798d3a52
ZJS
71
72 <para>Resource usage is only accounted for control groups in the
73 relevant hierarchy, i.e. CPU usage is only accounted for control
74 groups in the <literal>cpuacct</literal> hierarchy, memory usage
75 only for those in <literal>memory</literal> and disk I/O usage for
76 those in <literal>blkio</literal>. If resource monitoring for
77 these resources is required, it is recommended to add the
78 <varname>CPUAccounting=1</varname>,
79 <varname>MemoryAccounting=1</varname> and
80 <varname>BlockIOAccounting=1</varname> settings in the unit files
81 in question. See
82 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>
83 for details.</para>
84
b0f5a510
UTL
85 <para>The CPU load value can be between 0 and 100 times the number of
86 processors the system has. For example, if the system has 8 processors,
87 the CPU load value is going to be between 0% and 800%. The number of
88 processors can be found in <literal>/proc/cpuinfo</literal>.</para>
89
798d3a52
ZJS
90 <para>To emphasize this: unless
91 <literal>CPUAccounting=1</literal>,
92 <literal>MemoryAccounting=1</literal> and
93 <literal>BlockIOAccounting=1</literal> are enabled for the
94 services in question, no resource accounting will be available for
95 system services and the data shown by
96 <command>systemd-cgtop</command> will be incomplete.</para>
97 </refsect1>
98
99 <refsect1>
100 <title>Options</title>
101
102 <para>The following options are understood:</para>
103
104 <variablelist>
105 <varlistentry>
106 <term><option>-p</option></term>
45d7a8bb 107 <term><option>--order=path</option></term>
798d3a52
ZJS
108
109 <listitem><para>Order by control group
110 path name.</para></listitem>
111 </varlistentry>
112
113 <varlistentry>
114 <term><option>-t</option></term>
45d7a8bb 115 <term><option>--order=tasks</option></term>
798d3a52 116
03a7b521 117 <listitem><para>Order by number of tasks/processes in the control group.</para></listitem>
798d3a52
ZJS
118 </varlistentry>
119
120 <varlistentry>
121 <term><option>-c</option></term>
45d7a8bb 122 <term><option>--order=cpu</option></term>
798d3a52
ZJS
123
124 <listitem><para>Order by CPU load.</para></listitem>
125 </varlistentry>
126
127 <varlistentry>
128 <term><option>-m</option></term>
45d7a8bb 129 <term><option>--order=memory</option></term>
798d3a52
ZJS
130
131 <listitem><para>Order by memory usage.</para></listitem>
132 </varlistentry>
133
134 <varlistentry>
135 <term><option>-i</option></term>
45d7a8bb 136 <term><option>--order=io</option></term>
798d3a52
ZJS
137
138 <listitem><para>Order by disk I/O load.</para></listitem>
139 </varlistentry>
140
141 <varlistentry>
142 <term><option>-b</option></term>
143 <term><option>--batch</option></term>
144
145 <listitem><para>Run in "batch" mode: do not accept input and
146 run until the iteration limit set with
45d7a8bb 147 <option>--iterations=</option> is exhausted or until killed.
798d3a52
ZJS
148 This mode could be useful for sending output from
149 <command>systemd-cgtop</command> to other programs or to a
150 file.</para></listitem>
151 </varlistentry>
152
a2c9f631
CD
153 <varlistentry>
154 <term><option>-r</option></term>
155 <term><option>--raw</option></term>
156
157 <listitem><para>Format byte counts (as in memory usage and IO metrics)
158 with raw numeric values rather than human-readable
159 numbers.</para></listitem>
160 </varlistentry>
161
45d7a8bb
LP
162 <varlistentry>
163 <term><option>--cpu=percentage</option></term>
164 <term><option>--cpu=time</option></term>
165
166 <listitem><para>Controls whether the CPU usage is shown as
167 percentage or time. By default the CPU usage is shown as
6d3eefd2
LP
168 percentage. This setting may also be toggled at runtime by
169 pressing the <keycap>%</keycap> key.</para></listitem>
45d7a8bb
LP
170 </varlistentry>
171
03a7b521
LP
172 <varlistentry>
173 <term><option>-P</option></term>
174
175 <listitem><para>Count only userspace processes instead of all
176 tasks. By default all tasks are counted: each kernel thread
177 and each userspace thread individually. With this setting
178 kernel threads are excluded from the counting and each
179 userspace process only counts as one, regardless how many
180 threads it consists of. This setting may also be toggled at
181 runtime by pressing the <keycap>P</keycap> key. This option
182 may not be combined with
183 <option>-k</option>.</para></listitem>
184 </varlistentry>
185
41ba8b6e
LP
186 <varlistentry>
187 <term><option>-k</option></term>
188
03a7b521
LP
189 <listitem><para>Count only userspace processes and kernel
190 threads instead of all tasks. By default all tasks are
191 counted: each kernel thread and each userspace thread
192 individually. With this setting kernel threads are included in
193 the counting and each userspace process only counts as on one,
194 regardless how many threads it consists of. This setting may
195 also be toggled at runtime by pressing the <keycap>k</keycap>
196 key. This option may not be combined with
197 <option>-P</option>.</para></listitem>
41ba8b6e
LP
198 </varlistentry>
199
3cb5beea
LP
200 <varlistentry>
201 <term><option>--recursive=</option></term>
202
03a7b521
LP
203 <listitem><para>Controls whether the number of processes shown
204 for a control group shall include all processes that are
205 contained in any of the child control groups as well. Takes a
206 boolean argument, defaults to <literal>yes</literal>. If
207 enabled the processes in child control groups are included, if
208 disabled only the processes in the control group itself are
209 counted. This setting may also be toggled at runtime by
210 pressing the <keycap>r</keycap> key. Note that this setting
211 only applies to process counting, i.e. when the
212 <option>-P</option> or <option>-k</option> options are
213 used. It has not effect if all tasks are counted, in which
214 case the counting is always recursive.</para></listitem>
3cb5beea
LP
215 </varlistentry>
216
798d3a52
ZJS
217 <varlistentry>
218 <term><option>-n</option></term>
219 <term><option>--iterations=</option></term>
220
6d3eefd2
LP
221 <listitem><para>Perform only this many iterations. A value of
222 0 indicates that the program should run
223 indefinitely.</para></listitem>
798d3a52
ZJS
224 </varlistentry>
225
226 <varlistentry>
227 <term><option>-d</option></term>
228 <term><option>--delay=</option></term>
229
230 <listitem><para>Specify refresh delay in seconds (or if one of
6d3eefd2 231 <literal>ms</literal>, <literal>us</literal>,
798d3a52 232 <literal>min</literal> is specified as unit in this time
6d3eefd2
LP
233 unit). This setting may also be increased and decreased at
234 runtime by pressing the <keycap>+</keycap> and
235 <keycap>-</keycap> keys.</para></listitem>
798d3a52
ZJS
236 </varlistentry>
237
238 <varlistentry>
239 <term><option>--depth=</option></term>
240
241 <listitem><para>Maximum control group tree traversal depth.
242 Specifies how deep <command>systemd-cgtop</command> shall
243 traverse the control group hierarchies. If 0 is specified,
244 only the root group is monitored. For 1, only the first level
245 of control groups is monitored, and so on. Defaults to
246 3.</para></listitem>
247 </varlistentry>
248
249 <xi:include href="standard-options.xml" xpointer="help" />
250 <xi:include href="standard-options.xml" xpointer="version" />
251 </variablelist>
252
253 </refsect1>
254
798d3a52
ZJS
255 <refsect1>
256 <title>Keys</title>
257
258 <para><command>systemd-cgtop</command> is an interactive tool and
259 may be controlled via user input using the following keys:</para>
260
261 <variablelist>
262 <varlistentry>
6d3eefd2 263 <term><keycap>h</keycap></term>
798d3a52
ZJS
264
265 <listitem><para>Shows a short help text.</para></listitem>
266 </varlistentry>
267
268 <varlistentry>
6d3eefd2 269 <term><keycap function="space"/></term>
798d3a52
ZJS
270
271 <listitem><para>Immediately refresh output.</para></listitem>
272 </varlistentry>
273
274 <varlistentry>
6d3eefd2 275 <term><keycap>q</keycap></term>
798d3a52
ZJS
276
277 <listitem><para>Terminate the program.</para></listitem>
278 </varlistentry>
279
798d3a52 280 <varlistentry>
6d3eefd2
LP
281 <term><keycap>p</keycap></term>
282 <term><keycap>t</keycap></term>
283 <term><keycap>c</keycap></term>
284 <term><keycap>m</keycap></term>
285 <term><keycap>i</keycap></term>
798d3a52
ZJS
286
287 <listitem><para>Sort the control groups by path, number of
6d3eefd2
LP
288 tasks, CPU load, memory usage, or IO load, respectively. This
289 setting may also be controlled using the
290 <option>--order=</option> command line
291 switch.</para></listitem>
798d3a52
ZJS
292 </varlistentry>
293
294 <varlistentry>
6d3eefd2 295 <term><keycap>%</keycap></term>
798d3a52
ZJS
296
297 <listitem><para>Toggle between showing CPU time as time or
6d3eefd2
LP
298 percentage. This setting may also be controlled using the
299 <option>--cpu=</option> command line switch.</para></listitem>
798d3a52
ZJS
300 </varlistentry>
301
302 <varlistentry>
6d3eefd2
LP
303 <term><keycap>+</keycap></term>
304 <term><keycap>-</keycap></term>
798d3a52
ZJS
305
306 <listitem><para>Increase or decrease refresh delay,
6d3eefd2
LP
307 respectively. This setting may also be controlled using the
308 <option>--delay=</option> command line
309 switch.</para></listitem>
798d3a52
ZJS
310 </varlistentry>
311
03a7b521
LP
312 <varlistentry>
313 <term><keycap>P</keycap></term>
314
315 <listitem><para>Toggle between counting all tasks, or only
316 userspace processes. This setting may also be controlled using
317 the <option>-P</option> command line switch (see
318 above).</para></listitem>
319 </varlistentry>
320
7fcfb7ee 321 <varlistentry>
6d3eefd2 322 <term><keycap>k</keycap></term>
7fcfb7ee 323
03a7b521
LP
324 <listitem><para>Toggle between counting all tasks, or only
325 userspace processes and kernel threads. This setting may also
326 be controlled using the <option>-k</option> command line
327 switch (see above).</para></listitem>
7fcfb7ee
LP
328 </varlistentry>
329
330 <varlistentry>
6d3eefd2 331 <term><keycap>r</keycap></term>
7fcfb7ee
LP
332
333 <listitem><para>Toggle between recursively including or
03a7b521
LP
334 excluding processes in child control groups in control group
335 process counts. This setting may also be controlled using the
336 <option>--recursive=</option> command line switch. This key is
337 not available of all tasks are counted, it is only available
338 if processes are counted, as enabled with the
339 <keycap>P</keycap> or <keycap>k</keycap>
340 keys.</para></listitem>
7fcfb7ee
LP
341 </varlistentry>
342
798d3a52
ZJS
343 </variablelist>
344 </refsect1>
345
346 <refsect1>
347 <title>Exit status</title>
348
349 <para>On success, 0 is returned, a non-zero failure code
350 otherwise.</para>
351 </refsect1>
352
353 <refsect1>
354 <title>See Also</title>
355 <para>
356 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
357 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
358 <citerefentry><refentrytitle>systemd-cgls</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
359 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
360 <citerefentry project='man-pages'><refentrytitle>top</refentrytitle><manvolnum>1</manvolnum></citerefentry>
361 </para>
362 </refsect1>
caa94887
LP
363
364</refentry>