日志排除线上问题

正序 cat catalina.out | grep 'hello' -m1 -C100 | less
倒序 tac catalina.out | grep 'hello' -m1 -C100 | less
grep "搜索关键字" -B100 //前100行(before
grep "搜索关键字" -A100 //后100行(after)
grep "搜索关键字" -C100 //上下100行(context)
-m1 匹配第一个
cat catalina.out | head -n 9393216 | tail -n +9391216

线上问题各种问题解决思路
各类日志(业务日志+框架日志+GC日志)+服务器主机监控+代码
grep 'hello' catalina.out
awk统计工具

你可能感兴趣的:(日志排除线上问题)