伍佰目录 短网址
  当前位置:海洋目录网 » 站长资讯 » 站长资讯 » 文章详细 订阅RssFeed

Python分析Nginx日志

来源:本站原创 浏览:124次 时间:2021-12-12


目录

  • 1、背景介绍
  • 2、思路演进
    • 2.1、第一步读取日志
    • 2.2、第二步解析日志
    • 2.3、第三步分析日志
    • 2.4、第四步生成报告
    • 2.5、第五步日志采集
    • 2.6、结果展示
    • 2.7、可扩展方向


大佬请自觉路过~ ~ ~

1、背景介绍

本文以我的博客站点其中一段时间的访问日志为例进行分析

  • 用到的知识点
    基本数据类型列表,基本数据类型字典,re模块正则匹配,pandas模块数据处理,xlwt模块excel写入等

  • 最终实现的功能
    分析得到日志中访问iptop20,访问地址的top20,访问客户端ua的排名,并且生成excel报表

2、思路演进2.1、第一步读取日志

nginx进行日志分析,首先拿到需要分析的nginx日志文件,日志文件的内容具有固定的定义方法,每一行的日志中每一个特殊的字段都代表着具体的含义,例如:

95.143.192.110 - - [15/Dec/2019:10:22:00 +0800] "GET /post/pou-xi-he-jie-jue-python-zhong-wang-luo-nian-bao-de-zheng-que-zi-shi/ HTTP/1.1" 304 0 "https://www.ssgeek.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"

上面的日志内容的字段信息依次代表着:访问者来源ip、访问时间、http请求方法、请求地址、http状态码、本次请求的字节大小、refer信息、客户端ua标识

因此,首先提炼出一行内容,对这行内容进行分组统计并记录每个字段的具体信息,然后把对这一行的分析手段去对整个日志文件进行分析,为了匹配日志中的每个字段,需要用到re模块进行正则匹配,代码如下:

import reobj = re.compile(r'(?P<ip>.*?)- - \[(?P<time>.*?)\] "(?P<request>.*?)" (?P<status>.*?) (?P<bytes>.*?) "(?P<referer>.*?)" "(?P<ua>.*?)"')def load_log(path):    with open(path, mode="r", encoding="utf-8") as f:        for line in f:            line = line.strip()            parse(line)def parse(line):    # 解析单行nginx日志    try:        result = obj.match(line)        print(result.group("ip"))    except:        passif __name__ == '__main__':    load_log("nginx_access.log")

通过re模块依次分组匹配为:iptimerequeststatusbytesrefererua
上面的内容最终打印出来了所有的访问者来源ip

进一步加强,输出所有字段,直接打印print(result.groupdict())即可,输出结果是多个字典,如下所示:

{'ip': '46.229.168.150 ', 'time': '24/Dec/2019:13:21:39 +0800', 'request': 'GET /post/zabbix-web-qie-huan-wei-nginx-ji-https HTTP/1.1', 'status': '301', 'bytes': '178', 'referer': '-', 'ua': 'Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)'}
2.2、第二步解析日志

精准分析单行日志,并且加入一些格式化输出和过滤的手段

load_log()函数:
load_log()函数中,为了避免有错误的日志(类似于“脏数据”),因此定义了两个空列表lsterror_lst用来记录匹配的结果,列表中的每一个元素表示匹配的一行日志,最后打印了总行数,匹配到的行数,不能匹配到的行数(错误日志行数)

parse()函数:
parse()函数中,传入参数line,一次对每行中分组匹配到的每一个字段进行处理,处理完成后赋值到列表元素,其中客户端ua标识仅仅列出了一些常见的,如果想要匹配的更为精确,可以参考常用浏览器(PC/移动)user-agent参考对照表,把匹配规则写的更精确即可

