[BACK]Return to systat.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / systat

Annotation of src/usr.bin/systat/systat.1, Revision 1.104

1.104   ! martijn     1: .\"    $OpenBSD: systat.1,v 1.103 2018/02/08 07:00:33 martijn Exp $
1.2       deraadt     2: .\"    $NetBSD: systat.1,v 1.6 1996/05/10 23:16:39 thorpej Exp $
1.1       deraadt     3: .\"
                      4: .\" Copyright (c) 1985, 1990, 1993
                      5: .\"    The Regents of the University of California.  All rights reserved.
                      6: .\"
                      7: .\" Redistribution and use in source and binary forms, with or without
                      8: .\" modification, are permitted provided that the following conditions
                      9: .\" are met:
                     10: .\" 1. Redistributions of source code must retain the above copyright
                     11: .\"    notice, this list of conditions and the following disclaimer.
                     12: .\" 2. Redistributions in binary form must reproduce the above copyright
                     13: .\"    notice, this list of conditions and the following disclaimer in the
                     14: .\"    documentation and/or other materials provided with the distribution.
1.28      millert    15: .\" 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    16: .\"    may be used to endorse or promote products derived from this software
                     17: .\"    without specific prior written permission.
                     18: .\"
                     19: .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     20: .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     21: .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     22: .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     23: .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     24: .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     25: .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     26: .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     27: .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     28: .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     29: .\" SUCH DAMAGE.
                     30: .\"
                     31: .\"    @(#)systat.1    8.2 (Berkeley) 12/30/93
                     32: .\"
1.104   ! martijn    33: .Dd $Mdocdate: February 8 2018 $
1.1       deraadt    34: .Dt SYSTAT 1
1.12      aaron      35: .Os
1.1       deraadt    36: .Sh NAME
                     37: .Nm systat
1.41      jmc        38: .Nd display system statistics
1.1       deraadt    39: .Sh SYNOPSIS
                     40: .Nm systat
1.96      reyk       41: .Op Fl aBbiNn
1.62      matthieu   42: .Op Fl d Ar count
                     43: .Op Fl s Ar delay
                     44: .Op Fl w Ar width
                     45: .Op Ar view
                     46: .Op Ar delay
1.1       deraadt    47: .Sh DESCRIPTION
1.13      aaron      48: .Nm
1.73      jmc        49: displays various system statistics in a screen-oriented fashion
                     50: using the
                     51: .Xr curses 3
                     52: screen display library.
1.1       deraadt    53: .Pp
                     54: While
1.13      aaron      55: .Nm
1.86      lum        56: is running, the screen is divided into different areas.
                     57: The top line displays the current number of users, the
                     58: three system load average figures over the last 1, 5, and
                     59: 15 minute intervals, and the system time.
1.73      jmc        60: The bottom line of the screen is reserved for
                     61: user input and error messages.
                     62: The information displayed in the rest of the screen
                     63: comprises a
                     64: .Em view ,
                     65: and is the main interface for
1.76      jmc        66: displaying different types of system statistics.
1.73      jmc        67: The
                     68: .Ic vmstat
                     69: view is the default.
1.77      jmc        70: .Pp
                     71: Certain information may be discarded when the screen size is
                     72: insufficient for display.
                     73: For example, on a machine with 10 drives the
                     74: .Ic iostat
                     75: bar graph displays only 3 drives on a 24 line terminal.
1.76      jmc        76: .\".Pp
                     77: .\"Input is interpreted at two different levels.
                     78: .\"A
                     79: .\".Dq global
                     80: .\"command interpreter processes all keyboard input.
                     81: .\"If this command interpreter fails to recognize a command, the
                     82: .\"input line is passed to a per-display command interpreter.
                     83: .\"This allows each display to have certain display-specific commands.
