Cleaned up spec file including change of group, removal of extraneous setup arguments...
[external/bootchart.git] / bootchartd.conf.example
1 #
2 # bootchartd configuration - /etc/bootchartd.conf
3 #
4
5 #
6 # How long do I make my graph?
7 #
8 # Preferably, you record enough time so that the entire boot process
9 # is recorded in the bootchart, plus some extra. The default recording
10 # samples/freq is 20secs.  So, if you want to record 30secs instead of
11 # 20secs, you'll have to increase the amount of samples to 30*25 = 750.
12
13
14 #
15 # samples - how many samples total to record
16 #
17 #samples=500
18
19 #
20 # freq - how many samples per second to record
21 #
22 #freq=25
23
24 #
25 # rel - do not graph anything before the first sample is recorded.
26 #
27 # This is useful when running bootchart if the system is already up for
28 # a long time, in which case the monotonic clock will be so large that
29 # the graph would be unworkably large, as by default the graph starts
30 # at 0 (kernel boot start).  Set this to 1 if you run bootchart from
31 # the cmdline.
32 #
33 #rel=0
34
35 #
36 # filter
37 #
38 # filter out insignificant processes from the process chart. This makes
39 # the process chart a lot more compact, but you'll not be able to see
40 # shortlived processes or processes that don't actually use any
41 # measurable (< 0.001sec) CPU time.
42 #
43 #filter=1
44
45 #
46 # alternative output folder
47 #
48 #output=<folder name, defaults to /var/log>
49
50 #
51 # path to non-standard init
52 #
53 #init=/path/to/init
54
55 #
56 # PSS graph - memory usage graph
57 #
58 # Enabling this option will make bootchart log PSS usage from /proc/*/smaps
59 # for each process, which is highly CPU intensive. You're advised to
60 # lower the 'freq' value. Expect many dropped samples - PSS measurement
61 # can take up to 1sec of time on an average Atom platform.
62 #
63 #pss=0
64
65 #
66 # scale_x - horizontal graph scale
67 #
68 # Modifies the default horizontal (time) scale factor.  The number given
69 # specifies the amount of pixels that one second worth of time is wide
70 # in the graph. So, a higher value equals longer graph.
71 #
72 #scale_x=100
73
74 #
75 # scale_y - vertical graph scale
76 #
77 # Modifies the default vertical scale factor. The number given specifies
78 # the amount of pixels given in the graph to vertical aspects of the
79 # elements. In the PS graph, 16px equals scale_y=20. A higher value
80 # equals a taller graph.
81 #
82 #scale_y=20
83