Lines Matching +full:system +full:- +full:trace
23 interface to the file system, to when it completed. This spans everything:
24 block device I/O (disk I/O), file system CPU cycles, file system locks, run
26 applications reading from the file system than measuring this down at the
29 Note that this only traces the common file system operations previously
30 listed: other file system operations (eg, inode operations including
64 A threshold of 0 will trace all operations. Warning: the output will be
65 verbose, as it will include all file system cache hits.
109 A -j option will print just the fields (parsable output, csv):
111 # ./xfsslower -j 1
124 producing a scatter plot of ENDTIME vs LATENCY, to look for time-based
130 # ./xfsslower -h
131 usage: xfsslower [-h] [-j] [-p PID] [min_ms]
133 Trace common XFS file operations slower than a threshold
136 min_ms minimum I/O duration to trace, in ms (default 10)
139 -h, --help show this help message and exit
140 -j, --csv just print fields: comma-separated values
141 -p PID, --pid PID trace this PID only
144 ./xfsslower # trace operations slower than 10 ms (default)
145 ./xfsslower 1 # trace operations slower than 1 ms
146 ./xfsslower -j 1 # ... 1 ms, parsable output (csv)
147 ./xfsslower 0 # trace all operations (warning: verbose)
148 ./xfsslower -p 185 # trace PID 185 only