Linux中國

如何用CentOS上的SARG日誌分析器來分析Squid日誌

上一節教程中,我們展示了如何在CentOS上使用Squid配置透明代理。Squid提供了很多有用的特性,但是分析一個原始Squid日誌文件並不直接。比如,你如何分析下面Squid日誌中的時間戳和數字?

1404788984.429   1162 172.17.1.23 TCP_MISS/302 436 GET http://facebook.com/ - DIRECT/173.252.110.27 text/html
1404788985.046  12416 172.17.1.23 TCP_MISS/200 4169 CONNECT stats.pusher.com:443 - DIRECT/173.255.223.127 -
1404788986.124    174 172.17.1.23 TCP_MISS/200 955 POST http://ocsp.digicert.com/ - DIRECT/117.18.237.29 application/ocsp-response
1404788989.738    342 172.17.1.23 TCP_MISS/200 3890 CONNECT www.google.com:443 - DIRECT/74.125.200.106 -
1404788989.757    226 172.17.1.23 TCP_MISS/200 942 POST http://clients1.google.com/ocsp - DIRECT/74.125.200.113 application/ocsp-response
1404788990.839   3939 172.17.1.23 TCP_MISS/200 78944 CONNECT fbstatic-a.akamaihd.net:443 - DIRECT/184.26.162.35 -
1404788990.846   2148 172.17.1.23 TCP_MISS/200 118947 CONNECT fbstatic-a.akamaihd.net:443 - DIRECT/184.26.162.35 -
1404788990.849   2151 172.17.1.23 TCP_MISS/200 76809 CONNECT fbstatic-a.akamaihd.net:443 - DIRECT/184.26.162.35 -
1404788991.140    611 172.17.1.23 TCP_MISS/200 110073 CONNECT fbstatic-a.akamaihd.net:443 - DIRECT/184.26.162.35 –

我們使用yum來安裝安裝必要的依賴。

# yum install gcc make wget httpd crond 

在啟動時載入必要的服務

# service httpd start; service crond start
# chkconfig httpd on; chkconfig crond on 

現在我們下載並解壓SARG

# wget http://downloads.sourceforge.net/project/sarg/sarg/sarg-2.3.8/sarg-2.3.8.tar.gz?
# tar zxvf sarg-2.3.8.tar.gz
# cd sarg-2.3.8 

注意: 對於64位的Linux,log.c的源代碼需要用下面的文件打補丁。

1506c1506
<            if (fprintf(ufile->file, "%st%st%st%st%"PRIi64"t%st%ldt%sn",dia,hora,ip,url,nbytes,code,elap_time,smartfilter)<=0) {
>            if (fprintf(ufile->file, "%st%st%st%st%"PRIi64"t%st%ldt%sn",dia,hora,ip,url,(int64_t)nbytes,code,elap_time,smartfilter)<=0) {
1513c1513
<                fprintf(fp_log, "%st%st%st%st%st%"PRIi64"t%st%ldt%sn",dia,hora,user,ip,url,nbytes,code,elap_time,smartfilter);
>                fprintf(fp_log, "%st%st%st%st%st%"PRIi64"t%st%ldt%sn",dia,hora,user,ip,url,(int64_t)nbytes,code,elap_time,smartfilter);
1564c1564
<                printf("LEN=t%"PRIi64"n",nbytes);
>                printf("LEN=t%"PRIi64"n",(int64_t)nbytes);

如下繼續並編譯/安裝SARG

# ./configure
# make
# make install 

SARG安裝之後,配置文件可以按你的要求修改。下面是一個SARG配置的例子。

# vim /usr/local/etc/sarg.conf 
access_log /var/log/squid/access.log
temporary_dir /tmp
output_dir /var/www/html/squid-reports
date_format e     ## We use Europian DD-MM-YYYY format here ##
## we don』t want multiple reports for single day/week/month ##
overwrite_report yes

現在是時候測試運行了,我們用調試模式運行sarg來查看是否存在錯誤。

# sarg -x

如果i一切正常,sarg會根系Squid日誌,並在/var/www/html/squid-reports下創建報告。報告也可以在瀏覽器中通過地址http://<伺服器IP>/squid-reports/訪問。

、SARG可以用於創建日、周、月度報告。時間範圍用「-d」參數來指定,值的形式很可能為day-n、 week-n 或者 month-n,n的值為向前推移的天/周/月的數量。比如,使用week-1,SARG會生成之前一星期的報告。使用day-2,SARG會生成之前兩天的報告。

作為演示,我們會準備一個計劃任務來每天運行SARG。

# vim /etc/cron.daily/sarg 
#!/bin/sh
/usr/local/bin/sarg -d day-1

文件需要可執行許可權。

# chmod 755 /usr/local/bin/sarg 

現在SARG應該會每天準備關於Squid管理的流量報告。這些報告可以很容易地通過SARG網路介面訪問。

總結一下,SARG一款基於網路的工具,它可以分析Squid日誌,並以更詳細的方式展示分析。系統管理員可以利用SARG來監視哪些網站被訪問了,並跟蹤訪問量最大的網站和用戶。本教程包含了SARG配置工作。你可以進一步自定義配置來滿足自己的要求。

希望這篇教程對您有幫助。

Sarmed Rahman

Sarmed Rahman是一名孟加拉國的IT專業人士。他堅持時不時地寫作技術文章,並堅信技術可以通過分享而提高。在空閑時間裡,他喜歡打遊戲,喜歡和朋友一起度過。

via: http://xmodulo.com/2014/07/analyze-squid-logs-sarg-log-analyzer-centos.html

譯者:geekpi 校對:Caroline

本文由 LCTT 原創翻譯,Linux中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國