1.1       deraadt    84: .Pp
1.16      aaron      85: The options are as follows:
1.62      matthieu   86: .Bl -tag -width Ds
1.64      jmc        87: .It Fl a
1.62      matthieu   88: Display all lines.
1.96      reyk       89: .It Fl B
                     90: Raw, non-interactive mode.
                     91: The default is to exit after two screen updates,
                     92: with statistics only ever displayed once.
                     93: Useful for views such as
                     94: .Ic cpu ,
                     95: where initial calculations are useless.
1.62      matthieu   96: .It Fl b
1.88      lum        97: Raw, non-interactive mode.
1.96      reyk       98: The default is to exit after one screen update,
                     99: with statistics displayed every update.
1.62      matthieu  100: .It Fl d Ar count
                    101: Exit after
                    102: .Ar count
                    103: screen updates.
                    104: .It Fl i
                    105: Interactive mode.
1.81      sthen     106: .It Fl N
                    107: Resolve network addresses to names.
                    108: This is the opposite of the
                    109: .Fl n
                    110: option.
1.34      itojun    111: .It Fl n
1.73      jmc       112: Do not try to reverse map IP addresses.
1.81      sthen     113: This is the default.
1.62      matthieu  114: .It Fl s Ar delay
1.31      jmc       115: Specifies the screen refresh time interval in seconds.
1.62      matthieu  116: This option is overridden by the final
1.64      jmc       117: .Ar delay
1.73      jmc       118: argument, if given.
1.31      jmc       119: The default interval is 5 seconds.
1.62      matthieu  120: .It Fl w Ar width
1.94      okan      121: Specifies the maximum width of the output in raw, non-interactive mode.
1.62      matthieu  122: .It Ar view
1.1       deraadt   123: The
1.62      matthieu  124: .Ar view
1.2       deraadt   125: argument expects to be one of:
1.62      matthieu  126: .Ic vmstat ,
1.1       deraadt   127: .Ic pigs ,
1.62      matthieu  128: .Ic ifstat ,
1.1       deraadt   129: .Ic iostat ,
1.49      deraadt   130: .Ic sensors ,
1.1       deraadt   131: .Ic mbufs ,
1.62      matthieu  132: .Ic netstat ,
                    133: .Ic swap ,
                    134: .Ic states ,
                    135: .Ic rules ,
1.68      canacar   136: .Ic queues ,
1.71      canacar   137: .Ic pf ,
                    138: .Ic pool ,
1.102     dlg       139: .Ic pcache ,
1.71      canacar   140: .Ic malloc ,
1.80      jmc       141: .Ic buckets ,
                    142: .Ic nfsclient ,
1.96      reyk      143: .Ic nfsserver ,
1.1       deraadt   144: or
1.96      reyk      145: .Ic cpu .
1.2       deraadt   146: These displays can also be requested interactively and are described in
1.1       deraadt   147: full detail below.
1.62      matthieu  148: .Ar view
1.53      jmc       149: may be abbreviated to the minimum unambiguous prefix;
                    150: for example,
1.50      jmc       151: .Dq io
                    152: for
                    153: .Dq iostat .
1.62      matthieu  154: .It Ar delay
1.1       deraadt   155: The
1.62      matthieu  156: .Ar delay
1.73      jmc       157: argument specifies the screen refresh time interval in seconds.
                    158: This is provided for backwards compatibility, and overrides any
1.31      jmc       159: interval specified with the
1.73      jmc       160: .Fl s
1.2       deraadt   161: flag.
1.31      jmc       162: The default interval is 5 seconds.
1.1       deraadt   163: .El
                    164: .Pp
                    165: Certain characters cause immediate action by
1.61      jmc       166: .Nm .
1.63      sobrado   167: These are:
1.1       deraadt   168: .Bl -tag -width Fl
                    169: .It Ic \&:
                    170: Move the cursor to the command line and interpret the input
1.16      aaron     171: line typed as a command.
                    172: While entering a command the
1.1       deraadt   173: current character erase, word erase, and line kill characters
                    174: may be used.
1.69      canacar   175: .It Ic o
                    176: Select the next ordering which sorts the rows according to a
1.70      jmc       177: combination of columns.
                    178: Available orderings depend on the view.
                    179: Not all views support orderings.
