LE-JB9029
Results
1
comments of
LE-JB9029
可以写的shell脚本,并定时执行,用来删除几个月前的日志 ```shell #!/bin/bash # 此方法的初衷是删除 alibaba sentinel 日志文件 # 时间尽量设置大一点以免删除其他服务运行日志 function csp_log_clean(){ log_path="$1" if [ -d $log_path ]; then #删除超过100天的历史日志文件 find $log_path -type f -name "*.log.*" -mtime +100 -delete fi...