今天分享两个自己编写整理的比较好用的脚本,我平时也经常在elasticsearch生产环境使用。
后面将会不定期给大家分享自己在生产运维中整理的好的脚本和命令给大家分享。
#!/bin/bash# 定义 Elasticsearch 地址、端口、用户名和密码
ES_HOST="192.168.xxx.xxx"
ES_PORT="9200"
ES_USER="elastic"
ES_PASS="xxxxx"# 定义输出文件路径
OUTPUT_FILE="/home/esuser/xxxx_indices_info.txt"# 临时文件存储
TEMP_FILE="/tmp/xxxx_indices_info.txt"# 获取以 xxxx 开头的索引名称、大小并按索引名称排序,写入到临时文件
curl -s -u ${ES_USER}:${ES_PASS} "${ES_HOST}:${ES_PORT}/_cat/indices?h=index,store.size&format=json" | jq -r '.[] | select(.index | startswith("xxxx")) | "\(.index)\t\(.["store.size"])"' > ${TEMP_FILE}# 检查临时文件是否生成
if [ ! -s ${TEMP_FILE} ]; thenecho "No data found or failed to retrieve data from Elasticsearch."exit 1
fi# 清空输出文件
> ${OUTPUT_FILE}# 处理大小单位转换并写入输出文件
while IFS=$'\t' read -r index size; do# 检查大小是否为 null