192 |
- |
1 |
# Global tuned configuration file.
|
|
|
2 |
|
|
|
3 |
# Whether to use daemon. Without daemon it just applies tuning. It is
|
|
|
4 |
# not recommended, because many functions don't work without daemon,
|
|
|
5 |
# e.g. there will be no D-Bus, no rollback of settings, no hotplug,
|
|
|
6 |
# no dynamic tuning, ...
|
|
|
7 |
daemon = 1
|
|
|
8 |
|
|
|
9 |
# Dynamicaly tune devices, if disabled only static tuning will be used.
|
|
|
10 |
dynamic_tuning = 0
|
|
|
11 |
|
|
|
12 |
# How long to sleep before checking for events (in seconds)
|
|
|
13 |
# higher number means lower overhead but longer response time.
|
|
|
14 |
sleep_interval = 1
|
|
|
15 |
|
|
|
16 |
# Update interval for dynamic tunings (in seconds).
|
|
|
17 |
# It must be multiply of the sleep_interval.
|
|
|
18 |
update_interval = 10
|
|
|
19 |
|
|
|
20 |
# Recommend functionality, if disabled "recommend" command will be not
|
|
|
21 |
# available in CLI, daemon will not parse recommend.conf but will return
|
|
|
22 |
# one hardcoded profile (by default "balanced").
|
|
|
23 |
recommend_command = 1
|
|
|
24 |
|
|
|
25 |
# Whether to reapply sysctl from /run/sysctl.d/, /etc/sysctl.d/ and
|
|
|
26 |
# /etc/sysctl.conf. If enabled, these sysctls will be re-appliead
|
|
|
27 |
# after Tuned sysctls are applied, i.e. Tuned sysctls will not
|
|
|
28 |
# override user-provided system sysctls.
|
|
|
29 |
reapply_sysctl = 1
|
|
|
30 |
|
|
|
31 |
# Default priority assigned to instances
|
|
|
32 |
default_instance_priority = 0
|
|
|
33 |
|
|
|
34 |
# Udev buffer size
|
|
|
35 |
udev_buffer_size = 1MB
|
|
|
36 |
|
|
|
37 |
# Log file count
|
|
|
38 |
log_file_count = 2
|
|
|
39 |
|
|
|
40 |
# Log file max size
|
|
|
41 |
log_file_max_size = 1MB
|
|
|
42 |
|
|
|
43 |
# Preset system uname string for architecture specific tuning.
|
|
|
44 |
# It can be used to force tuning for specific architecture.
|
|
|
45 |
# If commented, "uname" will be called to fill its content.
|
|
|
46 |
# uname_string = x86_64
|
|
|
47 |
|
|
|
48 |
# Preset system cpuinfo string for architecture specific tuning.
|
|
|
49 |
# It can be used to force tuning for specific architecture.
|
|
|
50 |
# If commented, "/proc/cpuinfo" will be read to fill its content.
|
|
|
51 |
# cpuinfo_string = Intel
|