1.66      canacar   180: .It Ic p
                    181: Pause
                    182: .Nm .
1.59      jmc       183: .It Ic q
1.73      jmc       184: Quit
1.66      canacar   185: .Nm .
1.69      canacar   186: .It Ic r
                    187: Reverse the selected ordering if supported by the view.
1.91      mpf       188: .It Ic \&,
                    189: Print numbers with thousand separators, where applicable.
1.100     bentley   190: .It Ic ^A | Aq Ic Home
1.66      canacar   191: Jump to the beginning of the current view.
1.100     bentley   192: .It Ic ^B | Aq Ic right arrow
1.84      jmc       193: Select the previous view.
1.100     bentley   194: .It Ic ^E | Aq Ic End
1.66      canacar   195: Jump to the end of the current view.
1.100     bentley   196: .It Ic ^F | Aq Ic left arrow
1.66      canacar   197: Select the next view.
                    198: .It Ic ^G
                    199: Print the name of the current
1.73      jmc       200: view being shown and the refresh interval.
1.66      canacar   201: .It Ic ^L
                    202: Refresh the screen.
1.100     bentley   203: .It Ic ^N | Aq Ic down arrow
1.66      canacar   204: Scroll current view down by one line.
1.100     bentley   205: .It Ic ^P | Aq Ic up arrow
1.66      canacar   206: Scroll current view up by one line.
1.100     bentley   207: .It Ic ^V | Aq Ic Page Down
1.66      canacar   208: Scroll current view down by one page.
1.100     bentley   209: .It Ic Alt-V | Aq Ic Page Up
1.66      canacar   210: Scroll current view up by one page.
                    211: .It Ic ^Z
                    212: Suspend
1.59      jmc       213: .Nm .
1.1       deraadt   214: .El
                    215: .Pp
1.13      aaron     216: The following commands are interpreted by the
                    217: .Dq global
1.1       deraadt   218: command interpreter.
                    219: .Bl -tag -width Fl
                    220: .It Ic help
1.73      jmc       221: Print the names of the available views on the command line.
1.103     martijn   222: .It Ic order
                    223: Print the names of the available orderings on the command line.
1.52      jmc       224: .It Ic quit
1.73      jmc       225: Quit
1.61      jmc       226: .Nm .
1.52      jmc       227: (This may be abbreviated to
                    228: .Ic q . )
1.1       deraadt   229: .It Ic stop
                    230: Stop refreshing the screen.
                    231: .It Xo
                    232: .Op Ic start
                    233: .Op Ar number
                    234: .Xc
1.16      aaron     235: Start (continue) refreshing the screen.
                    236: If a second, numeric,
1.1       deraadt   237: argument is provided it is interpreted as a refresh interval
                    238: (in seconds).
                    239: Supplying only a number will set the refresh interval to this
                    240: value.
                    241: .El
                    242: .Pp
1.73      jmc       243: .Ar view
1.53      jmc       244: may be abbreviated to the minimum unambiguous prefix.
1.73      jmc       245: The available views are:
1.52      jmc       246: .Bl -tag -width "netstatXXX"
1.71      canacar   247: .It Ic buckets
                    248: Display kernel
                    249: .Xr malloc 9
                    250: bucket statistics similar to the output of
                    251: .Cm vmstat Fl m .
1.96      reyk      252: .It Ic cpu
                    253: Display information about the average usage of each CPU,
                    254: similar to the output provided by
                    255: .Xr top 1 .
1.52      jmc       256: .It Ic ifstat
1.73      jmc       257: Display interface statistics.
1.52      jmc       258: The
                    259: .Dq State
                    260: column has the format
                    261: .Sm off
                    262: .Xo
1.100     bentley   263: .Cm up | dn
                    264: .Bq : Cm U | D .
