-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfatrace.1
97 lines (70 loc) · 2.44 KB
/
fatrace.1
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
.TH fatrace 1 "February 07, 2012" "Martin Pitt"
.SH NAME
fatrace \- report system wide file access events
.SH SYNOPSIS
.B fatrace
[
.I OPTIONS
]
.SH DESCRIPTION
.B fatrace
reports file access events from all running processes.
It does not report file access by fatrace itself, to avoid logging events
caused by writing the output into a file. It also ignores events on virtual and
kernel file systems such as sysfs, proc, and devtmpfs.
Its main purpose is to find processes which keep waking up the disk
unnecessarily and thus prevent some power saving.
By default, events are reported to stdout. This will cause some loops if you
run this tool in e. g. gnome-terminal, as this causes a disk access for every
output line. To avoid this, redirect the output into a file.
.SH OUTPUT FORMAT
A typical event looks like
.RS 4
rsyslogd(875): W /var/log/auth.log
.br
compiz(1971): O device 8:2 inode 658203
.RE
The line has the following fields:
.IP \(bu 2
Process name. This is read from /proc/pid/comm, and might be abbreviated for
long process names.
.IP \(bu 2
Process ID
.IP \(bu 2
Event type: \fBO\fRpen, \fBR\fRead, \fBW\fRrite, or \fBC\fRlose. Combinations
are possible, such as \fBCW\fR for closing a written file.
.IP \(bu 2
Affected file. In some cases the path and name cannot be determined, e. g.
because it is a temporary file which is already deleted. In that case, it
prints the devices' major and minor number and the inode number. To examine
such a process in more detail, you should consider using
.BR strace (1).
.RE
If you specify the
.B \-\-timestamp
option, the first field will be the current time.
.SH OPTIONS
.TP
.B \-c\fR, \fB\-\-current-mount
Only record events on partition/mount of current directory. Without this
option, all (real) partitions/mount points are being watched.
.TP
.B \-o \fIFILE\fR, \fB\-\-output=\fIFILE
Write events to given file instead of standard output.
.TP
.B \-s \fISECONDS\fR, \fB\-\-seconds=\fISECONDS
Stop after the given number of seconds.
.TP
.B \-t\fR, \fB\-\-timestamp
Add timestamp to events. When this option is given once, the format will be a
human readable hour:minute:second.microsecond; when given twice, the timestamp
is printed as seconds/microseconds since the epoch.
.TP
.B \-p \fIPID\fR, \fB\-\-ignore\-pid=\fIPID
Ignore events for this process ID. Can be specified multiple times.
.TP
.B \-h \fR, \fB\-\-help
Print help and exit.
.SH AUTHOR
.B fatrace
is developed by Martin Pitt <martin.pitt@ubuntu.com>.