1PROCESSCSV.PY(1) Virtualization Support PROCESSCSV.PY(1)
2
3
4
6 processcsv.py - process virt-top CSV files
7
9 virt-top --csv data.csv
10 processcsv.py < data.csv
11
13 virt-top is a top(1)-like utility for showing stats of virtualized
14 domains.
15
16 processcsv.py is a simple Python script that post-processes the output
17 of "virt-top --csv".
18
19 It is used like this:
20
21 virt-top --csv data.csv
22 processcsv.py < data.csv
23
24 The second command will overwrite the following files in the current
25 directory:
26
27 "global.csv"
28 This contains the global (host) statistics columns from the CSV
29 file.
30
31 "domainNN.csv" (multiple files)
32 For each libvirt domain ID NN, a file is created containing the
33 per-domain statistics from the CSV file.
34
36 virt-top(1)
37
39 Richard W.M. Jones <rjones @ redhat . com>
40
42 (C) Copyright 2007-2012 Red Hat Inc., Richard W.M. Jones
43 http://libvirt.org/
44
45 This program is free software; you can redistribute it and/or modify it
46 under the terms of the GNU General Public License as published by the
47 Free Software Foundation; either version 2 of the License, or (at your
48 option) any later version.
49
50 This program is distributed in the hope that it will be useful, but
51 WITHOUT ANY WARRANTY; without even the implied warranty of
52 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
53 General Public License for more details.
54
55 You should have received a copy of the GNU General Public License along
56 with this program; if not, write to the Free Software Foundation, Inc.,
57 675 Mass Ave, Cambridge, MA 02139, USA.
58
59
60
61virt-top-1.0.4 2012-10-12 PROCESSCSV.PY(1)