1bon_csv2html(1) General Commands Manual bon_csv2html(1)
2
3
4
6 bon_csv2html program to convert CSV format Bonnie++ data to a HTML form
7 using tables suitable for display on a web page. NB Lynx can't display
8 this properly, and due to the size it probably requires 1024x768 moni‐
9 tor to display properly.
10
11 bon_csv2txt program to convert CSV format Bonnie++ data to plain-text
12 format suitable for pasting into an email or reading on a Braille dis‐
13 play.
14
15
17 They take CSV format (comma-delimited spreadsheet files AKA Comma
18 Seperated Values in MS land) data on standard input and produce HTML or
19 plain text on standard output respectively.
20
21
23 This is a list of the fields used in the CSV files format version 2.
24 Format version 1 was the type used in Bonnie++ < 1.90. Before each
25 field I list the field number as well as the name given in the heading
26
27 0 format_version
28 Version of the output format in use (1.96)
29
30 1 bonnie_version
31 (1.96)
32
33 2 name Machine Name
34
35 3 concurrency
36 The number of copies of each operation to be run at the same
37 time
38
39 4 seed Random number seed
40
41 5 file_size
42 Size in megs for the IO tests
43
44 6 chunk_size
45 Size of chunks in bytes
46
47 7 putc,putc_cpu
48 Results for writing a character at a time K/s,%CPU
49
50 9 put_block,put_block_cpu
51 Results for writing a block at a time K/s,%CPU
52
53 11 rewrite,rewrite_cpu
54 Results for reading and re-writing a block at a time K/s,%CPU
55
56 13 getc,getc_cpu
57 Results for reading a character at a time K/s,%CPU
58
59 15 get_block,get_block_cpu
60 Results for reading a block at a time K/s,%CPU
61
62 17 seeks,seeks_cpu
63 Results for the seek test seeks/s,%CPU
64
65 19 num_files
66 Number of files for file-creation tests (units of 1024 files)
67
68 20 max_size
69 The maximum size of files for file-creation tests. Or the type
70 of files for links.
71
72 21 min_size
73 The minimum size of files for file-creation tests.
74
75 22 num_dirs
76 The number of directories for creation of files in multiple
77 directories.
78
79 23 file_chunk_size
80 The size of blocks for writing multiple files.
81
82 24 seq_create,seq_create_cpu
83 Rate of creating files sequentially files/s,%CPU
84
85 26 seq_stat,seq_stat_cpu
86 Rate of reading/stating files sequentially files/s,%CPU
87
88 28 seq_del,seq_del_cpu
89 Rate of deleting files sequentially files/s,%CPU
90
91 30 ran_create,ran_create_cpu
92 Rate of creating files in random order files/s,%CPU
93
94 32 ran_stat,ran_stat_cpu
95 Rate of deleting files in random order files/s,%CPU
96
97 34 ran_del,ran_del_cpu
98 Rate of deleting files in random order files/s,%CPU
99
100 36 putc_latency,put_block_latency,rewrite_latency
101 Latency (maximum amount of time for a single operation) for
102 putc, put_block, and reqrite
103
104 39 getc_latency,get_block_latency,seeks_latency
105 Latency for getc, get_block, and seeks
106
107 42 seq_create_latency,seq_stat_latency,seq_del_latency
108 Latency for seq_create, seq_stat, and seq_del
109
110 45 ran_create_latency,ran_stat_latency,ran_del_latency
111 Latency for ran_create, ran_stat, and ran_del
112
113 A string that starts with '#' is a comment.
114
115
117 These programs were written by Russell Coker <russell@coker.com.au>.
118 May be freely used and distributed without restriction.
119
120
121
122 bon_csv2html(1)