1.52      jmc       265: .Xc
                    266: .Sm on
                    267: .Sq up
                    268: and
                    269: .Sq dn
                    270: represent whether the interface is up or down.
                    271: .Sq U
                    272: and
                    273: .Sq D
                    274: represent whether the interface is connected or not;
                    275: in the case of
                    276: .Xr carp 4
                    277: interfaces, whether the interface is in master or backup state, respectively.
1.92      lum       278: .Pp
1.91      mpf       279: The character
                    280: .Ic B
                    281: changes the counter view between bytes and bits.
1.92      lum       282: Pressing
                    283: .Ic b
                    284: displays statistics as calculated from boot time.
                    285: .Ic r
                    286: changes the counters to show their totals as calculated
                    287: between display refreshes.
                    288: .Ic t
                    289: changes the counters to show the average per second over
                    290: the display refresh interval;
                    291: this is the default.
1.52      jmc       292: .It Ic iostat
1.73      jmc       293: Display statistics about disk throughput.
1.52      jmc       294: Statistics
                    295: on disk throughput show, for each drive, data transferred in kilobytes,
                    296: number of disk transactions performed, and time spent in disk accesses
1.56      otto      297: (in fractions of a second).
1.71      canacar   298: .It Ic malloc
                    299: Display kernel
                    300: .Xr malloc 9
                    301: type statistics similar to the output of
                    302: .Cm vmstat Fl m .
                    303: Available orderings are:
                    304: .Ic name ,
                    305: .Ic inuse ,
                    306: .Ic memuse ,
                    307: and
                    308: .Ic requests .
1.72      jmc       309: .It Ic mbufs
1.78      canacar   310: Display mbuf usage information from kernel pools
                    311: and mbuf cluster pool statistics of each network interface.
1.52      jmc       312: .It Ic netstat
1.73      jmc       313: Display network connections.
1.93      okan      314: Each address
                    315: is displayed numerically in the format
                    316: .Dq host:port .
1.52      jmc       317: By default, network servers awaiting requests are not displayed.
1.93      okan      318: It is also possible to have addresses displayed symbolically,
                    319: when possible, and limit the display to a set of protocols
                    320: (the minimum unambiguous prefix may be supplied):
                    321: .Bl -tag -width Ar
                    322: .It Cm all
                    323: Toggle the displaying of server processes awaiting requests (this
                    324: is the equivalent of the
                    325: .Fl a
                    326: flag to
                    327: .Xr netstat 1 ) .
                    328: .It Cm names
                    329: Display network addresses symbolically.
                    330: .It Cm numbers
                    331: Display network addresses numerically.
                    332: .It Cm reset
                    333: Reset matching mechanisms to the default.
1.76      jmc       334: .\".It Cm show Oo
1.100     bentley   335: .\".Ar protocols | ports | hosts
1.76      jmc       336: .\".Oc
                    337: .\"Show, on the command line, the currently selected protocols,
                    338: .\"hosts, and ports.
                    339: .\"Protocols, hosts and ports which are being ignored are prefixed with a
                    340: .\".Ql \&! .
                    341: .\"If an argument is supplied to
                    342: .\".Cm show ,
                    343: .\"then only the requested information will be displayed.
1.101     claudio   344: .It Cm tcp | udp | other
1.93      okan      345: Display only network connections using the indicated protocol.
                    346: .El
1.79      jasper    347: .It Ic nfsclient
1.80      jmc       348: Display statistics about NFS client activity.
1.84      jmc       349: Output resembles
1.79      jasper    350: .Cm nfsstat Fl c .
                    351: .It Ic nfsserver
1.80      jmc       352: Display statistics about NFS server activity.
1.84      jmc       353: Output resembles
1.79      jasper    354: .Cm nfsstat Fl s .
1.62      matthieu  355: .It Ic pf
1.64      jmc       356: Display filter information about
1.62      matthieu  357: .Xr pf 4 ,
                    358: similar to the output of
1.64      jmc       359: .Cm pfctl Fl s Cm info
1.62      matthieu  360: option.
1.1       deraadt   361: .It Ic pigs
1.73      jmc       362: Display those processes resident in main
1.1       deraadt   363: memory and getting the
1.73      jmc       364: largest portion of the processor.
1.1       deraadt   365: When less than 100% of the
                    366: processor is scheduled to user processes, the remaining time
