diff options
Diffstat (limited to 'upstream/archlinux/man1/cifsiostat.1')
-rw-r--r-- | upstream/archlinux/man1/cifsiostat.1 | 154 |
1 files changed, 154 insertions, 0 deletions
diff --git a/upstream/archlinux/man1/cifsiostat.1 b/upstream/archlinux/man1/cifsiostat.1 new file mode 100644 index 00000000..ef507139 --- /dev/null +++ b/upstream/archlinux/man1/cifsiostat.1 @@ -0,0 +1,154 @@ +.\" cifsiostat manual page - (C) 2020 Sebastien Godard (sysstat <at> orange.fr) +.TH CIFSIOSTAT 1 "AUGUST 2023" Linux "Linux User's Manual" -*- nroff -*- +.SH NAME +cifsiostat \- Report CIFS statistics. + +.SH SYNOPSIS +.ie 'yes'no' \{ +.B cifsiostat [ \-h ] [ \-k | \-m ] [ \-t ] [ \-V ] [ \-\-debuginfo ] [ \-\-dec={ 0 | 1 | 2 } ] [ \-\-human ] [ \-\-pretty ] [ +.IB "interval " "[ " "count " "] ]" +.\} +.el \{ +.B cifsiostat [ \-h ] [ \-k | \-m ] [ \-t ] [ \-V ] [ \-\-dec={ 0 | 1 | 2 } ] [ \-\-human ] [ \-\-pretty ] [ +.IB "interval " "[ " "count " "] ]" +.\} + +.SH DESCRIPTION +The +.B cifsiostat +command displays statistics about read and write operations +on CIFS filesystems. +.PP +.RI "The " "interval" +parameter specifies the amount of time in seconds between +each report. The first report contains statistics for the time since +system startup (boot). Each subsequent report contains statistics +collected during the interval since the previous report. +A report consists of a CIFS header row followed by +a line of statistics for each CIFS filesystem that is mounted. +.RI "The " "count " "parameter can be specified in conjunction with the " "interval " +.RI "parameter. If the " "count " "parameter is specified, the value of " "count " +.RI "determines the number of reports generated at " "interval " "seconds apart. If the " "interval " +.RI "parameter is specified without the " "count " "parameter, the " +.BR "cifsiostat " "command generates reports continuously." + +.SH REPORT +The CIFS report provides statistics for each mounted CIFS filesystem. +The report shows the following fields: + +.IP Filesystem: +This columns shows the mount point of the CIFS filesystem. +.IP "rB/s (rkB/s, rMB/s)" +Indicate the average number of bytes (kilobytes, megabytes) read per second. +.IP "wB/s (wkB/s, wMB/s)" +Indicate the average number of bytes (kilobytes, megabytes) written per second. +.IP rop/s +Indicate the number of 'read' operations that were issued to the filesystem +per second. +.IP wop/s +Indicate the number of 'write' operations that were issued to the filesystem +per second. +.IP fo/s +Indicate the number of open files per second. +.IP fc/s +Indicate the number of closed files per second. +.IP fd/s +Indicate the number of deleted files per second. + +.SH OPTIONS +.if 'yes'no' \{ +.TP +.B \-\-debuginfo +Print debug output to stderr. +.\} +.TP +.B \-\-dec={ 0 | 1 | 2 } +Specify the number of decimal places to use (0 to 2, default value is 2). +.TP +.B \-h +This option is equivalent to specifying +.BR "\-\-human \-\-pretty" "." +.TP +.B \-\-human +Print sizes in human readable format (e.g. 1.0k, 1.2M, etc.) +The units displayed with this option supersede any other default units (e.g. +kilobytes, sectors...) associated with the metrics. +.TP +.B \-k +Display statistics in kilobytes per second. +.TP +.B \-m +Display statistics in megabytes per second. +.TP +.B \-\-pretty +Make the CIFS report easier to read by a human. +.TP +.B \-t +Print the time for each report displayed. The timestamp format may depend +on the value of the +.BR "S_TIME_FORMAT " "environment variable (see below)." +.TP +.B \-V +Print version number then exit. + +.SH ENVIRONMENT +.RB "The " "cifsiostat " "command takes into account the following environment variables: " +.TP +.B S_COLORS +By default statistics are displayed in color when the output is connected to a terminal. +Use this variable to change the settings. Possible values for this variable are +.BR "never" ", " "always " "or " "auto " "(the latter is equivalent to the default settings)." +.br +Please note that the color (being red, yellow, or some other color) used to display a value +is not indicative of any kind of issue simply because of the color. It only indicates different +ranges of values. +.TP +.B S_COLORS_SGR +Specify the colors and other attributes used to display statistics on the terminal. +Its value is a colon-separated list of capabilities that defaults to +.BR "I=32;22:N=34;1:Z=34;22" "." +Supported capabilities are: +.RS +.TP +.B I= +SGR substring for filesystem names. +.TP +.B N= +SGR substring for non-zero statistics values. +.TP +.B Z= +SGR substring for zero values. +.RE +.TP +.B S_TIME_FORMAT +If this variable exists and its value is +.B ISO +then the current locale will be ignored when printing the date in the report +header. The +.B cifsiostat +command will use the ISO 8601 format (YYYY-MM-DD) instead. +.RB "The timestamp displayed with option " "\-t " "will also be compliant with ISO 8601 format." + +.SH BUG +.IR "/proc " "filesystem must be mounted for" +.BR "cifsiostat " "to work." +.PP +.RB "Although " "cifsiostat" +speaks of kilobytes (kB), megabytes (MB)..., it actually uses kibibytes (kiB), mebibytes (MiB)... +A kibibyte is equal to 1024 bytes, and a mebibyte is equal to 1024 kibibytes. + +.SH FILE +.IR "/proc/fs/cifs/Stats " "contains CIFS statistics." + +.SH AUTHORS +Written by Ivana Varekova (varekova <at> redhat.com) +.br +Maintained by Sebastien Godard (sysstat <at> orange.fr) + +.SH SEE ALSO +.BR "sar" "(1), " "pidstat" "(1), " "mpstat" "(1), " "vmstat" "(8), " "iostat" "(1)," +.BR "tapestat" "(1), " "nfsiostat" "(1)" + +.I https://github.com/sysstat/sysstat +.br +.I https://sysstat.github.io/ |