vim es-index-clear.sh
12345
#/bin/bash#只保留15天内的日志索引LAST_DATA=`date -d "-15 days" "+%Y.%m.%d"`#删除15天前的索引curl -XDELETE 'http://ip:port/*-'${LAST_DATA}
#编辑crontab文件,添加相应的任务crontab -e#设置每天的凌晨一点清除索引0 1 * * * root sh /opt/elk/scripts/es-index-clear.sh