1.13      aaron     367: is accounted to the
                    368: .Dq idle
                    369: process.
1.68      canacar   370: .It Ic pool
                    371: Display kernel
                    372: .Xr pool 9
                    373: statistics similar to the output of
                    374: .Cm vmstat Fl m .
1.69      canacar   375: Available orderings are:
1.75      canacar   376: .Ic name ,
                    377: .Ic requests ,
1.76      jmc       378: .Ic size ,
1.69      canacar   379: and
1.75      canacar   380: .Ic number of pages .
1.98      mpi       381: .Pp
                    382: By default only the statistics of active pools are displayed but pressing
                    383: .Ic A
                    384: changes the view to show all of them.
1.102     dlg       385: .It Ic pcache
                    386: Display kernel
                    387: .Xr pool 9
                    388: per CPU cache statistics.
1.104   ! martijn   389: Ordering is available on all columns.
1.62      matthieu  390: .It Ic queues
1.97      henning   391: Display statistics about the active queues,
                    392: similar to the output of
1.62      matthieu  393: .Cm pfctl Fl s Cm queue .
                    394: .It Ic rules
1.64      jmc       395: Display pf rules statistics, similar to the output of
1.62      matthieu  396: .Cm pfctl Fl s Cm rules .
1.52      jmc       397: .It Ic sensors
1.73      jmc       398: Display the current values of available hardware sensors,
1.52      jmc       399: in a format similar to that of
                    400: .Xr sysctl 8 .
1.62      matthieu  401: .It Ic states
1.64      jmc       402: Display pf states statistics, similar to the output of
1.62      matthieu  403: .Cm pfctl Fl s Cm states .
1.69      canacar   404: Available orderings are:
                    405: .Ic none ,
                    406: .Ic bytes ,
                    407: .Ic expiry ,
                    408: .Ic packets ,
                    409: .Ic age ,
                    410: .Ic source address ,
                    411: .Ic source port ,
                    412: .Ic destination address ,
                    413: .Ic destination port ,
                    414: .Ic rate ,
                    415: and
                    416: .Ic peak
                    417: columns.
1.1       deraadt   418: .It Ic swap
1.12      aaron     419: Show information about swap space usage on all the
1.1       deraadt   420: swap areas compiled into the kernel.
                    421: The first column is the device name of the partition.
                    422: The next column is the total space available in the partition.
1.12      aaron     423: The
1.1       deraadt   424: .Ar Used
                    425: column indicates the total blocks used so far;
                    426: the graph shows the percentage of space in use on each partition.
1.8       aaron     427: If there is more than one swap partition in use,
1.1       deraadt   428: a total line is also shown.
1.8       aaron     429: Areas known to the kernel but not in use are shown as not available.
1.1       deraadt   430: .It Ic vmstat
                    431: Take over the entire display and show a (rather crowded) compendium
                    432: of statistics related to virtual memory usage, process scheduling,
1.84      jmc       433: device interrupts, system name translation caching, disk I/O, etc.
1.73      jmc       434: This view is the default.
1.1       deraadt   435: .Pp
1.86      lum       436: Below the top line are statistics on memory utilization.
1.1       deraadt   437: The first row of the table reports memory usage only among
1.8       aaron     438: active processes, that is, processes that have run in the previous
1.1       deraadt   439: twenty seconds.
                    440: The second row reports on memory usage of all processes.
1.47      millert   441: The first column reports on the amount of physical memory
1.1       deraadt   442: claimed by processes.
1.29      jmc       443: The second column reports the same figure for
1.47      millert   444: virtual memory, that is, the amount of memory that would be
                    445: needed if all processes were resident at the same time.
                    446: Finally, the last column shows the amount of physical memory
1.1       deraadt   447: on the free list.
                    448: .Pp
