当前位置:网站首页>Shell 脚本实现应用服务日志入库 Mysql
Shell 脚本实现应用服务日志入库 Mysql
2022-07-04 21:58:00 【Wu_Candy】
今天给大家分享一个 shell 脚本工具,通过 shell 脚本与 mysql 的结合,将某个具体服务的错误输出日志入库到指定的 mysql 表中,以便于进行错误问题的定位与分析。
日常工作中,经常需要和 linux 系统打交道,例如:服务部署、日志和服务状态查看等,而 shell 脚本是和 linux 交互的一种常见方法。以下代码实例为在 shell 脚本中嵌入 mysql 配置信息将错误日志信息落入到数据库中。
shell脚本如下:
#!/usr/bin/env bash
hostName="l-beta.io"
dbPort=3306
dbUser="beta"
dbPassword="123456"
dbName="test_log"
tableName="beta_error_log_record"
env="test1"
base="/home/q/www"
#进入死循环
while [[ 1 ]]; do
#循环去遍历base目录下的文件夹,-vE 后面两个是要排除掉的项
for name in `ls $base | grep -vE "default|genesis"`;
do
#echo $base/$name
#判断是否是目录
if [[ -d $base/$name ]]; then
#定义当前时间的前一分钟,用于对日志内容进行过滤匹配使用
before=`date -d "-1 minute" "+%Y-%m-%d %H:%M:"`
# echo "Watching log $name in $before"
#过滤获取对应目录下的catalina.out文件中的上一分钟的Exception and Error日志
result=`grep -C5 "$before" $base/$name/logs/catalina.out | grep -vE "DEBUG|skywalking|10.8.0.37:8800" | grep -C5 -E "Exception|ERROR" | sed $'s/\'/\"/g' `
#如果result为零就跳过本次循环
if [[ -z "$result" ]]; then
continue;
fi
echo "-------------------------->"
#拼接insert sql 语句
insert_sql="insert into $tableName (environment,project_name,content) values('$env','$name','\n\nException:\n\n$result')"
echo $insert_sql > tmp.sql
echo "***********start*************"
echo $insert_sql
#开始执行sql语句
mysql -h$hostName -P$dbPort -u$dbUser -p$dbPassword $dbName -e "source tmp.sql"
echo "************end************"
fi
done
#输入休眠60s
echo -e "sleep 60 seconds\n"
sleep 60s
done
以上 shell 脚本中关键信息都标有对应的注释,如需实操,可将 mysql 对应的配置信息及监控的日志服务路径进行更改和替换为目标信息即可。
end
边栏推荐
- With this PDF, we finally got offers from eight major manufacturers, including Alibaba, bytek and Baidu
- HDU - 1078 fatmouse and cheese (memory search DP)
- El tree combined with El table, tree adding and modifying operations
- 服务线上治理
- WebGIS框架---kalrry
- ApacheCN 翻译、校对、笔记整理活动进度公告 2022.7
- 面试题 01.08. 零矩阵
- Tiktok actual combat ~ the number of comments is updated synchronously
- 面试题 01.01. 判定字符是否唯一
- MongoDB中的索引操作总结
猜你喜欢
能源势动:电力行业的碳中和该如何实现?
【愚公系列】2022年7月 Go教学课程 003-IDE的安装和基本使用
Xiangjiang Kunpeng joined the shengteng Wanli partnership program and continued to write a new chapter of cooperation with Huawei
传智教育|如何转行互联网高薪岗位之一的软件测试?(附软件测试学习路线图)
抖音实战~评论数量同步更新
MongoDB聚合操作总结
并发网络模块化 读书笔记转
KDD2022 | 什么特征进行交互才是有效的?
QT - double buffer plot
AscendEX 上线 Walken (WLKN) - 一款卓越领先的“Walk-to-Earn”游戏
随机推荐
微服务--开篇
并发优化总结
Bizchart+slider to realize grouping histogram
Common open source codeless testing tools
大厂的广告系统升级,怎能少了大模型的身影
bizchart+slider实现分组柱状图
Relational database
Radio and television Wuzhou signed a cooperation agreement with Huawei to jointly promote the sustainable development of shengteng AI industry
Ascendex launched Walken (WLKN) - an excellent and leading "walk to earn" game
【C语言进阶篇】数组&&指针&&数组笔试题
sqlserver对数据进行加密、解密
Representation of confidence interval
PostgreSQL JOIN实践及原理
QT - double buffer plot
凭借了这份 pdf,最终拿到了阿里,字节,百度等八家大厂 offer
传智教育|如何转行互联网高薪岗位之一的软件测试?(附软件测试学习路线图)
MySQL storage data encryption
Open3d surface normal vector calculation
如何实现轻松管理1500万员工?
《命令行上的数据科学第二版》校对活动重新启动