import reimport datetimeobj = re.compile(    r'(?P<ip>.*?)- - \[(?P<time>.*?)\] "(?P<request>.*?)" (?P<status>.*?) (?P<bytes>.*?) "(?P<referer>.*?)" "(?P<ua>.*?)"')def load_log(path):    lst = []    error_lst = []    i = 0    with open(path, mode="r", encoding="utf-8") as f:        for line in f:            line = line.strip()            dic = parse(line)            if dic:  # 正确的数据添加到lst列表中                lst.append(dic)            else:                error_lst.append(line)  # 脏数据添加到error_lst列表中            i += 1    print(i)    print(len(error_lst))    print(len(lst))def parse(line):    # 解析单行nginx日志    dic = {}    try:        result = obj.match(line)        # ip处理        ip = result.group("ip")        if ip.strip() == '-' or ip.strip() == "":  # 如果是匹配到没有ip就把这条数据丢弃            return False        dic['ip'] = ip.split(",")[0]  # 如果有两个ip,取第一个ip        # 状态码处理        status = result.group("status")  # 状态码        dic['status'] = status        # 时间处理        time = result.group("time")  # 21/Dec/2019:21:45:31 +0800        time = time.replace(" +0800", "")  # 替换+0800为空        t = datetime.datetime.strptime(time, "%d/%b/%Y:%H:%M:%S")  # 将时间格式化成友好的格式        dic['time'] = t        # request处理        request = result.group(            "request")  # GET /post/pou-xi-he-jie-jue-python-zhong-wang-luo-nian-bao-de-zheng-que-zi-shi/ HTTP/1.1        a = request.split()[1].split("?")[0]  # 往往url后面会有一些参数,url和参数之间用?分隔,取出不带参数的url        dic['request'] = a        # user_agent处理        ua = result.group("ua")        if "Windows NT" in ua:            u = "windows"        elif "iPad" in ua:            u = "ipad"        elif "Android" in ua:            u = "android"        elif "Macintosh" in ua:            u = "mac"        elif "iPhone" in ua:            u = "iphone"        else:            u = "其他设备"        dic['ua'] = u        # refer处理        referer = result.group("referer")        dic['referer'] = referer        return dic    except:        return Falseif __name__ == '__main__':    load_log("nginx_access.log")

执行代码,查看打印的结果,控制台输出:

96925429150

依次表示日志文件中的总行数、匹配错误(没有匹配到的)的行数、匹配正确的行数

2.3、第三步分析日志

利用pandas模块进行日志的分析
analyse()函数:
将解析过滤得到的lst列表作为参数传入,列表中的数据格式形如[{ip:xxx, api:xxx, status:xxxx, ua:xxx}]

df = pd.DataFrame(lst)将解析得到的列表转换成为类似表格的类型,控制台的输出df如下,处理后为每个数据加上了序号,第一行相当于表头,表头就是前面得到的字典中的key

                    ip status  ...       ua                  referer0      95.143.192.110     200  ...      mac                        -1      95.143.192.110     304  ...      mac                        -2      95.143.192.110     304  ...      mac                        -3      95.143.192.110     304  ...      mac  https://www.ssgeek.com/4      203.208.60.122     200  ...  android                        -...                ...    ...  ...      ...                      ...9145      46.4.60.249     404  ...     其他设备                        -9146      46.4.60.249     404  ...     其他设备                        -9147      46.4.60.249     404  ...     其他设备                        -9148      46.4.60.249     404  ...     其他设备                        -9149  154.223.188.124     404  ...  windows                        -

pd.value_counts(df['ip'])取出ip并统计数ip的次数;得到的结果第一列是ip,第二列是次数,pandas默认将第一列认为是行索引,因此需要将数据整体右移,通过reset_index()重新定义一个索引即可,效果形如:

                 index   ip0      89.163.242.228   3161     207.180.220.114   3122         78.46.90.53   3023        144.76.38.10   3014        78.46.61.245   301...                ...  ...1080    203.208.60.85     11081      66.249.72.8     11082     141.8.132.13     11083    207.46.13.119     11084     203.208.60.7     1

这个时候发现索引有了,但是表头也跟着右移了,不对应了,需要重新设置一个表头reset_index().rename(columns={"index": "ip", "ip"����,����: "count"}),效果形如

                    ip  count0      89.163.242.228     3161     207.180.220.114     3122         78.46.90.53     3023        78.46.61.245     3014        144.76.38.10     301...                ...    ...1080     47.103.17.71       11081    42.156.254.92       11082  220.243.136.156       11083   180.163.220.61       11084   106.14.215.243       1

往往分析日志只需要得到访问次数的前几名,例如前20名,pandas同样给出了很方便的iloc通过切片实现这个需求,iloc[:20, :]:取出前20行,取出所有列,最终的处理代码为

    ip_count = pd.value_counts(df['ip']).reset_index().rename(columns={"index": "ip", "ip": "count"}).iloc[:20, :]    print(ip_count)

