-
Notifications
You must be signed in to change notification settings - Fork 89
/
bootchartd.conf
48 lines (41 loc) · 1.44 KB
/
bootchartd.conf
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
#
# Configuration for bootchartd, the bootchart logger script.
#
# Sampling frequency (samples / second)
SAMPLE_HZ=50
# 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"
# Optional: full path to a script to run after collecting data and auto-rendering
# if enabled (else you could render yourself there, or just rename the rendered
# output after date and time and archive it in a certain directory for
# later reference). Hint: in the script, you may source /etc/bootchartd.conf for
# being able to use the variables defined there in a flexible way, check the
# command-line options of pybootchargui and the bootchartd script itself as a
# source of inspiration;
CUSTOM_POST_CMD=""
# The processes we have to wait for
EXIT_PROC="compiz \
enlightenment \
fluxbox \
gnome-shell \
gnome-terminal \
icewm-session \
kdm_greet \
konsole \
ldm \
lightdm-gtk-greeter \
metacity \
mutter \
openbox \
sddm-helper \
xfwm4 \
xterm"