1.5       flipk     449: Below the memory display is a list of the average number of processes
1.13      aaron     450: (over the last refresh interval) that are runnable
                    451: .Pq Sq r ,
                    452: in disk wait other than paging
                    453: .Pq Sq d ,
                    454: sleeping
                    455: .Pq Sq s ,
                    456: and swapped out but desiring to run
                    457: .Pq Sq w .
1.1       deraadt   458: Below the queue length listing is a numerical listing and
                    459: a bar graph showing the amount of
1.40      dlg       460: interrupt (shown as
1.100     bentley   461: .Ql | ) ,
1.16      aaron     462: system (shown as
                    463: .Ql = ) ,
                    464: user (shown as
1.100     bentley   465: .Ql > ) ,
1.16      aaron     466: nice (shown as
                    467: .Ql - ) ,
                    468: and idle time (shown as
1.29      jmc       469: .Ql \ \& ) .
1.1       deraadt   470: .Pp
1.12      aaron     471: To the right of the Proc display are statistics about
1.16      aaron     472: Context switches
                    473: .Pq Dq Csw ,
                    474: Traps
                    475: .Pq Dq Trp ,
                    476: Syscalls
                    477: .Pq Dq Sys ,
                    478: Interrupts
                    479: .Pq Dq Int ,
                    480: Soft interrupts
                    481: .Pq Dq Sof ,
                    482: and Faults
                    483: .Pq Dq Flt
1.7       deraadt   484: which have occurred during the last refresh interval.
1.5       flipk     485: .Pp
1.83      jmc       486: Below the CPU usage graph are statistics on name translations.
1.1       deraadt   487: It lists the number of names translated in the previous interval,
                    488: the number and percentage of the translations that were
                    489: handled by the system wide name translation cache, and
                    490: the number and percentage of the translations that were
                    491: handled by the per process name translation cache.
                    492: .Pp
1.5       flipk     493: At the bottom left is the disk usage display.
                    494: It reports the number of seeks, transfers, number
                    495: of kilobyte blocks transferred per second averaged over the
1.90      lum       496: refresh period of the display, and
1.5       flipk     497: the time spent in disk accesses.
                    498: .Pp
1.1       deraadt   499: Under the date in the upper right hand quadrant are statistics
                    500: on paging and swapping activity.
                    501: The first two columns report the average number of pages
                    502: brought in and out per second over the last refresh interval
                    503: due to page faults and the paging daemon.
                    504: The third and fourth columns report the average number of pages
                    505: brought in and out per second over the last refresh interval
                    506: due to swap requests initiated by the scheduler.
                    507: The first row of the display shows the average
1.8       aaron     508: number of disk transfers per second over the last refresh interval.
                    509: The second row of the display shows the average
1.1       deraadt   510: number of pages transferred per second over the last refresh interval.
                    511: .Pp
                    512: Running down the right hand side of the display is a breakdown
                    513: of the interrupts being handled by the system.
                    514: At the top of the list is the total interrupts per second
                    515: over the time interval.
                    516: The rest of the column breaks down the total on a device
                    517: by device basis.
                    518: Only devices that have interrupted at least once since boot time are shown.
1.83      jmc       519: .Pp
1.89      lum       520: Below the Interrupts display are
                    521: the average number of input and output packets per second
                    522: for all interfaces over the last refresh interval.
1.5       flipk     523: .Pp
                    524: Below the SWAPPING display and slightly to the left of the Interrupts
1.18      aaron     525: display is a list of virtual memory statistics.
                    526: The abbreviations are:
1.36      jmc       527: .Pp
1.38      niallo    528: .Bl -tag -compact -width "kmapentXX" -offset indent
1.21      deraadt   529: .It forks
                    530: process forks
                    531: .It fkppw
                    532: forks where parent waits
                    533: .It fksvm
                    534: forks where vmspace is shared
                    535: .It pwait
                    536: fault had to wait on a page
                    537: .It relck
                    538: fault relock called
                    539: .It rlkok
                    540: fault relock is successful
                    541: .It noram
                    542: faults out of ram
                    543: .It ndcpy
                    544: number of times fault clears "need copy"
                    545: .It fltcp
                    546: number of times fault promotes with copy
                    547: .It zfod
                    548: fault promotes with zerofill