得到的数据结果为

                  ip  count0    89.163.242.228     3161   207.180.220.114     3122       78.46.90.53     3023      144.76.38.10     3014      78.46.61.245     3015     144.76.29.148     3016    204.12.208.154     3017     148.251.92.39     3018         5.9.70.72     2869     223.71.139.28     21810     95.216.19.59     20911    221.13.12.147     13112     117.15.90.21     13013  175.184.166.181     12914   148.251.49.107     12815    171.37.204.72     12716   124.95.168.140     11817    171.34.178.76      9818   60.216.138.190      9719    141.8.142.158      87

同样,可以把requestua等进行相同的操作

2.4、第四步生成报告

利用xlwt模块将pandas分析得到的数据写入到excel表格中,写入前需要将pandas处理后的数据转化成普通的数据

    ip_count_values = ip_count.values    request_count_values = request_count.values    ua_count_values = ua_count.values

这个数据类型是:数组对象numpy.ndarray,形如:

[['89.163.242.228 ' 316] ['207.180.220.114 ' 312] ['78.46.90.53 ' 302] ['204.12.208.154 ' 301] ['144.76.29.148 ' 301] ['144.76.38.10 ' 301] ['78.46.61.245 ' 301] ['148.251.92.39 ' 301] ['5.9.70.72 ' 286] ['223.71.139.28 ' 218] ['95.216.19.59 ' 209] ['221.13.12.147 ' 131] ['117.15.90.21 ' 130] ['175.184.166.181 ' 129] ['148.251.49.107 ' 128] ['171.37.204.72 ' 127] ['124.95.168.140 ' 118] ['171.34.178.76 ' 98] ['60.216.138.190 ' 97] ['141.8.142.158 ' 87]]

通过xlwt模块写入sheet页,每个sheet页中写入对应处理的数据

# 写入excelwb = xlwt.Workbook()  # 打开一个excel文档sheet = wb.add_sheet("ip访问top20")  # 新建一个sheet页# 写入头信息row = 0sheet.write(row, 0, "ip")  # 写入行,列,内容sheet.write(row, 1, "count")  # 写入行,列,内容row += 1  # 行号加一for item in ip_count_values:    sheet.write(row, 0, item[0])    sheet.write(row, 1, item[1])    row += 1
2.5、第五步日志采集

日志分析完了,回过头来需要的是采集到日志文件,并且定时的去进行分析,可以利用time模块得到时间并且判断,实现定时的分析,例如,每月3号的凌晨1点进行日志分析

import timeif __name__ == '__main__':    while 1:        stime = datetime.datetime.now().strftime("%d:%H:%M:%S")        if stime == "03:01:00:00":            lst, error_lst = load_log("nginx_access.log")            analyse(lst)        time.sleep(1)

当然也可以通过服务器级别的定时任务功能定时的调用脚本分析

2.6、结果展示

按照前面的演进过程,最终的代码如下:

