]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - usr.bin/ctlstat/ctlstat.8
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / usr.bin / ctlstat / ctlstat.8
1 .\" 
2 .\" Copyright (c) 2010 Silicon Graphics International Corp.
3 .\" All rights reserved.
4 .\" 
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions, and the following disclaimer,
10 .\"    without modification.
11 .\" 2. Redistributions in binary form must reproduce at minimum a disclaimer
12 .\"    substantially similar to the "NO WARRANTY" disclaimer below
13 .\"    ("Disclaimer") and any redistribution must be conditioned upon
14 .\"    including a substantially similar Disclaimer requirement for further
15 .\"    binary redistribution.
16 .\" 
17 .\" NO WARRANTY
18 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 .\" "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
21 .\" A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 .\" HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27 .\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGES.
29 .\" 
30 .\" ctlstat utility man page.
31 .\"
32 .\" Author: Ken Merry <ken@FreeBSD.org>
33 .\"
34 .\" $Id: //depot/users/kenm/FreeBSD-test2/usr.bin/ctlstat/ctlstat.8#2 $
35 .\" $FreeBSD$
36 .\"
37 .Dd September 21, 2015
38 .Dt CTLSTAT 8
39 .Os
40 .Sh NAME
41 .Nm ctlstat
42 .Nd CAM Target Layer statistics utility
43 .Sh SYNOPSIS
44 .Nm
45 .Op Fl t
46 .Op Fl c Ar count
47 .Op Fl C
48 .Op Fl d
49 .Op Fl D
50 .Op Fl j
51 .Op Fl l Ar lun
52 .Op Fl n Ar numdevs
53 .Op Fl p Ar port
54 .Op Fl w Ar wait
55 .Sh DESCRIPTION
56 The
57 .Nm
58 utility provides statistics information for the CAM Target Layer.
59 The first display (except for dump and JSON modes) shows average statistics
60 since system startup.
61 Subsequent displays show average statistics during the measurement
62 interval.
63 .Pp
64 The options are as follows:
65 .Bl -tag -width 10n
66 .It Fl t
67 Total mode.
68 This displays separate columns with the total read and write output,
69 and a combined total column that also includes non I/O operations.
70 .It Fl c Ar count
71 Display statistics this many times.
72 .It Fl C
73 Disable CPU statistics display.
74 .It Fl d
75 Display DMA operation time (latency) instead of overall I/O time (latency).
76 .It Fl D
77 Text dump mode.
78 Dump statistics every 30 seconds in a text format suitable for parsing.
79 No statistics are computed in this mode, only raw numbers are displayed.
80 .It Fl h
81 Suppress display of the header.
82 .It Fl j
83 JSON dump mode.
84 Dump statistics every 30 seconds in JavaScript Object Notation (JSON) format.
85 No statistics are computed in this mode, only raw numbers are displayed.
86 .It Fl l Ar lun
87 Request statistics for the specified LUN.
88 .It Fl n Ar numdevs
89 Display statistics for this many devices.
90 .It Fl p Ar port
91 Request statistics for the specified port.
92 .It Fl w Ar wait
93 Wait this many seconds in between displays.
94 If this option is not specified,
95 .Nm
96 defaults to a 1 second interval.
97 .El
98 .Sh EXAMPLES
99 .Dl ctlstat -t
100 .Pp
101 Display total statistics for the system with a one second interval.
102 .Pp
103 .Dl ctlstat -d -l 5 -C
104 .Pp
105 Display average DMA time for LUN 5 and omit CPU utilization.
106 .Pp
107 .Dl ctlstat -n 7 -w 10
108 .Pp
109 Display statistics for the first 7 LUNs, and display average statistics
110 every 10 seconds.
111 .Sh SEE ALSO
112 .Xr cam 3 ,
113 .Xr cam 4 ,
114 .Xr ctl 4 ,
115 .Xr xpt 4 ,
116 .Xr camcontrol 8 ,
117 .Xr ctladm 8 ,
118 .Xr ctld 8 ,
119 .Xr iostat 8
120 .Sh AUTHORS
121 .An Ken Merry Aq ken@FreeBSD.org
122 .An Will Andrews Aq will@FreeBSD.org