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.98)
29
30 1 bonnie_version
31 (1.98)
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 seeks
48 Number of seeks for random seek test
49
50 8 seek_proc_count
51 Number of seeker processes for the random seek test
52
53 9 putc,putc_cpu
54 Results for writing a character at a time K/s,%CPU
55
56 11 put_block,put_block_cpu
57 Results for writing a block at a time K/s,%CPU
58
59 13 rewrite,rewrite_cpu
60 Results for reading and re-writing a block at a time K/s,%CPU
61
62 15 getc,getc_cpu
63 Results for reading a character at a time K/s,%CPU
64
65 17 get_block,get_block_cpu
66 Results for reading a block at a time K/s,%CPU
67
68 19 seeks,seeks_cpu
69 Results for the seek test seeks/s,%CPU
70
71 21 num_files
72 Number of files for file-creation tests (units of 1024 files)
73
74 22 max_size
75 The maximum size of files for file-creation tests. Or the type
76 of files for links.
77
78 23 min_size
79 The minimum size of files for file-creation tests.
80
81 24 num_dirs
82 The number of directories for creation of files in multiple
83 directories.
84
85 25 file_chunk_size
86 The size of blocks for writing multiple files.
87
88 26 seq_create,seq_create_cpu
89 Rate of creating files sequentially files/s,%CPU
90
91 28 seq_stat,seq_stat_cpu
92 Rate of reading/stating files sequentially files/s,%CPU
93
94 30 seq_del,seq_del_cpu
95 Rate of deleting files sequentially files/s,%CPU
96
97 32 ran_create,ran_create_cpu
98 Rate of creating files in random order files/s,%CPU
99
100 34 ran_stat,ran_stat_cpu
101 Rate of deleting files in random order files/s,%CPU
102
103 36 ran_del,ran_del_cpu
104 Rate of deleting files in random order files/s,%CPU
105
106 38 putc_latency,put_block_latency,rewrite_latency
107 Latency (maximum amount of time for a single operation) for
108 putc, put_block, and reqrite
109
110 41 getc_latency,get_block_latency,seeks_latency
111 Latency for getc, get_block, and seeks
112
113 44 seq_create_latency,seq_stat_latency,seq_del_latency
114 Latency for seq_create, seq_stat, and seq_del
115
116 47 ran_create_latency,ran_stat_latency,ran_del_latency
117 Latency for ran_create, ran_stat, and ran_del
118
119 A string that starts with '#' is a comment.
120
121
123 These programs were written by Russell Coker <russell@coker.com.au>.
124 May be freely used and distributed without restriction.
125
126
127
128 bon_csv2html(1)