This repository was archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDiskSpeedTest.json
More file actions
47 lines (47 loc) · 1.42 KB
/
Copy pathDiskSpeedTest.json
File metadata and controls
47 lines (47 loc) · 1.42 KB
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
44
45
46
47
{
// Add a timestamp to the result output filenames
"timestampresultfile": false,
// DiskSpeedTest config
"diskspeedtest": {
// Enable this test
"enabled": false,
// Output CSV file
"resultfile": "DiskSpeedResult.csv",
// Test targets, full path and filename, directory must exist, file will be created
"targets": [
"C:\\Temp\\DiskSpeedData.dat",
"\\\\Server\\Share\\DiskSpeedData.dat"
],
// File size of test target in bytes
"targetsize": 68719476736,
// Block size in bytes, automatically generated by doubling the beginning value until the end size is reached
"blocksizebegin": 4096,
"blocksizeend": 2097152,
// Warmup time in seconds, do IO but don't use the values in computed results
"warmuptime": 30,
// Test time in seconds
"testtime": 120,
// Time to rest between test runs
"resttime": 5
},
// FileIterationTest config
"fileiterationtest": {
// Enable this test
"enabled": true,
// Output CSV file
"resultfile": "FileIterationResult.csv",
// Test targets, full path, directory will be created, contents will be deleted
"targets": [
"C:\\Temp\\FileIteration",
"\\\\Server\\Share\\FileIteration"
],
// Folder depth for recursion
"folderdepth": 2,
// Folders per folder
"foldersperfolder": 2,
// Files per folder
"filesperfolder": 1000,
// File size in bytes
"filesize": 65536
}
}