1.5       flipk     549: .It cow
1.21      deraadt   550: number of times fault anon cow
                    551: .It fmin
                    552: min number of free pages
                    553: .It ftarg
                    554: target number of free pages
                    555: .It itarg
                    556: target number of inactive pages
                    557: .It wired
                    558: wired pages
1.25      deraadt   559: .It pdfre
1.21      deraadt   560: pages daemon freed since boot
                    561: .It pdscn
                    562: pages daemon scanned since boot
1.38      niallo    563: .It pzidle
                    564: number of zeroed pages
                    565: .It kmapent
                    566: number of kernel map entries
1.5       flipk     567: .El
1.35      markus    568: .El
1.74      jmc       569: .\".Pp
                    570: .\"The following commands are specific to the
                    571: .\".Ic vmstat
                    572: .\"and
                    573: .\".Ic ifstat
                    574: .\"views; the minimum unambiguous prefix may be supplied.
                    575: .\".Pp
                    576: .\".Bl -tag -width Ds -compact
                    577: .\".It Cm boot
                    578: .\"Display cumulative statistics since the system was booted.
                    579: .\".It Cm run
                    580: .\"Display statistics as a running total from the point this
                    581: .\"command is given.
                    582: .\".It Cm time
                    583: .\"Display statistics averaged over the refresh interval (the default).
                    584: .\".It Cm zero
                    585: .\"Reset running statistics to zero.
                    586: .\".El
                    587: .\".Pp
                    588: .\"The following commands are common to each view which shows
                    589: .\"information about disk drives.
                    590: .\"These commands are used to select a set of drives to report on,
                    591: .\"should a system have more drives configured
                    592: .\"than can normally be displayed on the screen.
                    593: .\".Pp
                    594: .\".Bl -tag -width Tx -compact
                    595: .\".It Cm display Op Ar drives
                    596: .\"Display information about the drives indicated.
                    597: .\"Multiple drives may be specified, separated by spaces.
                    598: .\".It Cm ignore Op Ar drives
                    599: .\"Do not display information about the drives indicated.
                    600: .\"Multiple drives may be specified, separated by spaces.
                    601: .\".El
1.1       deraadt   602: .Sh FILES
1.99      schwarze  603: .Bl -tag -width "/etc/servicesXXX" -compact
1.1       deraadt   604: .It Pa /etc/hosts
1.73      jmc       605: Host names.
1.62      matthieu  606: .It Pa /etc/pf.conf
1.73      jmc       607: .Xr pf 4
                    608: configuration.
1.1       deraadt   609: .It Pa /etc/services
1.73      jmc       610: Port names.
1.1       deraadt   611: .El
1.15      aaron     612: .Sh SEE ALSO
1.85      jmc       613: .Xr fstat 1 ,
1.15      aaron     614: .Xr kill 1 ,
1.37      jmc       615: .Xr netstat 1 ,
1.79      jasper    616: .Xr nfsstat 1 ,
1.15      aaron     617: .Xr ps 1 ,
                    618: .Xr top 1 ,
1.37      jmc       619: .Xr iostat 8 ,
1.62      matthieu  620: .Xr pfctl 8 ,
1.37      jmc       621: .Xr pstat 8 ,
                    622: .Xr renice 8 ,
1.48      deanna    623: .Xr sysctl 8 ,
1.37      jmc       624: .Xr vmstat 8
1.1       deraadt   625: .Sh HISTORY
                    626: The
1.13      aaron     627: .Nm
1.73      jmc       628: program first appeared in
1.1       deraadt   629: .Bx 4.3 .
                    630: .Sh BUGS
                    631: Certain displays presume a minimum of 80 characters per line.
                    632: The
                    633: .Ic vmstat
                    634: display looks out of place because it is (it was added in as
                    635: a separate display rather than created as a new program).