2 .\" Copyright (c) 1994 Christopher G. Demetriou
3 .\" All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\" notice, this list of conditions and the following disclaimer in the
12 .\" documentation and/or other materials provided with the distribution.
13 .\" 3. All advertising materials mentioning features or use of this software
14 .\" must display the following acknowledgement:
15 .\" This product includes software developed by Christopher G. Demetriou.
16 .\" 3. The name of the author may not be used to endorse or promote products
17 .\" derived from this software without specific prior written permission
19 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 .\" $FreeBSD: src/usr.sbin/sa/sa.8,v 1.15 2002/07/14 14:46:01 charnier Exp $
37 .Nd print system accounting statistics
40 .Op Fl abcdDfijkKlmnqrstu
46 utility reports on, cleans up,
47 and generally maintains system
52 utility is able to condense the information in
54 into the summary files
55 .Pa /var/account/savacct
57 .Pa /var/account/usracct ,
58 which contain system statistics according
59 to command name and login id, respectively.
60 This condensation is desirable because on a
63 can grow by hundreds of blocks per day.
64 The summary files are normally read before
65 the accounting file, so that reports include
66 all available information.
68 If file names are supplied, they are read instead of
69 .Pa /var/account/acct .
70 After each file is read, if the summary
71 files are being updated, an updated summary will
72 be saved to disk. Only one report is printed,
73 after the last file is processed.
75 The labels used in the output indicate the following, except
76 where otherwise specified by individual options:
79 Average number of I/O operations per execution
81 Sum of user and system time, in minutes
86 CPU-time averaged core usage, in 1k units
88 CPU storage integral, in 1k-core seconds
92 System time, in minutes
94 Total number of I/O operations
104 List all command names, including those containing unprintable
105 characters and those used only once. By default,
107 places all names containing unprintable characters and
108 those used only once under the name ``***other''.
110 If printing command statistics, sort output by the sum of user and system
111 time divided by number of calls.
113 In addition to the number of calls and the user, system and real times
114 for each command, print their percentage of the total over all commands.
116 If printing command statistics, sort by the average number of disk
117 I/O operations. If printing user statistics, print the average number of
118 disk I/O operations per user.
120 If printing command statistics, sort and print by the total number
121 of disk I/O operations.
123 Force no interactive threshold comparison with the
127 Do not read in the summary files.
129 Instead of the total minutes per category, give seconds per call.
131 If printing command statistics, sort by the cpu-time average memory
132 usage. If printing user statistics, print the cpu-time average
135 If printing command statistics, print and sort by the cpu-storage integral.
137 Separate system and user time; normally they are combined.
139 Print per-user statistics rather than per-command statistics.
141 Sort by number of calls.
143 Create no output other than error messages.
145 Reverse order of sort.
147 Truncate the accounting files when done and merge their data
148 into the summary files.
150 For each command, report the ratio of real time to the sum
151 of user and system cpu times.
152 If the cpu time is too small to report, ``*ignore*'' appears in
155 Superseding all other flags, for each entry
156 in the accounting file, print the user ID, total seconds of cpu usage,
157 total memory usage, number of I/O operations performed, and
160 For each command used
162 times or fewer, print the command name and await a reply
163 from the terminal. If the reply begins with ``y'', add
164 the command to the category ``**junk**''. This flag is
165 used to strip garbage from the report.
168 By default, per-command statistics will be printed. The number of
169 calls, the total elapsed time in minutes, total cpu and user time
170 in minutes, average number of I/O operations, and CPU-time
171 averaged core usage will be printed. If the
173 option is specified, per-user statistics will be printed, including
174 the user name, the number of commands invoked, total cpu time used
175 (in minutes), total number of I/O operations, and CPU storage integral
176 for each user. If the
178 option is specified, the uid, user and system time (in seconds),
179 CPU storage integral, I/O usage, and command name will be printed
180 for each entry in the accounting data file.
184 flag is specified, all flags other than
188 flag is specified, only the
200 .Bl -tag -width /var/account/usracct -compact
201 .It Pa /var/account/acct
202 raw accounting data file
203 .It Pa /var/account/savacct
204 per-command accounting summary database
205 .It Pa /var/account/usracct
206 per-user accounting summary database
214 The number of options to this program is absurd, especially considering
215 that there's not much logic behind their lettering.
217 The field labels should be more consistent.
219 The VM system does not record the CPU storage integral.
221 While the behavior of the options in this version of
223 was modeled after the original version, there are some intentional
224 differences and undoubtedly some unintentional ones as well. In
227 option has been added, and the
229 option now understands more options than it used to.
231 The formats of the summary files created by this version of
233 are very different from the those used by the original version.
234 This is not considered a problem, however, because the accounting record
235 format has changed as well (since user ids are now 32 bits).
237 .An Chris G. Demetriou Aq cgd@postgres.berkeley.edu