为了方便测试日志滚动,我添加个一个一直滚动的shell,在当前目录下面创建一个log文件夹
cat d.sh
#! /bin/bash
touch ./log/test
firsttime=`date +%s`
while true
do
secondtime=`date +%s`
if [ $firsttime -lt $secondtime ]
then echo $secondtime >> ./log/test
firsttime=$secondtime
fi
done
shell创建的文件位置及日志位置,保证文件权限,其他有可读权限
[root@h01 log]# pwd
/test/log
[root@h01 log]# ll
总用量 12
-rw-r--r--. 1 root root 10956 10月 25 13:49 test
新建模板
添加监控项
创建触发器
然后保存。
测试:
[root@h01 test]# sh d.sh
日志滚动
停止脚本(过了1分半左右报警,页面刷新是30s,设置日志滚动是60s):