import reimport datetimeimport pandas as pdimport xlwtobj = re.compile(    r'(?P<ip>.*?)- - \[(?P<time>.*?)\] "(?P<request>.*?)" (?P<status>.*?) (?P<bytes>.*?) "(?P<referer>.*?)" "(?P<ua>.*?)"')def load_log(path):    lst = []    error_lst = []    i = 0    with open(path, mode="r", encoding="utf-8") as f:        for line in f:            line = line.strip()            dic = parse(line)            if dic:  # 正确的数据添加到lst列表中                lst.append(dic)            else:                error_lst.append(line)  # 脏数据添加到error_lst列表中            i += 1    return lst, error_lstdef parse(line):    # 解析单行nginx日志    dic = {}    try:        result = obj.match(line)        # ip处理        ip = result.group("ip")        if ip.strip() == '-' or ip.strip() == "":  # 如果是匹配到没有ip就把这条数据丢弃            return False        dic['ip'] = ip.split(",")[0]  # 如果有两个ip,取第一个ip        # 状态码处理        status = result.group("status")  # 状态码        dic['status'] = status        # 时间处理        time = result.group("time")  # 21/Dec/2019:21:45:31 +0800        time = time.replace(" +0800", "")  # 替换+0800为空        t = datetime.datetime.strptime(time, "%d/%b/%Y:%H:%M:%S")  # 将时间格式化成友好的格式        dic['time'] = t        # request处理        request = result.group(            "request")  # GET /post/pou-xi-he-jie-jue-python-zhong-wang-luo-nian-bao-de-zheng-que-zi-shi/ HTTP/1.1        a = request.split()[1].split("?")[0]  # 往往url后面会有一些参数,url和参数之间用?分隔,取出不带参数的url        dic['request'] = a        # user_agent处理        ua = result.group("ua")        if "Windows NT" in ua:            u = "windows"        elif "iPad" in ua:            u = "ipad"        elif "Android" in ua:            u = "android"        elif "Macintosh" in ua:            u = "mac"        elif "iPhone" in ua:            u = "iphone"        else:            u = "其他设备"        dic['ua'] = u        # refer处理        referer = result.group("referer")        dic['referer'] = referer        return dic    except:        return Falsedef analyse(lst): # [{ip:xxx, api:xxx, status:xxxx, ua:xxx}]    df = pd.DataFrame(lst)  # 转换成表格    # print(df)    # print(df['ip'])  # 只取出ip这一列    ip_count = pd.value_counts(df['ip']).reset_index().rename(columns={"index": "ip", "ip": "count"}).iloc[:20, :]    request_count = pd.value_counts(df['request']).reset_index().rename(columns={"index": "request", "request": "count"}).iloc[:20, :]    ua_count = pd.value_counts(df['ua']).reset_index().rename(columns={"index": "ua", "ua": "count"}).iloc[:, :]    # 从pandas转化成我们普通的数据    ip_count_values = ip_count.values    request_count_values = request_count.values    ua_count_values = ua_count.values    # print(type(ip_count_values))    # 写入excel    wb = xlwt.Workbook()  # 打开一个excel文档    sheet = wb.add_sheet("ip访问top20")  # 新建一个sheet页    # 写入头信息    row = 0    sheet.write(row, 0, "ip")  # 写入行,列,内容    sheet.write(row, 1, "count")  # 写入行,列,内容    row += 1  # 行号加一    for item in ip_count_values:        sheet.write(row, 0, item[0])        sheet.write(row, 1, item[1])        row += 1    sheet = wb.add_sheet("request访问top20")  # 新建一个sheet页    # 写入头信息    row = 0    sheet.write(row, 0, "request")  # 写入行,列,内容    sheet.write(row, 1, "count")  # 写入行,列,内容    row += 1  # 行号加一    for item in request_count_values:        sheet.write(row, 0, item[0])        sheet.write(row, 1, item[1])        row += 1    sheet = wb.add_sheet("ua访问top")  # 新建一个sheet页    # 写入头信息    row = 0    sheet.write(row, 0, "ua")  # 写入行,列,内容    sheet.write(row, 1, "count")  # 写入行,列,内容    row += 1  # 行号加一    for item in ua_count_values:        sheet.write(row, 0, item[0])        sheet.write(row, 1, item[1])        row += 1    wb.save("abc.xls")if __name__ == '__main__':    lst, error_lst = load_log("nginx_access.log")    analyse(lst)

生成的excel报表内容如下

  • ip排名

  • 访问地址排名

  • 客户端ua排名

2.7、可扩展方向

本文进行日志的分析算是入门之作,可以进一步扩展的方向比如:分析报表的定时消息邮件等推送,分析报表的图形化展示等等

  推荐站点

  • At-lib分类目录At-lib分类目录

    At-lib网站分类目录汇集全国所有高质量网站,是中国权威的中文网站分类目录,给站长提供免费网址目录提交收录和推荐最新最全的优秀网站大全是名站导航之家

    www.at-lib.cn
  • 中国链接目录中国链接目录

    中国链接目录简称链接目录,是收录优秀网站和淘宝网店的网站分类目录,为您提供优质的网址导航服务,也是网店进行收录推广,站长免费推广网站、加快百度收录、增加友情链接和网站外链的平台。

    www.cnlink.org
  • 35目录网35目录网

    35目录免费收录各类优秀网站,全力打造互动式网站目录,提供网站分类目录检索,关键字搜索功能。欢迎您向35目录推荐、提交优秀网站。

    www.35mulu.com
  • 就要爱网站目录就要爱网站目录

    就要爱网站目录,按主题和类别列出网站。所有提交的网站都经过人工审查,确保质量和无垃圾邮件的结果。

    www.912219.com
  • 伍佰目录伍佰目录

    伍佰网站目录免费收录各类优秀网站,全力打造互动式网站目录,提供网站分类目录检索,关键字搜索功能。欢迎您向伍佰目录推荐、提交优秀网站。

    www.wbwb.net