Linux一些常使用的統計日誌 方法

IP相關統計統計IP訪問量(獨立ip訪問數量)awk '{print $1}' access.log | sort -n | uniq | wc -l查看某一時間段的IP訪問量(4-5點)grep "07/Apr/2017:0[4-5]" access.log | awk '{print $1}' | sort | uniq -c| sort -nr | wc -l查看訪問最頻繁的前100個IPawk '{print $1}' access.log | sort -n |uniq -c | sort -rn | head -n 100查看訪問100次以上的IPawk '{print $1}' access.log | sort -n |uniq -c |awk '{if($1 >100) print $0}'|sort -rn查詢某個IP的詳細訪問狀況,按訪問頻率排序grep '127.0.01' access.log |awk '{print $7}'|sort |uniq -c |sort -rn |head -n 100頁面訪問統計查看訪問最頻的頁面(TOP100)awk '{print $7}' access.log | sort |uniq -c | sort -rn | head -n 100查看訪問最頻的頁面([排除php頁面】(TOP100)grep -v ".php" access.log | awk '{print $7}' | sort |uniq -c | sort -rn | head -n 100查看頁面訪問次數超過100次的頁面cat access.log | cut -d ' ' -f 7 | sort |uniq -c | awk '{if ($1 > 100) print $0}' | less查看最近1000條記錄,訪問量最高的頁面tail -1000 access.log |awk '{print $7}'|sort|uniq -c|sort -nr|less每秒請求量統計統計每秒的請求數,top100的時間點(精確到秒)awk '{print $4}' access.log |cut -c 14-21|sort|uniq -c|sort -nr|head -n 100每分鐘請求量統計統計每小時的請求數,top100的時間點(精確到小時)awk '{print $4}' access.log |cut -c 14-15|sort|uniq -c|sort -nr|head -n 100性能分析在nginx log中最後一個字段加入$request_time列出傳輸時間超過 3 秒的頁面,顯示前20條cat access.log|awk '($NF > 3){print $7}'|sort -n|uniq -c|sort -nr|head -20列出php頁面請求時間超過3秒的頁面,並統計其出現的次數,顯示前100條cat access.log|awk '($NF > 1 && $7~/\.php/){print $7}'|sort -n|uniq -c|sort -nr|head -100蜘蛛抓取統計統計蜘蛛抓取次數grep 'Baiduspider' access.log |wc -l統計蜘蛛抓取404的次數grep 'Baiduspider' access.log |grep '404' | wc -lTCP鏈接統計查看當前TCP鏈接數netstat -tan | grep "ESTABLISHED" | grep ":80" | wc -l用tcpdump嗅探80端口的訪問看看誰最高tcpdump -i eth0 -tnn dst port 80 -c 1000 | awk -F"." '{print $1"."$2"."$3"."$4}' | sort | uniq -c | sort -nr
相關文章
相關標籤/搜索