]> granicus.if.org Git - sysstat/blob - sysstat.sysconfig.in
Merge pull request #346 from Kwstubbs/Kwstubbs/add-codeql-workflow
[sysstat] / sysstat.sysconfig.in
1 # @PACKAGE_NAME@-@PACKAGE_VERSION@ configuration file.
2
3 # How long to keep log files (in days).
4 # If value is greater than 28, then use sadc's option -D to prevent older
5 # data files from being overwritten. See sadc(8) and sysstat(5) manual pages.
6 HISTORY=@HISTORY@
7
8 # Compress (using xz, gzip or bzip2) sa and sar files older than (in days):
9 COMPRESSAFTER=@COMPRESSAFTER@
10
11 # Parameters for the system activity data collector (see sadc manual page)
12 # which are used for the generation of log files.
13 SADC_OPTIONS="@COLLECT_ALL@ @SADC_OPT@"
14
15 # Directory where sa and sar files are saved. The directory must exist.
16 SA_DIR=@SA_DIR@
17
18 # Compression program to use.
19 ZIP="@ZIP@"
20
21 # By default sa2 script generates yesterday's summary, since the cron job
22 # usually runs right after midnight. If you want sa2 to generate the summary
23 # of the same day (for example when cron job runs at 23:53) set this variable.
24 #YESTERDAY=no
25
26 # By default sa2 script generates reports files (the so called sarDD files).
27 # Set this variable to false to disable reports generation.
28 #REPORTS=false
29
30 # Tell sa2 to wait for a random delay in the range 0 .. ${DELAY_RANGE} before
31 # executing. This delay is expressed in seconds, and is aimed at preventing
32 # a massive I/O burst at the same time on VM sharing the same storage area.
33 # Set this variable to 0 to make sa2 generate reports files immediately.
34 DELAY_RANGE=@DELAY_RANGE@
35
36 # The sa1 and sa2 scripts generate system activity data and report files in
37 # the @SA_DIR@ directory. By default the files are created with umask 0022
38 # and are therefore readable for all users. Change this variable to restrict
39 # the permissions on the files (e.g. use 0027 to adhere to more strict
40 # security standards).
41 UMASK=0022
42
43 # The sa2 script uses the value below to set environment variable S_REPEAT_HEADER
44 # which is used by sar as the maximum number of lines after which a header has to
45 # be displayed (see sar(1) manual page).
46 #REPEAT_HEADER=25