python统计apachenginx访问日志IP访问次数并且排序(显示前20条)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python统计apachenginx访问日志IP访问次数并且排序(显示前20条)相关的知识,希望对你有一定的参考价值。

前言:python统计apache、nginx访问日志IP访问次数并且排序(显示前20条)。其实用awk+sort等命令可以实现,用awk数组也可以实现,这里只是用python尝试下。


apache脚本:

ips = {}
with open("/root/mail_access_log-20180629") as fh:
    for line in fh:
        ip = line.split(" ")[0]
        if 6 < len(ip) <=15:
            ips[ip] = ips.get(ip, 0) + 1

ip_num = []
for ipaddr,num in ips.items():
   ip_num.append((ipaddr,num))

ip_num.sort(key=lambda x: x[1], reverse=True)

for ipaddr,num in ip_num[:20]:
    print('IP地址为{}, 访问次数为{}'.format(ipaddr,num))



nginx脚本:

ips = {}
with open("/root/access.log-20180629") as fh:
    for line in fh:
        ip = line.split(" ")[0]
        if 6 < len(ip) <=15:
            ips[ip] = ips.get(ip, 0) + 1

ip_num = []
for ipaddr,num in ips.items():
   ip_num.append((ipaddr,num))

ip_num.sort(key=lambda x: x[1], reverse=True)

for ipaddr,num in ip_num[:20]:
    print('IP地址为{}, 访问次数为{}'.format(ipaddr,num))


以上是关于python统计apachenginx访问日志IP访问次数并且排序(显示前20条)的主要内容,如果未能解决你的问题,请参考以下文章

用python统计日志中IP的数量

Python开发程序:生成环境下统计网站访问日志信息

切分Nginx日志,完成网站访问量的自动统计

用shell统计访问日志里每个ip访问次数

如何统计日志里面访问次数最多的IP

tomcat日志文件 访问IP统计