Seperate ioprio value from setting
[fio.git] / fio.1
... / ...
CommitLineData
1.TH fio 1 "September 2007" "User Manual"
2.SH NAME
3fio \- flexible I/O tester
4.SH SYNOPSIS
5.B fio
6[\fIoptions\fR] [\fIjobfile\fR]...
7.SH DESCRIPTION
8.B fio
9is a tool that will spawn a number of threads or processes doing a
10particular type of I/O action as specified by the user.
11The typical use of fio is to write a job file matching the I/O load
12one wants to simulate.
13.SH OPTIONS
14.TP
15.BI \-\-output \fR=\fPfilename
16Write output to \fIfilename\fR.
17.TP
18.BI \-\-timeout \fR=\fPtimeout
19Limit run time to \fItimeout\fR seconds.
20.TP
21.B \-\-latency\-log
22Generate per-job latency logs.
23.TP
24.B \-\-bandwidth\-log
25Generate per-job bandwidth logs.
26.TP
27.B \-\-minimal
28Print statistics in a terse, semicolon-delimited format.
29.TP
30.BI \-\-showcmd \fR=\fPjobfile
31Convert \fIjobfile\fR to a set of command-line options.
32.TP
33.B \-\-readonly
34Enable read-only safety checks.
35.TP
36.BI \-\-eta \fR=\fPwhen
37Specifies when real-time ETA estimate should be printed. \fIwhen\fR may
38be one of `always', `never' or `auto'.
39.TP
40.BI \-\-cmdhelp \fR=\fPcommand
41Print help information for \fIcommand\fR. May be `all' for all commands.
42.TP
43.B \-\-help
44Display usage information and exit.
45.TP
46.B \-\-version
47Display version information and exit.
48.SH "JOB FILE FORMAT"
49Job files are in `ini' format. They consist of one or more
50job definitions, which begin with a job name in square brackets and
51extend to the next job name. The job name can be any ASCII string
52except `global', which has a special meaning. Following the job name is
53a sequence of zero or more parameters, one per line, that define the
54behavior of the job. Any line starting with a `;' or `#' character is
55considered a comment and ignored.
56job files.
57.SS "Global Section"
58The global section contains default parameters for jobs specified in the
59job file. A job is only affected by global sections residing above it,
60and there may be any number of global sections. Specific job definitions
61may override any parameter set in global sections.
62.SH "JOB PARAMETERS"
63.SS Types
64Some parameters may take arguments of a specific type. The types used are:
65.TP
66.I str
67String: a sequence of alphanumeric characters.
68.TP
69.I int
70Integer: a whole number, possibly negative. If prefixed with `0x', the value
71is assumed to be base 16 (hexadecimal).
72.TP
73.I siint
74SI integer: a whole number, possibly containing a suffix denoting the base unit
75of the value. Accepted suffixes are `k', 'M' and 'G', denoting kilo (1024),
76mega (1024*1024) and giga (1024*1024*1024) respectively.
77.TP
78.I bool
79Boolean: a true or false value. `0' denotes false, `1' denotes true.
80.TP
81.I irange
82Integer range: a range of integers specified in the format
83\fIlower\fR:\fIupper\fR or \fIlower\fR\-\fIupper\fR. \fIlower\fR and
84\fIupper\fR may contain a suffix as described above. If an option allows two
85sets of ranges, they are separated with a `,' or `/' character. For example:
86`8\-8k/8M\-4G'.
87.SS "Parameter List"
88.TP
89.BI name \fR=\fPstr
90May be used to override the job name. On the command line, this paramter
91has the special purpose of signalling the start of a new job.
92.TP
93.BI description \fR=\fPstr
94Human-readable description of the job. It is printed when the job is run, but
95otherwise has no special purpose.
96.TP
97.BI directory \fR=\fPstr
98Prefix filenames with this directory. Used to place files in a location other
99than `./'.
100.TP
101.BI filename \fR=\fPstr
102.B fio
103normally makes up a file name based on the job name, thread number, and file
104number. If you want to share files between threads in a job or several jobs,
105specify a \fIfilename\fR for each of them to override the default. If the I/O
106engine used is `net', \fIfilename\fR is the host and port to connect to in the
107format \fIhost\fR/\fIport\fR. If the I/O engine is file-based, you can specify
108a number of files by separating the names with a `:' character. `\-' is a
109reserved name, meaning stdin or stdout, depending on the read/write direction
110set.
111.TP
112.BI opendir \fR=\fPstr
113Recursively open any files below directory \fIstr\fR.
114.TP
115.BI readwrite \fR=\fPstr "\fR,\fP rw" \fR=\fPstr
116Type of I/O pattern. Accepted values are:
117.RS
118.RS
119.TP
120.B read
121Sequential reads.
122.TP
123.B write
124Sequential writes.
125.TP
126.B randread
127Random reads.
128.TP
129.B randwrite
130Random writes.
131.TP
132.B rw
133Mixed sequential reads and writes.
134.TP
135.B randrw
136Mixed random reads and writes.
137.RE
138.P
139For mixed I/O, the default split is 50/50. For random I/O, the number of I/Os
140to perform before getting a new offset can be specified by appending
141`:\fIint\fR' to the pattern type. The default is 1.
142.RE
143.TP
144.BI randrepeat \fR=\fPbool
145Seed the random number generator in a predictable way so results are repeatable
146across runs. Default: true.
147.TP
148.BI fadvise_hint \fR=\fPbool
149Disable use of \fIposix_fadvise\fR\|(2) to advise the kernel what I/O patterns
150are likely to be issued. Default: true.
151.TP
152.BI size \fR=\fPsiint
153Total size of I/O for this job. \fBfio\fR will run until this many bytes have
154been transfered, unless limited by other options (\fBruntime\fR, for instance).
155Unless \fBnr_files\fR and \fBfilesize\fR options are given, this amount will be
156divided between the available files for the job.
157.TP
158.BI filesize \fR=\fPirange
159Individual file sizes. May be a range, in which case \fBfio\fR will select sizes
160for files at random within the given range, limited to \fBsize\fR in total (if
161that is given). If \fBfilesize\fR is not specified, each created file is the
162same size.
163.TP
164.BI blocksize \fR=\fPsiint "\fR,\fB bs" \fR=\fPsiint
165Block size for I/O units. Default: 4k. Values for reads and writes can be
166specified seperately in the format \fIread\fR,\fIwrite\fR, either of
167which may be empty to leave that value at its default.
168.TP
169.BI blocksize_range \fR=\fPirange "\fR,\fB bsrange" \fR=\fPirange
170Specify a range of I/O block sizes. The issued I/O unit will always be a
171multiple of the minimum size, unless \fBblocksize_unaligned\fR is set. Applies
172to both reads and writes, but can be specified seperately (see \fBblocksize\fR).
173.TP
174.B blocksize_unaligned\fR,\fP bs_unaligned
175If set, any size in \fBblocksize_range\fR may be used. This typically won't
176work with direct I/O, as that normally requires sector alignment.
177.TP
178.B zero_buffers
179Initialise buffers with all zeros. Default: fill buffers with random data.
180.TP
181.BI nrfiles \fR=\fPint
182Number of files to use for this job. Default: 1.
183.TP
184.BI openfiles \fR=\fPint
185Number of files to keep open at the same time. Default: \fBnrfiles\fR.
186.TP
187.BI file_service_type \fR=\fPstr
188Defines how files to service are selected. The following types are defined:
189.RS
190.RS
191.TP
192.B random
193Choose a file at random
194.TP
195.B roundrobin
196Round robin over open files (default).
197.RE
198.P
199The number of I/Os to issue before switching a new file can be specified by
200appending `:\fIint\fR' to the service type.
201.RE
202.TP
203.BI ioengine \fR=\fPstr
204Defines how the job issues I/O. The following types are defined:
205.RS
206.RS
207.TP
208.B sync
209Basic \fIread\fR\|(2) or \fIwrite\fR\|(2) I/O. \fIfseek\fR\|(2) is used to
210position the I/O location.
211.TP
212.B psync
213Basic \fIpread\fR\|(2) or \fIpwrite\fR\|(2) I/O.
214.TP
215.B libaio
216Linux native asynchronous I/O.
217.TP
218.B posixaio
219glibc POSIX asynchronous I/O using \fIaio_read\fR\|(3) and \fIaio_write\fR\|(3).
220.TP
221.B mmap
222File is memory mapped with \fImmap\fR\|(2) and data copied using
223\fImemcpy\fR\|(3).
224.TP
225.B splice
226\fIsplice\fR\|(2) is used to transfer the data and \fIvmsplice\fR\|(2) to
227transfer data from user-space to the kernel.
228.TP
229.B syslet-rw
230Use the syslet system calls to make regular read/write asynchronous.
231.TP
232.B sg
233SCSI generic sg v3 I/O. May be either synchronous using the SG_IO ioctl, or if
234the target is an sg character device, we use \fIread\fR\|(2) and
235\fIwrite\fR\|(2) for asynchronous I/O.
236.TP
237.B null
238Doesn't transfer any data, just pretends to. Mainly used to exercise \fBfio\fR
239itself and for debugging and testing purposes.
240.TP
241.B net
242Transfer over the network. \fBfilename\fR must be set appropriately to
243`\fIhost\fR/\fIport\fR' regardless of data direction. If receiving, only the
244\fIport\fR argument is used.
245.TP
246.B netsplice
247Like \fBnet\fR, but uses \fIsplice\fR\|(2) and \fIvmsplice\fR\|(2) to map data
248and send/receive.
249.TP
250.B cpuio
251Doesn't transfer any data, but burns CPU cycles according to \fBcpuload\fR and
252\fBcpucycles\fR parameters.
253.TP
254.B guasi
255The GUASI I/O engine is the Generic Userspace Asynchronous Syscall Interface
256approach to asycnronous I/O.
257.br
258See <http://www.xmailserver.org/guasi\-lib.html>.
259.TP
260.B external
261Loads an external I/O engine object file. Append the engine filename as
262`:\fIenginepath\fR'.
263.RE
264.RE
265.TP
266.BI iodepth \fR=\fPint
267Number of I/O units to keep in flight against the file. Default: 1.
268.TP
269.BI iodepth_batch \fR=\fPint
270Number of I/Os to submit at once. Default: \fBiodepth\fR.
271.TP
272.BI iodepth_low \fR=\fPint
273Low watermark indicating when to start filling the queue again. Default:
274\fBiodepth\fR.
275.TP
276.BI direct \fR=\fPbool
277If true, use non-buffered I/O (usually O_DIRECT). Default: false.
278.TP
279.BI buffered \fR=\fPbool
280If true, use buffered I/O. This is the opposite of the \fBdirect\fR parameter.
281Default: true.
282.TP
283.BI offset \fR=\fPsiint
284Offset in the file to start I/O. Data before the offset will not be touched.
285.TP
286.BI fsync \fR=\fPint
287How many I/Os to perform before issuing an \fBfsync\fR\|(2) of dirty data. If
2880, don't sync. Default: 0.
289.TP
290.BI overwrite \fR=\fPbool
291If writing, setup the file first and do overwrites. Default: false.
292.TP
293.BI end_fsync \fR=\fPbool
294Sync file contents when job exits. Default: false.
295.TP
296.BI fsync_on_close \fR=\fPbool
297If true, sync file contents on close. This differs from \fBend_fsync\fR in that
298it will happen on every close, not just at the end of the job. Default: false.
299.TP
300.BI rwmixcycle \fR=\fPint
301How many milliseconds before switching between reads and writes for a mixed
302workload. Default: 500ms.
303.TP
304.BI rwmixread \fR=\fPint
305Percentage of a mixed workload that should be reads. Default: 50.
306.TP
307.BI rwmixwrite \fR=\fPint
308Percentage of a mixed workload that should be writes. If \fBrwmixread\fR and
309\fBwrmixwrite\fR are given and do not sum to 100%, the latter of the two
310overrides the first. Default: 50.
311.TP
312.B norandommap
313Normally \fBfio\fR will cover every block of the file when doing random I/O. If
314this parameter is given, a new offset will be chosen without looking at past
315I/O history. This parameter is mutually exclusive with \fBverify\fR.
316.TP
317.BI nice \fR=\fPint
318Run job with given nice value. See \fInice\fR\|(2).
319.TP
320.BI prio \fR=\fPint
321Set I/O priority value of this job between 0 (highest) and 7 (lowest). See
322\fIionice\fR\|(1).
323.TP
324.BI prioclass \fR=\fPint
325Set I/O priority class. See \fIionice\fR\|(1).
326.TP
327.BI thinktime \fR=\fPint
328Stall job for given number of microseconds between issuing I/Os.
329.TP
330.BI thinktime_spin \fR=\fPint
331Pretend to spend CPU time for given number of microseconds, sleeping the rest
332of the time specified by \fBthinktime\fR. Only valid if \fBthinktime\fR is set.
333.TP
334.BI thinktime_blocks \fR=\fPint
335Number of blocks to issue before waiting \fBthinktime\fR microseconds.
336Default: 1.
337.TP
338.BI rate \fR=\fPint
339Cap bandwidth used by this job to this number of KiB/s.
340.TP
341.BI ratemin \fR=\fPint
342Tell \fBfio\fR to do whatever it can to maintain at least the given bandwidth.
343Failing to meet this requirement will cause the job to exit.
344.TP
345.BI rate_iops \fR=\fPint
346Cap the bandwidth to this number of IOPS. If \fBblocksize\fR is a range, the
347smallest block size is used as the metric.
348.TP
349.BI rate_iops_min \fR=\fPint
350If this rate of I/O is not met, the job will exit.
351.TP
352.BI ratecycle \fR=\fPint
353Average bandwidth for \fBrate\fR and \fBratemin\fR over this number of
354milliseconds. Default: 1000ms.
355.TP
356.BI cpumask \fR=\fPint
357Set CPU affinity for this job. \fIint\fR is a bitmask of allowed CPUs the job
358may run on. See \fBsched_setaffinity\fR\|(2).
359.TP
360.BI cpus_allowed \fR=\fPstr
361Same as \fBcpumask\fR, but allows a comma-delimited list of CPU numbers.
362.TP
363.BI startdelay \fR=\fPint
364Delay start of job for the specified number of seconds.
365.TP
366.BI runtime \fR=\fPint
367Terminate processing after the specified number of seconds.
368.TP
369.B time_based
370If given, run for the specified \fBruntime\fR duration even if the files are
371completely read or written. The same workload will be repeated as many times
372as \fBruntime\fR allows.
373.TP
374.BI invalidate \fR=\fPbool
375Invalidate buffer-cache for the file prior to starting I/O. Default: true.
376.TP
377.BI sync \fR=\fPbool
378Use synchronous I/O for buffered writes. For the majority of I/O engines,
379this means using O_SYNC. Default: false.
380.TP
381.BI iomem \fR=\fPstr "\fR,\fP mem" \fR=\fPstr
382Allocation method for I/O unit buffer. Allowed values are:
383.RS
384.RS
385.TP
386.B malloc
387Allocate memory with \fImalloc\fR\|(3).
388.TP
389.B shm
390Use shared memory buffers allocated through \fIshmget\fR\|(2).
391.TP
392.B shmhuge
393Same as \fBshm\fR, but use huge pages as backing.
394.TP
395.B mmap
396Use \fImmap\fR\|(2) for allocation. Uses anonymous memory unless a filename
397is given after the option in the format `:\fIfile\fR'.
398.TP
399.B mmaphuge
400Same as \fBmmap\fR, but use huge files as backing.
401.RE
402.P
403The amount of memory allocated is the maximum allowed \fBblocksize\fR for the
404job multiplied by \fBiodepth\fR. For \fBshmhuge\fR or \fBmmaphuge\fR to work,
405the system must have free huge pages allocated. \fBmmaphuge\fR also needs to
406have hugetlbfs mounted, and \fIfile\fR must point there.
407.RE
408.TP
409.BI hugepage\-size \fR=\fPsiint
410Defines the size of a huge page. Must be at least equal to the system setting.
411Should be a multiple of 1MiB. Default: 4MiB.
412.TP
413.B exitall
414Terminate all jobs when one finishes. Default: wait for each job to finish.
415.TP
416.BI bwavgtime \fR=\fPint
417Average bandwidth calculations over the given time in milliseconds. Default:
418500ms.
419.TP
420.BI create_serialize \fR=\fPbool
421If true, serialize file creation for the jobs. Default: true.
422.TP
423.BI create_fsync \fR=\fPbool
424\fIfsync\fR\|(2) data file after creation. Default: true.
425.TP
426.BI unlink \fR=\fPbool
427Unlink job files when done. Default: false.
428.TP
429.BI loops \fR=\fPint
430Specifies the number of iterations (runs of the same workload) of this job.
431Default: 1.
432.TP
433.BI do_verify \fR=\fPbool
434Run the verify phase after a write phase. Only valid if \fBverify\fR is set.
435Default: true.
436.TP
437.BI verify \fR=\fPstr
438Method of verifying file contents after each iteration of the job. Allowed
439values are:
440.RS
441.RS
442.TP
443.B md5 crc16 crc32 crc64 crc7 sha256 sha512
444Store appropriate checksum in the header of each block.
445.TP
446.B meta
447Write extra information about each I/O (timestamp, block number, etc.). The
448block number is verified.
449.TP
450.B pattern
451Fill I/O buffers with a specific pattern that is used to verify. The pattern is
452specified by appending `:\fIint\fR' to the parameter. \fIint\fR cannot be larger
453than 32-bits.
454.TP
455.B null
456Pretend to verify. Used for testing internals.
457.RE
458.RE
459.TP
460.BI verify_sort \fR=\fPbool
461If true, written verify blocks are sorted if \fBfio\fR deems it to be faster to
462read them back in a sorted manner. Default: true.
463.TP
464.BI verify_offset \fR=\fPsiint
465Swap the verification header with data somewhere else in the block before
466writing. It is swapped back before verifying.
467.TP
468.BI verify_interval \fR=\fPsiint
469Write the verification header for this number of bytes, which should divide
470\fBblocksize\fR. Default: \fBblocksize\fR.
471.TP
472.BI verify_fatal \fR=\fPbool
473If true, exit the job on the first observed verification failure. Default:
474false.
475.TP
476.B stonewall
477Wait for preceeding jobs in the job file to exit before starting this one.
478\fBstonewall\fR implies \fBnew_group\fR.
479.TP
480.B new_group
481Start a new reporting group. If not given, all jobs in a file will be part
482of the same reporting group, unless separated by a stonewall.
483.TP
484.BI numjobs \fR=\fPint
485Number of clones (processes/threads performing the same workload) of this job.
486Default: 1.
487.TP
488.B group_reporting
489If set, display per-group reports instead of per-job when \fBnumjobs\fR is
490specified.
491.TP
492.B thread
493Use threads created with \fBpthread_create\fR\|(3) instead of processes created
494with \fBfork\fR\|(2).
495.TP
496.BI zonesize \fR=\fPsiint
497Divide file into zones of the specified size in bytes. See \fBzoneskip\fR.
498.TP
499.BI zoneskip \fR=\fPsiint
500Skip the specified number of bytes when \fBzonesize\fR bytes of data have been
501read.
502.TP
503.BI write_iolog \fR=\fPstr
504Write the issued I/O patterns to the specified file.
505.TP
506.BI read_iolog \fR=\fPstr
507Replay the I/O patterns contained in the specified file generated by
508\fBwrite_iolog\fR, or may be a \fBblktrace\fR binary file.
509.TP
510.B write_bw_log
511If given, write bandwidth logs of the jobs in this file.
512.TP
513.B write_lat_log
514Same as \fBwrite_bw_log\fR, but writes I/O completion latencies.
515.TP
516.BI lockmem \fR=\fPsiint
517Pin the specified amount of memory with \fBmlock\fR\|(2). Can be used to
518simulate a smaller amount of memory.
519.TP
520.BI exec_prerun \fR=\fPstr
521Before running the job, execute the specified command with \fBsystem\fR\|(3).
522.TP
523.BI exec_postrun \fR=\fPstr
524Same as \fBexec_prerun\fR, but the command is executed after the job completes.
525.TP
526.BI ioscheduler \fR=\fPstr
527Attempt to switch the device hosting the file to the specified I/O scheduler.
528.TP
529.BI cpuload \fR=\fPint
530If the job is a CPU cycle-eater, attempt to use the specified percentage of
531CPU cycles.
532.TP
533.BI cpuchunks \fR=\fPint
534If the job is a CPU cycle-eater, split the load into cycles of the
535given time in milliseconds.
536.TP
537.BI disk_util \fR=\fPbool
538Generate disk utilization statistics if the platform supports it. Default: true.
539.SH OUTPUT
540While running, \fBfio\fR will display the status of the created jobs. For
541example:
542.RS
543.P
544Threads: 1: [_r] [24.8% done] [ 13509/ 8334 kb/s] [eta 00h:01m:31s]
545.RE
546.P
547The characters in the first set of brackets denote the current status of each
548threads. The possible values are:
549.P
550.PD 0
551.RS
552.TP
553.B P
554Setup but not started.
555.TP
556.B C
557Thread created.
558.TP
559.B I
560Initialized, waiting.
561.TP
562.B R
563Running, doing sequential reads.
564.TP
565.B r
566Running, doing random reads.
567.TP
568.B W
569Running, doing sequential writes.
570.TP
571.B w
572Running, doing random writes.
573.TP
574.B M
575Running, doing mixed sequential reads/writes.
576.TP
577.B m
578Running, doing mixed random reads/writes.
579.TP
580.B F
581Running, currently waiting for \fBfsync\fR\|(2).
582.TP
583.B V
584Running, verifying written data.
585.TP
586.B E
587Exited, not reaped by main thread.
588.TP
589.B \-
590Exited, thread reaped.
591.RE
592.PD
593.P
594The second set of brackets shows the estimated completion percentage of
595the current group. The third set shows the read and write I/O rate,
596respectively. Finally, the estimated run time of the job is displayed.
597.P
598When \fBfio\fR completes (or is interrupted by Ctrl-C), it will show data
599for each thread, each group of threads, and each disk, in that order.
600.P
601Per-thread statistics first show the threads client number, group-id, and
602error code. The remaining figures are as follows:
603.RS
604.TP
605.B io
606Number of megabytes of I/O performed.
607.TP
608.B bw
609Average data rate (bandwidth).
610.TP
611.B runt
612Threads run time.
613.TP
614.B slat
615Submission latency minimum, maximum, average and standard deviation. This is
616the time it took to submit the I/O.
617.TP
618.B clat
619Completion latency minimum, maximum, average and standard deviation. This
620is the time between submission and completion.
621.TP
622.B bw
623Bandwidth minimum, maximum, percentage of aggregate bandwidth received, average
624and standard deviation.
625.TP
626.B cpu
627CPU usage statistics. Includes user and system time, number of context switches
628this thread went through and number of major and minor page faults.
629.TP
630.B IO depths
631Distribution of I/O depths. Each depth includes everything less than (or equal)
632to it, but greater than the previous depth.
633.TP
634.B IO issued
635Number of read/write requests issued, and number of short read/write requests.
636.TP
637.B IO latencies
638Distribution of I/O completion latencies. The numbers follow the same pattern
639as \fBIO depths\fR.
640.RE
641.P
642The group statistics show:
643.PD 0
644.RS
645.TP
646.B io
647Number of megabytes I/O performed.
648.TP
649.B aggrb
650Aggregate bandwidth of threads in the group.
651.TP
652.B minb
653Minimum average bandwidth a thread saw.
654.TP
655.B maxb
656Maximum average bandwidth a thread saw.
657.TP
658.B mint
659Shortest runtime of threads in the group.
660.TP
661.B maxt
662Longest runtime of threads in the group.
663.RE
664.PD
665.P
666Finally, disk statistics are printed with reads first:
667.PD 0
668.RS
669.TP
670.B ios
671Number of I/Os performed by all groups.
672.TP
673.B merge
674Number of merges in the I/O scheduler.
675.TP
676.B ticks
677Number of ticks we kept the disk busy.
678.TP
679.B io_queue
680Total time spent in the disk queue.
681.TP
682.B util
683Disk utilization.
684.RE
685.PD
686.SH TERSE OUTPUT
687If the \fB\-\-minimal\fR option is given, the results will be printed in a
688semicolon-delimited format suitable for scripted use. The fields are:
689.P
690.RS
691.B jobname, groupid, error
692.P
693Read status:
694.RS
695.B KiB I/O, bandwidth \fR(KiB/s)\fP, runtime \fR(ms)\fP
696.P
697Submission latency:
698.RS
699.B min, max, mean, standard deviation
700.RE
701Completion latency:
702.RS
703.B min, max, mean, standard deviation
704.RE
705Bandwidth:
706.RS
707.B min, max, aggregate percentage of total, mean, standard deviation
708.RE
709.RE
710.P
711Write status:
712.RS
713.B KiB I/O, bandwidth \fR(KiB/s)\fP, runtime \fR(ms)\fP
714.P
715Submission latency:
716.RS
717.B min, max, mean, standard deviation
718.RE
719Completion latency:
720.RS
721.B min, max, mean, standard deviation
722.RE
723Bandwidth:
724.RS
725.B min, max, aggregate percentage of total, mean, standard deviation
726.RE
727.RE
728.P
729CPU usage:
730.RS
731.B user, system, context switches
732.RE
733.P
734IO depth distribution:
735.RS
736.B <=1, 2, 4, 8, 16, 32, >=64
737.RE
738.P
739IO latency distribution (ms):
740.RS
741.B <=2, 4, 10, 20, 50, 100, 250, 500, 750, 1000, >=2000
742.RE
743.P
744.B text description
745.RE
746.SH AUTHORS
747.B fio
748was written by Jens Axboe <jens.axboe@oracle.com>.
749.br
750This man page was written by Aaron Carroll <aaronc@cse.unsw.edu.au> based
751on documentation by Jens Axboe.
752.SH "REPORTING BUGS"
753Report bugs to the \fBfio\fR mailing list <fio-devel@kernel.dk>.
754See \fBREADME\fR.
755.SH "SEE ALSO"
756For further documentation see \fBHOWTO\fR and \fBREADME\fR.
757.br
758Sample jobfiles are available in the \fBexamples\fR directory.
759