shell整理日志让awstats分析

post by rocdk890 / 2014-5-8 14:56 Thursday linux技术
  今天公司要对网站使用awstats来进行分析日志,并且要求把前一天的日志整进去进行分析,看了下路径和日志的位置,就有了下面的脚本.
  系统:centos 5.x
脚本内容:
cat awstat-log.sh
#!/bin/bash
file1=/var/log/nginx
file2=/tmp/robeacc/log
find=`find $file2 -name access.log|wc -l`
if [[ $find = 1 ]];then
rm -f $file2/*
fi
ls=`ls -1t $file1/w*.ro*.ac*.gz |head -1 `
cp -a $ls $file2/
gunzip $file2/*
file3=`ls -1t $file2`
mv $file2/$file3 $file2/access.log


这里就不截图了,大家可以自己去测试下看看.这样一整是很方便的.
再给大家一个副产品:
#!/bin/bash
file1=/root/log
file2=/tmp/file
if [ ! -d $file2 ];then
mkdir $file2
fi
rm -f $file2/*
cp -a $file1/* $file2/
gunzip $file2/*
for i in $file2/*;do ls --full-time $i |awk '{print $6}'|awk -F - '{print $1,$2,$3}' >>/root/1.txt;done
sed 's/ //g' /root/1.txt>/root/t.txt
rm -f 1.txt
for i in `cat t.txt`;do mkdir /tmp/$i;done

上面这个脚本可以根据日志的时间创建对应的文件夹,如图
点击查看原图

点击查看原图
但在这个脚本里我没有搞定把日志放到对应的文件夹里,这点是很失败的,希望有牛人可以告诉我下怎么做.
夜空- 本站版权
1、本站所有主题由该文章作者发表,该文章作者与夜空享有文章相关版权
2、其他单位或个人使用、转载或引用本文时必须同时征得该文章作者和夜空的同意
3、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
4、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
5、原文链接:blog.slogra.com/post-535.html

标签: shell 分析 日志 log awstats

评论: