1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
.TH "xrestop" 1
.SH NAME
xrestop \- monitor server resources used by X11 clients
.SH SYNOPSIS
.B xrestop \-\-help
.br
.B xrestop
[ \fB\-\-display\fP display ] [ \fB\-\-batch\fP ] [ \fB\-\-delay\-time\fP seconds ] [ \fB\-\-max-samples\fP count ]
.SH DESCRIPTION
Xrestop uses the X\-Resource extension to provide 'top'\-like statistics of
each connected X11 client's server\-side resource usage. It is intended
as a developer tool to aid more efficient server resource usage and
debug server\-side resource leakage.
.SH OPTIONS
.TP
\fB\-\-help\fP
Show usage.
.TP
\fB\-\-display, \-d\fP <display>
Specify X11 display to monitor.
.TP
\fB\-\-delay-time, \-t\fP <seconds>
Time in seconds between taking samples. Default is 2 seconds.
.TP
\fB\-\-batch, \-b\fP
Run in batch mode. Slightly more detailed information is streamed to
stdout rather than the usual curses interface. This mode is intended
for debugging a single client with something like
.br
xrestop \-b | grep \-A 15 appname
.TP
\fB\-\-max\-samples, \-m\fP <count>
Specify number of times to gather and display results.
Default is continuous, which can be set with 0 (zero).
.br
.SH "SEE ALSO"
.BR X (7),
.BR top (1) .
.SH BUGS
The X\-Resource extension is very new and may not be 100% accurate.
.SH AUTHOR
.B xrestop
was written by Matthew Allum <mallum@handhelds.org>.
|