[20200330]sar報表儲存時間.txt

lfree發表於2020-03-30

[20200330]sar報表儲存時間.txt

--//今天想修改sar報表的儲存時間,以前版本預設時間7天有點短,需要儲存更長的時間,便於事後分析問題。
--//今天在centos 7上配置,發現以前配置的一個小問題。

# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)

# rpm -qcf $(which sar)
/etc/cron.d/sysstat
/etc/sysconfig/sysstat
/etc/sysconfig/sysstat.ioconf
--//配置檔案就這些。開啟/etc/sysconfig/sysstat發現:

# cat /etc/sysconfig/sysstat
# How long to keep log files (in days).
# If value is greater than 28, then log files are kept in
# multiple directories, one for each month.
HISTORY=28

# Compress (using gzip or bzip2) sa and sar files older than (in days):
COMPRESSAFTER=31

# Parameters for the system activity data collector (see sadc manual page)
# which are used for the generation of log files.
SADC_OPTIONS="-S DISK"

# Compression program to use.
ZIP="bzip2"

--//可以發現當前版本已經設定到28天,但是你可以發現註解存在說明大於28天要建立多個目錄。每個目錄一個月。
--//我看了我以前設定:
HISTORY=31

--//發現實際上
#  ls -l /var/log/sa/sar*|wc
     27     216    1863

--//也就是以前的測試即使設定31,實際上最大也就是28天。測試看看大於28天會出現什麼情況。
--//修改如下:

 # cat /etc/sysconfig/sysstat
# sysstat-10.1.5 configuration file.

# How long to keep log files (in days).
# If value is greater than 28, then log files are kept in
# multiple directories, one for each month.
HISTORY=50

# Compress (using gzip or bzip2) sa and sar files older than (in days):
COMPRESSAFTER=41

# Parameters for the system activity data collector (see sadc manual page)
# which are used for the generation of log files.
SADC_OPTIONS="-S DISK"

# Compression program to use.
ZIP="bzip2"

--//等一段時間在觀察看看是是怎樣的情況。





來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2683271/,如需轉載,請註明出處,否則將追究法律責任。

相關文章