23e0df2
=head1 NAME
23e0df2
23e0df2
processcsv.py - process virt-top CSV files
23e0df2
23e0df2
=head1 SUMMARY
23e0df2
23e0df2
 virt-top --csv data.csv
23e0df2
 processcsv.py < data.csv
23e0df2
23e0df2
=head1 DESCRIPTION
23e0df2
23e0df2
virt-top is a L<top(1)>-like utility for showing stats of virtualized
23e0df2
domains.
23e0df2
23e0df2
processcsv.py is a simple Python script that post-processes the output
23e0df2
of C<virt-top --csv>.
23e0df2
23e0df2
It is used like this:
23e0df2
23e0df2
 virt-top --csv data.csv
23e0df2
 processcsv.py < data.csv
23e0df2
23e0df2
The second command will B<overwrite> the following files in the
23e0df2
current directory:
23e0df2
23e0df2
=over 4
23e0df2
23e0df2
=item C<global.csv>
23e0df2
23e0df2
This contains the global (host) statistics columns from the CSV file.
23e0df2
23e0df2
=item C<domainI<NN>.csv> (multiple files)
23e0df2
23e0df2
For each libvirt domain ID I<NN>, a file is created containing
23e0df2
the per-domain statistics from the CSV file.
23e0df2
23e0df2
=back
23e0df2
23e0df2
=head1 SEE ALSO
23e0df2
23e0df2
L<virt-top(1)>
23e0df2
23e0df2
=head1 AUTHORS
23e0df2
23e0df2
Richard W.M. Jones <rjones @ redhat . com>
23e0df2
23e0df2
=head1 COPYRIGHT
23e0df2
23e0df2
(C) Copyright 2007-2012 Red Hat Inc., Richard W.M. Jones
23e0df2
http://libvirt.org/
23e0df2
23e0df2
This program is free software; you can redistribute it and/or modify
23e0df2
it under the terms of the GNU General Public License as published by
23e0df2
the Free Software Foundation; either version 2 of the License, or
23e0df2
(at your option) any later version.
23e0df2
23e0df2
This program is distributed in the hope that it will be useful,
23e0df2
but WITHOUT ANY WARRANTY; without even the implied warranty of
23e0df2
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23e0df2
GNU General Public License for more details.
23e0df2
23e0df2
You should have received a copy of the GNU General Public License
23e0df2
along with this program; if not, write to the Free Software
23e0df2
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.