-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbenchy_env
52 lines (37 loc) · 1.65 KB
/
benchy_env
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
48
49
50
51
52
# Environmental file for benchy
# Usage: Uncomment a function that you want to enable
# Benchy will automatically detect any declared variable here
# -------------------------------------------------- #
# Keep benchy related files after successful run (default: Remove)
# arg_keep_file="true" # Equal to -k
# Store result as json formatted output
# arg_json="true" # Equal to -j
# Enable output coloring (require perl)
# Replace ARG with one of following: yes, no, force
# arg_colorize="ARG" # Equal to -c ARG or --color=ARG
# Bench multiple drives
# disk_list="ARG" # Equal to -f ARG or --disk=ARG
# Enable region based network test, otherwise will use mixed source
# arg_use_region="true" # Equal to -m
# Utilize ONLY geekbench 4 instead of 5
# arg_use_gb4="true" # Equal to -4
# Utilize both geekbench 4 and 5
# arg_use_gb45="true" # Equal to -q
# Skip network benchmark
# arg_skip_network="true" # Equal to -n
# Skip disk benchmark
# arg_skip_disk="true" # Equal to -d
# Skip geekbench test
# arg_skip_gb="true" # Equal to -g
# Perform speedtest instead of iperf3
# arg_prefer_speedtest="true" # Equal to -s
# Specify region for network test (Valid value: Asia, Africa, Europe, North America, South America, Oceania, Mixed)
# continent="" # Equal to -r {as,af,eu,na,sa,oc,mix} or --region={as,af,eu,na,sa,oc,mix}
# Output result to file located in current directory
# arg_output_file="true" # Equal to -o
# Specify location for output
# directory="/path/to/file" # Equal to -o /path/to/file or --output /path/to/file
# -------------------------------------------------- #
# DO NOT UNCOMMENT VARIABLE BELOW
this_instance_use_env="true"
# DO NOT UNCOMMENT VARIABLE ABOVE