forked from xrmx/bootchart
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbootchartd.conf
More file actions
28 lines (21 loc) · 853 Bytes
/
bootchartd.conf
File metadata and controls
28 lines (21 loc) · 853 Bytes
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
#
# Configuration for bootchartd, the bootchart logger script.
#
# Sampling frequency (samples / second)
SAMPLE_HZ=50
# Whether to enable and store BSD process accounting information. The
# kernel needs to be configured to enable v3 accounting
# (CONFIG_BSD_PROCESS_ACCT_V3). accton from the GNU accounting utilities
# is also required.
PROCESS_ACCOUNTING="yes"
# Tarball for the various boot log files
BOOTLOG_DEST=/var/log/bootchart.tgz
# Whether to automatically generate the boot chart once the boot logger
# completes. The boot chart will be generated in $AUTO_RENDER_DIR.
# Note that the bootchart package must be installed.
AUTO_RENDER="yes"
# Image format to use for the auto-generated boot chart
# (choose between png, svg and eps).
AUTO_RENDER_FORMAT="png"
# Output directory for auto-generated boot charts
AUTO_RENDER_DIR="/var/log"